Changes between Version 70 and Version 71 of BackwardsIncompatibleChanges
- Timestamp:
- Jan 16, 2007, 8:17:06 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v70 v71 39 39 * August 11, 2006: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Backslashescapingchanged Backslash escaping changed] 40 40 * September 27, 2006: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#RemovedENABLE_PSYCOsetting Removed ENABLE_PSYCO setting] 41 * January 16, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#ChangedAdmin.manageroptiontomoreflexiblehook Changed Admin.manager option to more flexible hook] 41 42 42 43 == Moved mod_python handler == … … 603 604 604 605 As of [3877], the {{{ENABLE_PSYCO}}} setting no longer exists. If your settings file includes {{{ENABLE_PSYCO}}}, nothing will break per se, but it just won't do anything. If you want to use psyco with Django, write some custom middleware that activates psyco. 606 607 == Changed Admin.manager option to more flexible hook == 608 609 As of [4342], the {{{manager}}} option to {{{class Admin}}} no longer exists. This option was undocumented, but we're mentioning the change here in case you used it. In favor of this option, {{{class Admin}}} may now define a {{{change_list_queryset()}}} method, giving you much more flexibility. 610 611 Note that this change was made to the NewformsAdminBranch branch, which is scheduled to merge to trunk by January 31. The change will not be made to trunk until that branch is merged to trunk.