From 15cb6d407a3cbacbaacdf0f71eccd249a3e6f48d Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 23 Apr 2013 02:18:57 +0300 Subject: [PATCH] Issue #24 - Add the context_processors app to jingo.EXCLUDE_APPS. --- CHANGELOG | 5 +++++ docs/index.rst | 6 +++++- jingo/__init__.py | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 2bcde69..f86f6aa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,11 @@ CHANGES ======= +v0.6.2 +------ + +* Add context_processors application to EXCLUDE_APPS. + v0.6.1 ------ diff --git a/docs/index.rst b/docs/index.rst index f919a27..c9d4266 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -87,9 +87,13 @@ The default is in ``jingo.EXCLUDE_APPS``:: EXCLUDE_APPS = ( 'admin', 'admindocs', - 'registration' + 'registration', + 'context_processors', ) +.. versionchanged:: 0.6.2 + Added ``context_processors`` application. + If you want to configure the Jinja environment, use ``JINJA_CONFIG`` in ``settings.py``. It can be a dict or a function that returns a dict. :: diff --git a/jingo/__init__.py b/jingo/__init__.py index 75a9fd6..584d1ae 100644 --- a/jingo/__init__.py +++ b/jingo/__init__.py @@ -19,6 +19,7 @@ EXCLUDE_APPS = ( 'admin', 'admindocs', 'registration', + 'context_processors', ) log = logging.getLogger('jingo')