annotate examples/includes/run.py @ 22:31b13ddf9f53

Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
author cmlenz
date Tue, 20 Jun 2006 15:10:24 +0000
parents eca77129518a
children 00835401c8cc
rev   line source
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
1 #!/usr/bin/python
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
2 # -*- coding: utf-8 -*-
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
3
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
4 from datetime import datetime, timedelta
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
5 import os
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
6 import sys
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
7 import timing
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
8
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
9 from markup.template import Context, TemplateLoader
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
10
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
11 def test():
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
12 base_path = os.path.dirname(os.path.abspath(__file__))
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
13 loader = TemplateLoader([os.path.join(base_path, 'skins'),
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
14 os.path.join(base_path, 'module'),
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
15 os.path.join(base_path, 'common')])
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
16
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
17 timing.start()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
18 tmpl = loader.load('test.html')
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
19 timing.finish()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
20 print ' --> parse stage: %dms' % timing.milli()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
22 data = dict(hello='<world>', skin='default', hey='ZYX', bozz=None,
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
23 items=['Number %d' % num for num in range(1, 15)])
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
24
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
25 print tmpl.generate(Context(**data)).render(method='html')
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
26
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
27 times = []
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
28 for i in range(100):
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
29 timing.start()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
30 list(tmpl.generate(Context(**data)))
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
31 timing.finish()
22
31b13ddf9f53 Fix for the template engine plugin: the search path is now ignored if the requested template path is absolute.
cmlenz
parents: 21
diff changeset
32 times.append(timing.milli())
21
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
33 sys.stdout.write('.')
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
34 sys.stdout.flush()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
35 print
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
36
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
37 print ' --> render stage: %dms (avg), %dms (min), %dms (max)' % (
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
38 sum(times) / len(times), min(times), max(times))
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
39
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
40 if __name__ == '__main__':
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
41 if '-p' in sys.argv:
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
42 import hotshot, hotshot.stats
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
43 prof = hotshot.Profile("template.prof")
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
44 benchtime = prof.runcall(test)
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
45 stats = hotshot.stats.load("template.prof")
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
46 stats.strip_dirs()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
47 stats.sort_stats('time', 'calls')
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
48 stats.print_stats()
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
49 else:
eca77129518a * Include paths are now interpreted relative to the path of the including template. Closes #3.
cmlenz
parents:
diff changeset
50 test()
Copyright (C) 2012-2017 Edgewall Software