Fix rendering of metrics with dots in their name
[?]
Mar 25, 2016, 12:24 PM
RQTECBWX4URRO7RFU67V3KBY2TSSJK2MJ7Q67INAOF4R27VZKRDACDependencies
- [2]
CVWVXXJUScale the Y axis to the visible points - [3]
T5BIOVJEAdd support for tracking custom metrics - [4]
BB2KXLXZMove the build time chart to the job page - [5]
6GZZDDQBMove the store path size chart to the job page - [6]
XAJFR6SRAdd a chart to the job pages showing the closure size over time - [*]
IK53RV4V - [*]
ODNCGFQ5* Improved the navigation bar: don't include all projects (since that
Change contents
- edit in src/root/common.tt at line 577
var id = "[%id%]"; - replacement in src/root/common.tt at line 605
var plot = $.plot($("#[%id%]-chart"), [d], options);var plot = $.plot($("#" + id + "-chart"), [d], options); - replacement in src/root/common.tt at line 607
var overview = $.plot($("#[%id%]-overview"), [d], {var overview = $.plot($("#" + id + "-overview"), [d], { - replacement in src/root/common.tt at line 619
$("#[%id%]-chart").bind("plotselected", function (event, ranges) {$("#" + id + "-chart").bind("plotselected", function (event, ranges) { - replacement in src/root/common.tt at line 628
plot = $.plot($("#[%id%]-chart"), [d],plot = $.plot($("#" + id + "-chart"), [d], - replacement in src/root/common.tt at line 638
$("#[%id%]-overview").bind("plotselected", function (event, ranges) {$("#" + id + "-overview").bind("plotselected", function (event, ranges) { - replacement in src/root/common.tt at line 642
$("#[%id%]-chart").bind("plotclick", function (e, pos, item) {$("#" + id + "-chart").bind("plotclick", function (e, pos, item) { - replacement in src/root/job.tt at line 105
[% INCLUDE createChart id="metric-${metric.name}" dataUrl=c.uri_for('/job' project.name jobset.name job.name 'metric' metric.name) %][% id = "metric-" _ metric.name;id = id.replace('\.', '_');INCLUDE createChart dataUrl=c.uri_for('/job' project.name jobset.name job.name 'metric' metric.name); %]