Mercurial > p > roundup > code
diff roundup/cgi/engine_chameleon.py @ 4587:a2eb4fb3e6d8
New Chameleon templating engine, engine is now configurable.
We now have two configurable templating engines, the old Zope TAL
templates (called zopetal in the config) and the new Chameleon (called
chameleon in the config). A new config-option "template_engine" under
[main] can take these config-options, the default is zopetal.
Thanks to Cheer Xiao for the idea of making this configurable *and*
for the actual implementation!
Cheer Xiao commit log:
- The original TAL engine ported from Zope is thereafter referred to as
"zopetal", in speech and in code
- A new option "template_engine" under [main] introduced
- Zopetal-specific code stripped from cgi/templating.py to form the new
cgi/engine_zopetal.py
- Interface to Chameleon in cgi/engine_chameleon.py
- Engines are supposed to provide a Templates class that mimics the
behavior of the old cgi.templating.Templates. The Templates class is
preferably subclassed from cgi.templating.TemplatesBase.
- New function cgi.templating.get_templates to get the appropriate engine's
Templates instance according to the engine name
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Thu, 23 Feb 2012 18:10:03 +0100 |
| parents | |
| children | 45ac4cd1a381 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/roundup/cgi/engine_chameleon.py Thu Feb 23 18:10:03 2012 +0100 @@ -0,0 +1,47 @@ +"""Templating engine adapter for the Chameleon.""" + +__docformat__ = 'restructuredtext' + +import os.path +from chameleon import PageTemplateLoader + +from roundup.cgi.templating import StringIO, context, find_template, TemplatesBase + +class Templates(TemplatesBase): + def __init__(self, dir): + self.dir = dir + self.loader = PageTemplateLoader(dir) + + def get(self, name, extension=None): + # default the name to "home" + if name is None: + name = 'home' + elif extension is None and '.' in name: + # split name + name, extension = name.split('.') + + src, filename = find_template(self.dir, name, extension) + return RoundupPageTemplate(self.loader.load(src)) + +class RoundupPageTemplate(): + def __init__(self, pt): + self._pt = pt + + def render(self, client, classname, request, **options): + c = context(client, self, classname, request) + c.update({'options': options}) + + def translate(msgid, domain=None, mapping=None, default=None): + result = client.translator.translate(domain, msgid, + mapping=mapping, default=default) + return unicode(result, client.translator.OUTPUT_ENCODING) + + output = self._pt.render(None, translate, None, **c) + return output.encode(client.charset) + + def __getitem__(self, name): + return self._pt[name] + + def __getattr__(self, name): + return getattr(self._pt, name) +
