Django

Code

Changeset 3841

Show
Ignore:
Timestamp:
09/25/06 12:50:36 (2 years ago)
Author:
adrian
Message:

Proofread new django-admin 'adminmedia' option from [3811] and [3812]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management.py

    r3821 r3841  
    12751275        type='choice', choices=['0', '1', '2'], 
    12761276        help='Verbosity level; 0=minimal output, 1=normal output, 2=all output'), 
    1277     parser.add_option('--adminmedia', dest='admin_media_path', default='', help='Lets you manually specify the directory to serve admin media from when running the development server.'), 
     1277    parser.add_option('--adminmedia', dest='admin_media_path', default='', help='Specifies the directory from which to serve admin media for runserver.'), 
    12781278 
    12791279    options, args = parser.parse_args(argv[1:]) 
  • django/trunk/django/core/servers/basehttp.py

    r3811 r3841  
    595595    security and is not super efficient. 
    596596    """ 
    597     def __init__(self, application, media_dir = None): 
     597    def __init__(self, application, media_dir=None): 
    598598        from django.conf import settings 
    599599        self.application = application 
  • django/trunk/docs/django-admin.txt

    r3812 r3841  
    393393    django-admin.py manage.py --adminmedia=/tmp/new-admin-style/ 
    394394 
    395 Tell Django where to find the various stylesheets and Javascript files for the 
    396 admin interface when running the development server. Normally these files are 
    397 served out of the Django source tree, but since some designers change these 
    398 files for their site, this option allows you to test against custom versions. 
     395Tells Django where to find the various CSS and JavaScript files for the admin 
     396interface when running the development server. Normally these files are served 
     397out of the Django source tree, but because some designers customize these files 
     398for their site, this option allows you to test against custom versions. 
    399399 
    400400Extra niceties