0
0
mirror of https://github.com/django/django.git synced 2024-12-01 07:31:48 +01:00

Fixed #16939 -- Inaccurate implementation of {% comment %} presented in custom template tag 'howto' guide. Thanks sebastian for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17663 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Chris Beaven 2012-03-05 03:25:27 +00:00
parent ad97f0ec4b
commit 5ccc6f17b8
2 changed files with 10 additions and 2 deletions

View File

@ -1155,7 +1155,7 @@ Template tags can work in tandem. For instance, the standard
To create a template tag such as this, use ``parser.parse()`` in your
compilation function.
Here's how the standard :ttag:`{% comment %}<comment>` tag is implemented:
Here's how a simplified ``{% comment %}`` tag might be implemented:
.. code-block:: python
@ -1168,6 +1168,14 @@ Here's how the standard :ttag:`{% comment %}<comment>` tag is implemented:
def render(self, context):
return ''
.. note::
The actual implementation of :ttag:`{% comment %}<comment>` is slightly
different in that it allows broken template tags to appear between
``{% comment %}`` and ``{% endcomment %}``. It does so by calling
``parser.skip_past('endcomment')`` instead of ``parser.parse(('endcomment',))``
followed by ``parser.delete_first_token()``, thus avoiding the generation of a
node list.
``parser.parse()`` takes a tuple of names of block tags ''to parse until''. It
returns an instance of ``django.template.NodeList``, which is a list of
all ``Node`` objects that the parser encountered ''before'' it encountered

View File

@ -51,7 +51,7 @@ Defines a block that can be overridden by child templates. See
comment
^^^^^^^
Ignores everything between ``{% comment %}`` and ``{% endcomment %}``
Ignores everything between ``{% comment %}`` and ``{% endcomment %}``.
.. templatetag:: csrf_token