Django

Code

Changeset 6923

Show
Ignore:
Timestamp:
12/17/07 00:59:01 (9 months ago)
Author:
mtredinnick
Message:

Small typo fixes. Thanks, jdetaeye, Ionut Ciocirlan, David Reynolds and adamv.

Fixed #6123, #6133, #6179, #6194.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/template/defaulttags.py

    r6671 r6923  
    815815 
    816816    Like a simple "include" tag, the ``ssi`` tag includes the contents 
    817     of another file -- which must be specified using an absolute page -- 
     817    of another file -- which must be specified using an absolute path -- 
    818818    in the current page:: 
    819819 
  • django/trunk/docs/custom_model_fields.txt

    r6902 r6923  
    4545 
    4646This is just an ordinary Python class, with nothing Django-specific about it. 
    47 We'd like to be able to things like this in our models (we assume the ``hand`` 
    48 attribute on the model is an instance of ``Hand``):: 
     47We'd like to be able to do things like this in our models (we assume the 
     48``hand`` attribute on the model is an instance of ``Hand``):: 
    4949 
    5050    example = MyModel.objects.get(pk=1) 
  • django/trunk/docs/request_response.txt

    r6881 r6923  
    453453``HttpResponseNotModified`` 
    454454    The constructor doesn't take any arguments. Use this to designate that a 
    455     page hasn't been modified since the user's last request
     455    page hasn't been modified since the user's last request (status code 304)
    456456 
    457457``HttpResponseBadRequest`` 
  • django/trunk/docs/templates_python.txt

    r6798 r6923  
    692692methods). 
    693693 
    694 Registering a custom filters 
    695 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     694Registering custom filters 
     695~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    696696 
    697697Once you've written your filter definition, you need to register it with