From 02a3d5e88270b93aae3ed36f64ddc036e06ff8bf Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Fri, 18 Dec 2009 09:26:23 +0000 Subject: Add config.js files to the timing configurations, and update graph.html to use them to display configuration-specific info (right now just the title) for each graph's page. --- timings/CPPPATH/config.js | 3 +++ timings/JTimer/config.js | 3 +++ timings/graph.html | 22 +++++++++------------- timings/hundred/config.js | 3 +++ 4 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 timings/CPPPATH/config.js create mode 100644 timings/JTimer/config.js create mode 100644 timings/hundred/config.js (limited to 'timings') diff --git a/timings/CPPPATH/config.js b/timings/CPPPATH/config.js new file mode 100644 index 00000000..d5ddef38 --- /dev/null +++ b/timings/CPPPATH/config.js @@ -0,0 +1,3 @@ +var Config = { + 'title': "timings/CPPPATH", +}; diff --git a/timings/JTimer/config.js b/timings/JTimer/config.js new file mode 100644 index 00000000..e1d8f100 --- /dev/null +++ b/timings/JTimer/config.js @@ -0,0 +1,3 @@ +var Config = { + 'title': "timings/JTimer", +}; diff --git a/timings/graph.html b/timings/graph.html index e418069d..180139c0 100644 --- a/timings/graph.html +++ b/timings/graph.html @@ -91,16 +91,13 @@ div#selectors { - + -and the results of that test are charted here.
diff --git a/timings/hundred/config.js b/timings/hundred/config.js new file mode 100644 index 00000000..63de6dfa --- /dev/null +++ b/timings/hundred/config.js @@ -0,0 +1,3 @@ +var Config = { + 'title': "timings/hundred", +}; -- cgit v1.2.1