Dirty patch:
----
--- web/contrib/template.py 2009-03-12 21:19:04.000000000 +0800
+++ web/contrib/template.py 2009-03-13 13:34:45.000000000 +0800
@@ -83,10 +83,13 @@
"""
def __init__(self, *a, **kwargs):
extensions = kwargs.pop('extensions', [])
+ translations = kwargs.pop('translations', None)
globals = kwargs.pop('globals', {})
from jinja2 import Environment,FileSystemLoader
self._lookup = Environment(loader=FileSystemLoader(*a,
**kwargs), extensions=extensions)
+ if translations is not None:
+ self._lookup.install_gettext_translations(translations)
self._lookup.globals.update(globals)
def __getattr__(self, name):
----
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---