Updated docs.

This commit is contained in:
Jannis Leidel 2011-08-15 13:08:46 +02:00
parent e55e52156f
commit 6c08984118
2 changed files with 20 additions and 0 deletions

View file

@ -82,6 +82,12 @@ Management commands
Tries to add the two templates ``404.html`` and ``500.html`` that are used
by Django when a error occurs.
* ``check_template_syntax``
.. versionadded:: 1.2
Checks the saved templates whether they are valid Django templates.
.. _Django management commands: http://docs.djangoproject.com/en/dev/ref/django-admin/
.. _admin_actions:
@ -101,4 +107,10 @@ Admin actions
Repopulates the cache with selected templates by invalidating it first and
filling then after that.
* ``check_syntax``
.. versionadded:: 1.2
Checks the selected tempaltes for syntax errors.
.. _admin actions: http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/

View file

@ -1,6 +1,14 @@
Changelog
=========
1.2 (08-15-11)
--------------
* Refactored the template loader to be even more cache effective.
* Added ``check_template_syntax`` management command and admin action
to make sure the saved templates are valid Django templates.
1.1.1 (07-08-11)
----------------