From 0cbc3b76a93d6c69e649378a10b75aa57cc7165d Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Mon, 27 Jun 2011 16:36:56 -0400 Subject: [PATCH] Cleaned up shipherd docs. --- docs/contrib/shipherd.rst | 9 --------- philo/contrib/shipherd/templatetags/shipherd.py | 15 ++------------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/docs/contrib/shipherd.rst b/docs/contrib/shipherd.rst index 7d2eaf7..9e03f67 100644 --- a/docs/contrib/shipherd.rst +++ b/docs/contrib/shipherd.rst @@ -31,18 +31,9 @@ Models :members: Navigation, NavigationItem, NavigationMapper :show-inheritance: -Navigation caching ------------------- - .. autoclass:: NavigationManager :members: -.. autoclass:: NavigationItemManager - :members: - -.. autoclass:: NavigationCacheQuerySet - :members: - Template tags +++++++++++++ diff --git a/philo/contrib/shipherd/templatetags/shipherd.py b/philo/contrib/shipherd/templatetags/shipherd.py index 833a995..f522dfa 100644 --- a/philo/contrib/shipherd/templatetags/shipherd.py +++ b/philo/contrib/shipherd/templatetags/shipherd.py @@ -141,21 +141,10 @@ def recursenavigation(parser, token): {% endrecursenavigation %} - .. note:: {% recursenavigation %} requires that the current :class:`HttpRequest` be present in the context as ``request``. The simplest way to do this is with the `request context processor`_. If this is installed with just the default template context processors, the entry in your settings file will look like this:: - - TEMPLATE_CONTEXT_PROCESSORS = ( - # Defaults - "django.contrib.auth.context_processors.auth", - "django.core.context_processors.debug", - "django.core.context_processors.i18n", - "django.core.context_processors.media", - "django.core.context_processors.static", - "django.contrib.messages.context_processors.messages" - ... - "django.core.context_processors.request" - ) + .. note:: {% recursenavigation %} requires that the current :class:`HttpRequest` be present in the context as ``request``. The simplest way to do this is with the `request context processor`_. Simply make sure that ``django.core.context_processors.request`` is included in your :setting:`TEMPLATE_CONTEXT_PROCESSORS` setting. .. _request context processor: https://docs.djangoproject.com/en/dev/ref/templates/api/#django-core-context-processors-request + """ bits = token.contents.split() if len(bits) != 3: -- 2.20.1