Changeset 6874
- Timestamp:
- 12/04/07 00:01:00 (1 year ago)
- Files:
-
- django/trunk/docs/middleware.txt (modified) (1 diff)
- django/trunk/docs/templates.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/middleware.txt
r6852 r6874 70 70 for ``foo.com/bar/``. 71 71 72 **New in Django development version:** The behavio ur of ``APPEND_SLASH`` has73 changed slightly in the development version (it didn't used to check to see74 if the pattern was matched in the URL patterns).72 **New in Django development version:** The behavior of ``APPEND_SLASH`` has 73 changed slightly in the development version. It didn't used to check to see 74 whether the pattern was matched in the URLconf. 75 75 76 76 If ``PREPEND_WWW`` is ``True``, URLs that lack a leading "www." will be django/trunk/docs/templates.txt
r6828 r6874 566 566 **New in Django development version** 567 567 568 Control the current auto-escaping behavio ur. This tag takes either ``on`` or568 Control the current auto-escaping behavior. This tag takes either ``on`` or 569 569 ``off`` as an argument and that determines whether auto-escaping is in effect 570 570 inside the block. … … 573 573 to it before placing the result into the output (but after any filters have 574 574 been applied). This is equivalent to manually applying the ``escape`` filter 575 attachedto each variable.576 577 The only exceptions are variables that are already marked as 'safe'from578 escaping, either by the code that populated the variable, or because it has 575 to each variable. 576 577 The only exceptions are variables that are already marked as "safe" from 578 escaping, either by the code that populated the variable, or because it has had 579 579 the ``safe`` or ``escape`` filters applied. 580 580
