# HG changeset patch # User Jeff Hammel # Date 1341987569 25200 # Node ID 6ec941f8704aa9fb72990cc7c04847fbd9fd63e4 # Parent 56d267d847e1f2f1513907bfe914891d38889e3c css improvements diff -r 56d267d847e1 -r 6ec941f8704a talosnames/templates/index.html --- a/talosnames/templates/index.html Tue Jul 10 21:36:24 2012 -0700 +++ b/talosnames/templates/index.html Tue Jul 10 23:19:29 2012 -0700 @@ -5,10 +5,33 @@ table, th, td { border: 1px solid black; } +dt { +font-style: italic; +font-weight: 550; +float: left; +clear: left; +padding-right: 1em; +} + +dd { clear: right; } + +dt::after { content: ": "; } + +.header { +font-weight: bold; +align: center; +text-align: center; +} + + + - +
@@ -30,7 +53,7 @@ {{for test in sorted(tests[suite].keys())}} -
Buildbot Suite Buildbot Command
{{test}} +
{{test}}
{{for attr in sorted(tests.get(suite, {})[test].keys())}}
{{attr}}
diff -r 56d267d847e1 -r 6ec941f8704a talosnames/web.py --- a/talosnames/web.py Tue Jul 10 21:36:24 2012 -0700 +++ b/talosnames/web.py Tue Jul 10 23:19:29 2012 -0700 @@ -19,14 +19,7 @@ self.api = TalosNames() self.template = file(template).read() - def __call__(self, environ, start_response): - request = Request(environ) - response = Response(content_type='text/html', - body=self.render()) - return response(environ, start_response) - - def render(self): - template = tempita.HTMLTemplate(self.template) + # get data suites = sorted(self.api.suites.keys()) tests = {} for suite in suites: @@ -36,15 +29,25 @@ except: tests[suite] = None - data = {'suites': suites, - 'commands': self.api.buildbot_commands, - 'tbpl': dict([(suite, self.api.tbpl_name(suite)) - for suite in suites]), - 'tests': tests, - 'pprint': pprint.pformat, - 'api': self.api - } - return template.substitute(data) + self.data = {'suites': suites, + 'commands': self.api.buildbot_commands, + 'tbpl': dict([(suite, self.api.tbpl_name(suite)) + for suite in suites]), + 'tests': tests, + 'pprint': pprint.pformat, + 'api': self.api + } + + + def __call__(self, environ, start_response): + request = Request(environ) + response = Response(content_type='text/html', + body=self.render()) + return response(environ, start_response) + + def render(self): + template = tempita.HTMLTemplate(self.template) + return template.substitute(self.data) if __name__ == '__main__': from wsgiref import simple_server