django1/django/contrib/flatpages
Malcolm Tredinnick 356662cf74 Implemented auto-escaping of variable output in templates. Fully controllable by template authors and it's possible to write filters and templates that simulataneously work in both auto-escaped and non-auto-escaped environments if you need to. Fixed #2359
See documentation in templates.txt and templates_python.txt for how everything
works.

Backwards incompatible if you're inserting raw HTML output via template variables.

Based on an original design from Simon Willison and with debugging help from Michael Radziej.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@6671 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-11-14 12:58:53 +00:00
..
README.TXT Fixed #2525 -- Fixed typo in contrib/flatpages/README.TXT. Thanks, dummy@habmalnefrage.de 2006-08-11 22:04:42 +00:00
__init__.py BACKWARDS-INCOMPATIBLE CHANGE -- Moved flatpages and redirects to standalone apps in django.contrib that are NOT installed by default. See http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges for full migration information. 2005-11-11 04:45:05 +00:00
middleware.py Fixed #2109 -- Convert old-style classes to new-style classes throughout Django. Thanks, Nicola Larosa 2006-06-08 05:00:13 +00:00
models.py Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used. 2007-08-05 05:14:46 +00:00
urls.py Small bugfix to flatpages URLconf from [1166] 2005-11-11 05:13:57 +00:00
views.py Implemented auto-escaping of variable output in templates. Fully controllable by template authors and it's possible to write filters and templates that simulataneously work in both auto-escaped and non-auto-escaped environments if you need to. Fixed #2359 2007-11-14 12:58:53 +00:00

README.TXT

This is an optional add-on app, flatpages.

For full documentation, see either of these:

    * The file docs/flatpages.txt in the Django distribution
    * http://www.djangoproject.com/documentation/flatpages/ on the Web

Both have identical content.