# HG changeset patch # User Jeff Hammel # Date 1345158045 25200 # Node ID 4171e8477cdb0fd53325d6ed447885132b9a121c # Parent a8806eae60d542d304be8d7a994a39ba9ef86ad4 actually print some things diff -r a8806eae60d5 -r 4171e8477cdb talosnames/templates/index.html --- a/talosnames/templates/index.html Thu Aug 16 13:49:09 2012 -0700 +++ b/talosnames/templates/index.html Thu Aug 16 16:00:45 2012 -0700 @@ -191,8 +191,8 @@ {{if graphserver[suite][test]}}
{{for name, longname in graphserver[suite][test]}} -
{{name}}
-
{{longname}}
+
{{name}}
+
{{longname}}
{{endfor}}
{{endif}} diff -r a8806eae60d5 -r 4171e8477cdb talosnames/templates/tbpl.html --- a/talosnames/templates/tbpl.html Thu Aug 16 13:49:09 2012 -0700 +++ b/talosnames/templates/tbpl.html Thu Aug 16 16:00:45 2012 -0700 @@ -86,11 +86,41 @@ html += '(disabled)'; } - +// PerfConfigurator command html += '
PerfConfigurator' html += ' ' + data.commands[bbsuite[suite]].join(' '); html += '
' +// talos tests +var tests = data.tests[bbsuite[suite]]; +if (tests) { +html += ''; + +for (var test in tests) { +html += ''; +} + +html += '
Talos Test ConfigGraphserver Name
' + test + ''; + +var graphserver_names = data.graphserver[bbsuite[suite]][test]; +if (graphserver_names) { + +html += '
'; +for (var grindex in graphserver_names) { +// We only have one for now, but might as well enumerate +var name = graphserver_names[grindex][0]; +var longname = graphserver_names[grindex][1]; +html += '
' + name + '
'; +html += '
' + longname + '
'; + +} +html += '
'; + +} + +html += '
'; +} + html += '' } html += ''; @@ -116,6 +146,18 @@ font-family: monospace; } +table, th, td { +border: 1px solid black; +} + +th { +font-weight: bold; +} + +table { +border-collapse: collapse; +} + #header { font-weight: bold; width: 20em;