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: get_page_content needs to return page title as well. Created April 7, 2015, 8:40 p.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') | cms/utils.py » ('J')
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..b7b856e65b97833afe106969b023ec40ddd32789 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,14 @@ 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"]
+ params = get_page_params(self._params["source"], locale, page)
+ return {k: params[k] for k in ("head", "body", "title")}
Wladimir Palant 2015/04/07 21:17:11 The CMS doesn't know about the title variable - it
kzar 2015/04/08 08:15:24 Done.
+
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') | cms/utils.py » ('J')

Powered by Google App Engine
This is Rietveld