Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: cms/converters.py

Issue 5148261828526080: Issue 2119 - Add get_page_content template function. (Closed)
Patch Set: Use .iterkeys() instead of .keys() Created April 8, 2015, 9:31 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cms/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cms/converters.py
diff --git a/cms/converters.py b/cms/converters.py
index a59bf2ea26728ead3f5bd243e3c80b77b3aeefa5..eed52bb047a6da5996dd86a6732ef875f8fba7a2 100644
--- a/cms/converters.py
+++ b/cms/converters.py
@@ -292,6 +292,7 @@ class TemplateConverter(Converter):
globals = {
"get_string": self.get_string,
+ "get_page_content": self.get_page_content,
}
for dirname, dictionary in [("filters", filters), ("globals", globals)]:
@@ -342,6 +343,13 @@ class TemplateConverter(Converter):
default = localedata[name]
return jinja2.Markup(self.localize_string(name, default, localedata, html_escapes))
+ def get_page_content(self, page, locale=None):
+ from cms.utils import get_page_params
+
+ if locale is None:
+ locale = self._params["locale"]
+ return get_page_params(self._params["source"], locale, page)
+
def linkify(self, page, locale=None, **attrs):
if locale is None:
locale = self._params["locale"]
« no previous file with comments | « no previous file | cms/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld