Django

Code

Changeset 8125

Show
Ignore:
Timestamp:
07/27/08 18:51:07 (5 months ago)
Author:
ubernostrum
Message:

Remove the last remaining references to manipulators outside of oldforms docs

Files:

Legend:

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

    r8020 r8125  
    539539    serialization, the API might change in the future. 
    540540 
    541 Returns a dictionary, mapping the field's attribute name to a flattened string 
    542 version of the data. This method has some internal uses that aren't of 
    543 interest to use here (mostly having to do with manipulators). For our 
    544 purposes, it's sufficient to return a one item dictionary that maps the 
    545 attribute name to a string. 
     541Returns a dictionary, mapping the field's attribute name to a 
     542flattened string version of the data. This method has some internal 
     543uses that aren't of interest to use here (mostly having to do with 
     544formss). For our purposes, it's sufficient to return a one item 
     545dictionary that maps the attribute name to a string. 
    546546 
    547547This method is used by the serializers to convert the field into a string for 
  • django/trunk/docs/generic_views.txt

    r8119 r8125  
    999999A page that displays a form for editing an existing object, redisplaying the 
    10001000form with validation errors (if there are any) and saving changes to the 
    1001 object. This uses the automatic manipulators that come with Django models. 
     1001object. This uses a form automatically generated from the object's 
     1002model class. 
    10021003 
    10031004**Required arguments:**