Changes between Version 20 and Version 21 of RemovingTheMagic


Ignore:
Timestamp:
Dec 18, 2005, 2:18:37 PM (18 years ago)
Author:
Adrian Holovaty
Comment:

Manipulator change

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v20 v21  
    243243== Automatic manipulators ==
    244244
    245 '''Status: Not yet done'''
     245'''Status: Done'''
    246246
    247247Old:
     
    256256#!python
    257257from path.to.myapp.models import Person
    258 m1 = Person.get_add_manipulator()()
    259 m2 = Person.get_change_manipulator()(3)
     258m1 = Person.AddManipulator()
     259m2 = Person.ChangeManipulator()(3)
    260260}}}
    261261
Back to Top