summaryrefslogtreecommitdiff
path: root/timings/index.html
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-12-26 17:40:32 +0000
committerSteven Knight <knight@baldmt.com>2009-12-26 17:40:32 +0000
commit522135d815f9a84ea1fae5c5ee924d5d133a4734 (patch)
treec5b5d0f2d6be8108c738a0494b12811450e37768 /timings/index.html
parente67c30d691afd732121c99effd979d434ac40c35 (diff)
downloadscons-522135d815f9a84ea1fae5c5ee924d5d133a4734.tar.gz
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/index.html')
-rw-r--r--timings/index.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/timings/index.html b/timings/index.html
index de102ead..40738321 100644
--- a/timings/index.html
+++ b/timings/index.html
@@ -6,11 +6,12 @@
var perf_url = DirName(window.location.href);
function DisplayGraph(name, heighth, width, thumbnail, graph) {
var params = ParseParams();
- var url = perf_url + '/' + name + '/graph.html' +
- '?history=50' +
- '&lookout';
+ var url = perf_url + '/' + name + '/graph.html' + '?lookout';
//var debug = url;
var debug = '';
+ if ('history' in params) {
+ url += '&history=' + params.history
+ }
if (typeof graph == 'undefined') {
if ('graph' in params) {
graph = params.graph;