Changes between Version 75 and Version 76 of BackwardsIncompatibleChanges
- Timestamp:
- Feb 25, 2007, 3:50:27 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v75 v76 41 41 * January 16, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#ChangedAdmin.manageroptiontomoreflexiblehook Changed Admin.manager option to more flexible hook] 42 42 * January 28, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Changedprepopulate_fromtobedefinedintheAdminclassnotdatabasefieldclasses Changed prepopulate_from to be defined in the Admin class, not database field classes] 43 * February 25, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Movedadmindocviewsintodjango.contrib.admindocs Moved admin doc views into django.contrib.admindocs] 43 44 44 45 == Moved mod_python handler == … … 645 646 646 647 Note that this change was made to the NewformsAdminBranch. The change will not be made to trunk until that branch is merged to trunk. 648 649 == Moved admin doc views into django.contrib.admindocs == 650 651 As of [4585], the documentation views for the Django admin site were moved into a new package, {{{django.contrib.admindocs}}}. 652 653 The admin docs, which aren't documented very well, were located at {{{docs/}}} in the admin site. They're also linked-to by the "Documentation" link in the upper right of default admin templates. 654 655 Because we've moved the doc views, you now have to activate admin docs explicitly. Do this by adding the following line to your URLconf: 656 657 {{{ 658 #!python 659 (r'^admin/doc/', include('django.contrib.admindocs.urls')), 660 }}} 661 662 Note that this change was made to the NewformsAdminBranch. The change will not be made to trunk until that branch is merged to trunk.