diff options
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-11-05 19:26:23 +0000 |
---|---|---|
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-11-05 19:26:23 +0000 |
commit | f5cd24c80f7c1891c183265a2dfbcc6d956502dd (patch) | |
tree | 7deb9b0ce51e7bd50476ffc992cf9e31886baca2 /tko/test.cgi | |
parent | c2912158ade4f5be3a26e1f327bc7860f7207ab0 (diff) |
lightly prettier (?) results tables, with minimal actual code changes
This looks like it changes lots of files, but really all the changes are in disp
lay.py. In the other files I just added display.print_main_header() so that all
pages have the common header now, which they should have anyway.
From: Steve Howard <showard@google.com>
Signed-off-by: Martin Bligh <mbligh@google.com>
git-svn-id: svn://test.kernel.org/autotest/trunk@909 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko/test.cgi')
-rw-r--r-- | tko/test.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tko/test.cgi b/tko/test.cgi index dd858b00..d96d82f5 100644 --- a/tko/test.cgi +++ b/tko/test.cgi @@ -16,6 +16,8 @@ import db, display, frontend db = db.db() def main(): + display.print_main_header() + form = cgi.FieldStorage() if form.has_key('sql'): @@ -64,4 +66,3 @@ def main(): display.print_table(matrix) main() - |