summaryrefslogtreecommitdiffstats
path: root/timings/graph.html
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-12-26 17:40:32 (GMT)
committerSteven Knight <knight@baldmt.com>2009-12-26 17:40:32 (GMT)
commit662ad39cea54e476aec9cb3adf4feaf0d3d98934 (patch)
treec5b5d0f2d6be8108c738a0494b12811450e37768 /timings/graph.html
parent1c92a2a8830379b710cb6749db570850fe15da12 (diff)
downloadSCons-662ad39cea54e476aec9cb3adf4feaf0d3d98934.zip
SCons-662ad39cea54e476aec9cb3adf4feaf0d3d98934.tar.gz
SCons-662ad39cea54e476aec9cb3adf4feaf0d3d98934.tar.bz2
Interface tweaks:
Display 150 revs in the dashboard thumbnails, but full history in the click-through graphs. Rewrite the top-of-page title and have it display which stat is being displayed.
Diffstat (limited to 'timings/graph.html')
-rw-r--r--timings/graph.html23
1 files changed, 11 insertions, 12 deletions
diff --git a/timings/graph.html b/timings/graph.html
index 82258f3..c314dc3 100644
--- a/timings/graph.html
+++ b/timings/graph.html
@@ -106,11 +106,6 @@ var graph_list = [];
var first_trace = '';
var params = ParseParams();
-if (!('history' in params)) {
- params.history = 150;
- // make this option somewhat user discoverable :-/
- window.location.href = MakeURL(params);
-}
function jsonToJs(data) {
return eval('(' + data + ')')
@@ -156,8 +151,8 @@ function go_to(graph) {
function get_url() {
new_url = window.location.href;
- new_url = new_url.replace(/50/, "150");
- new_url = new_url.replace(/\&lookout/, "");
+ new_url = new_url.replace(/\?lookout/, "?");
+ new_url = new_url.replace(/\&thumbnail/, "");
return new_url;
}
@@ -195,8 +190,11 @@ function received_summary(data, error) {
// Parse the summary data file.
var rows = data.split('\n');
var max_rows = rows.length;
- if (max_rows > params.history)
- max_rows = params.history;
+ if ('history' in params && max_rows > params.history) {
+ max_rows = params.history;
+ } else if ('lookout' in params && max_rows > 150) {
+ max_rows = 150;
+ }
var allTraces = {};
@@ -350,9 +348,10 @@ window.addEventListener("load", init, false);
<div id="header_text">
<script>
-document.write('Timings for the <b>' + Config.title + '</b> configuration ' +
- 'generated by the ' +
- '<a href="' + Config.buildbotLink + '">SCons buildbot</a>.');
+document.write('<a href="' + Config.buildbotLink + '">SCons buildbot</a>' +
+ ' timings for the <b>' + Config.title + '</b> configuration.')
+if ('graph' in params)
+ document.write(' Displaying values for <b>' + params.graph + '</b>.');
</script>
</div>