Changes between Version 75 and Version 76 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Feb 25, 2007, 3:50:27 PM (18 years ago)
Author:
Adrian Holovaty
Comment:

Added "Moved admin doc views into django.contrib.admindocs"

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v75 v76  
    4141 * January 16, 2007: [http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#ChangedAdmin.manageroptiontomoreflexiblehook Changed Admin.manager option to more flexible hook]
    4242 * 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]
    4344
    4445== Moved mod_python handler ==
     
    645646
    646647Note 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
     651As of [4585], the documentation views for the Django admin site were moved into a new package, {{{django.contrib.admindocs}}}.
     652
     653The 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
     655Because 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
     662Note that this change was made to the NewformsAdminBranch. The change will not be made to trunk until that branch is merged to trunk.
Back to Top