diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-05 04:25:12 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-05 04:25:12 +0000 |
commit | ab9ad605bed8d9aa8a63585fc84f32270d0917c9 (patch) | |
tree | de413eeb1566bbabf6d87b85876df1d4a431cf5e /chrome/common/extensions/docs/server2/template_renderer.py | |
parent | a87f28d3051782dbb5bb442aa56eb0c9d16bca75 (diff) | |
download | chromium_src-ab9ad605bed8d9aa8a63585fc84f32270d0917c9.zip chromium_src-ab9ad605bed8d9aa8a63585fc84f32270d0917c9.tar.gz chromium_src-ab9ad605bed8d9aa8a63585fc84f32270d0917c9.tar.bz2 |
Docserver: Properly implement the Cron logic for ContentProvider and
TemplateDataSource so that the nacl docs and partial templates are correctly
pulled in by the cronjob. Make the integration tests actually test nacl docs.
BUG=339936
R=yoz@chromium.org
Review URL: https://codereview.chromium.org/151773002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248847 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/server2/template_renderer.py')
-rw-r--r-- | chrome/common/extensions/docs/server2/template_renderer.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/extensions/docs/server2/template_renderer.py b/chrome/common/extensions/docs/server2/template_renderer.py index 87bc5af..a6b8d65 100644 --- a/chrome/common/extensions/docs/server2/template_renderer.py +++ b/chrome/common/extensions/docs/server2/template_renderer.py @@ -36,6 +36,10 @@ class TemplateRenderer(object): 'apps_samples_url': GITHUB_BASE, 'base_path': self._server_instance.base_path, 'extensions_samples_url': EXTENSIONS_SAMPLES, + # TODO(kalman): Figure out where "pepperversion" comes from. It's used + # internally in pepper and unfortunately the syntax appears to be + # {{pepperversion}} for some reason. + 'pepperversion': '', 'static': self._server_instance.base_path + 'static', }) if additional_context: |