Django

Code

Changeset 6874

Show
Ignore:
Timestamp:
12/04/07 00:01:00 (1 year ago)
Author:
adrian
Message:

Removed some 'behaviour's from the docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/middleware.txt

    r6852 r6874  
    7070  for ``foo.com/bar/``. 
    7171 
    72   **New in Django development version:** The behaviour of ``APPEND_SLASH`` has 
    73   changed slightly in the development version (it didn't used to check to see 
    74   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
    7575 
    7676  If ``PREPEND_WWW`` is ``True``, URLs that lack a leading "www." will be 
  • django/trunk/docs/templates.txt

    r6828 r6874  
    566566**New in Django development version** 
    567567 
    568 Control the current auto-escaping behaviour. This tag takes either ``on`` or 
     568Control the current auto-escaping behavior. This tag takes either ``on`` or 
    569569``off`` as an argument and that determines whether auto-escaping is in effect 
    570570inside the block. 
     
    573573to it before placing the result into the output (but after any filters have 
    574574been applied). This is equivalent to manually applying the ``escape`` filter 
    575 attached 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 
     575to each variable. 
     576 
     577The only exceptions are variables that are already marked as "safe" from 
     578escaping, either by the code that populated the variable, or because it has had 
    579579the ``safe`` or ``escape`` filters applied. 
    580580