Mercurial > p > roundup > code
diff roundup/cgi/engine_zopetal.py @ 4719:05fe39f1d823
API break, bumping version to 1.15.0, renamed TemplatesBase to
LoaderBase to correctly reflect semantics and avoid confusion.
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Sun, 06 Jan 2013 16:02:45 +0300 |
| parents | a2eb4fb3e6d8 |
| children | fd72576e07ed |
line wrap: on
line diff
--- a/roundup/cgi/engine_zopetal.py Fri Jan 04 21:17:17 2013 +0100 +++ b/roundup/cgi/engine_zopetal.py Sun Jan 06 16:02:45 2013 +0300 @@ -8,14 +8,14 @@ import os import os.path -from roundup.cgi.templating import StringIO, context, translationService, find_template, TemplatesBase +from roundup.cgi.templating import StringIO, context, translationService, find_template, LoaderBase from roundup.cgi.PageTemplates import PageTemplate, GlobalTranslationService from roundup.cgi.PageTemplates.Expressions import getEngine from roundup.cgi.TAL import TALInterpreter GlobalTranslationService.setGlobalTranslationService(translationService) -class Templates(TemplatesBase): +class Templates(LoaderBase): templates = {} def __init__(self, dir):
