annotate examples/basic/run.py @ 612:09de73cae3d5

Using `html` code-blocks for examples isn't so nice when viewing the docs over Trac, so change them to `xml`.
author cmlenz
date Wed, 29 Aug 2007 19:34:04 +0000
parents 24757b771651
children
rev   line source
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
1 #!/usr/bin/python
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
2 # -*- coding: utf-8 -*-
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
4 import os
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
5 import sys
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
6 import time
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
7
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 149
diff changeset
8 from genshi.template import TemplateLoader
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
9
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
10 def test():
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
11 base_path = os.path.dirname(os.path.abspath(__file__))
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents: 17
diff changeset
12 loader = TemplateLoader([base_path], auto_reload=True)
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
13
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
14 start = time.clock()
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
15 tmpl = loader.load('test.html')
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
16 print ' --> parse stage: %.4f ms' % ((time.clock() - start) * 1000)
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
17
17
ad63ad459524 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 3
diff changeset
18 data = dict(hello='<world>', skin='default', hey='ZYX', bozz=None,
ad63ad459524 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 3
diff changeset
19 items=['Number %d' % num for num in range(1, 15)],
ad63ad459524 Refactoring to address #6: all match templates are now processed by a single filter, which means that match templates added by included templates are properly applied. A side effect of this refactoring is that `Context` objects may not be reused across multiple template processing runs.
cmlenz
parents: 3
diff changeset
20 prefix='#')
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
21
149
7306bf730ff3 `Template.generate()` now accepts the context data as keyword arguments, so that you don't have to import the `Context` class every time you want to pass data into a template.
cmlenz
parents: 73
diff changeset
22 print tmpl.generate(**data).render(method='html')
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
23
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
24 times = []
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
25 for i in range(1000):
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
26 start = time.clock()
149
7306bf730ff3 `Template.generate()` now accepts the context data as keyword arguments, so that you don't have to import the `Context` class every time you want to pass data into a template.
cmlenz
parents: 73
diff changeset
27 list(tmpl.generate(**data))
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
28 times.append(time.clock() - start)
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
29 sys.stdout.write('.')
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
30 sys.stdout.flush()
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
31 print
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
32
73
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
33 print ' --> render stage: %s ms (average)' % (
b0fd16111f2e Some more performance tweaks.
cmlenz
parents: 21
diff changeset
34 (sum(times) / len(times) * 1000))
3
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
35
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
36 if __name__ == '__main__':
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
37 if '-p' in sys.argv:
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
38 import hotshot, hotshot.stats
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
39 prof = hotshot.Profile("template.prof")
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
40 benchtime = prof.runcall(test)
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
41 stats = hotshot.stats.load("template.prof")
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
42 stats.strip_dirs()
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
43 stats.sort_stats('time', 'calls')
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
44 stats.print_stats()
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
45 else:
e86dcec16d55 Added basic example.
cmlenz
parents:
diff changeset
46 test()
Copyright (C) 2012-2017 Edgewall Software