diff --git a/docs/advanced.txt b/docs/advanced.txt index bc30709..dc62866 100644 --- a/docs/advanced.txt +++ b/docs/advanced.txt @@ -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/ diff --git a/docs/changelog.txt b/docs/changelog.txt index 5a78419..e71fc48 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -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) ----------------