Django

Code

Show
Ignore:
Timestamp:
05/14/07 02:16:27 (2 years ago)
Author:
mtredinnick
Message:

unicode: Merged from trunk up to [5222] (want to use the extra tests).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/unicode

    • Property svnmerge-integrated changed from /django/trunk:1-5213 to /django/trunk:1-5223
  • django/branches/unicode/docs/databrowse.txt

    r5054 r5224  
    4545       some point. A good place for it is in your URLconf file (``urls.py``). 
    4646 
    47     3. Add the following line to your URLconf:: 
     47    3. Change your URLconf to import the ``databrowse`` module:: 
     48 
     49           from django.contrib import databrowse 
     50 
     51       ...and add the following line to your URLconf:: 
    4852 
    4953           (r'^databrowse/(.*)', databrowse.site.root),