summaryrefslogtreecommitdiff
path: root/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'template.py')
-rwxr-xr-xtemplate.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/template.py b/template.py
index 86516bb6..aab6fddd 100755
--- a/template.py
+++ b/template.py
@@ -23,7 +23,12 @@ env.install_gettext_translations(tr, newstyle=True)
tmpl = env.get_template(in_file)
+def url(x):
+ # TODO: look at the app root environment variable
+ # TODO: check if file exists
+ return x
+
import codecs
f = codecs.open(out_file, "w", "utf-8")
-f.write(tmpl.render())
+f.write(tmpl.render(lang=locale, url=url))
f.close()