Changes between Version 70 and Version 71 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Jan 16, 2007, 8:17:06 PM (17 years ago)
Author:
Adrian Holovaty
Comment:

Added "Changed Admin.manager option to more flexible hook"

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v70 v71  
    3939 * August 11, 2006: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Backslashescapingchanged Backslash escaping changed]
    4040 * 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]
    4142
    4243== Moved mod_python handler ==
     
    603604
    604605As 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
     609As 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
     611Note 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.
Back to Top