Django

Code

Changeset 3812

Show
Ignore:
Timestamp:
09/24/06 03:22:52 (2 years ago)
Author:
mtredinnick
Message:

Documented the change in r3811. Refs #2600.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/django-admin.txt

    r3763 r3812  
    353353**New in Django development version** 
    354354 
    355 Inform django-admin that the user should NOT be prompted for any input. Useful if 
    356 the django-admin script will be executed as an unattended, automated script. 
     355Inform django-admin that the user should NOT be prompted for any input. Useful 
     356if the django-admin script will be executed as an unattended, automated 
     357script. 
    357358 
    358359--noreload 
     
    383384will be printed to the console. '0' is no output, '1' is normal output, 
    384385and `2` is verbose output. 
     386 
     387--adminmedia 
     388------------ 
     389 
     390**New in Django development version** 
     391 
     392Example usage:: 
     393    django-admin.py manage.py --adminmedia=/tmp/new-admin-style/ 
     394 
     395Tell Django where to find the various stylesheets and Javascript files for the 
     396admin interface when running the development server. Normally these files are 
     397served out of the Django source tree, but since some designers change these 
     398files for their site, this option allows you to test against custom versions. 
    385399 
    386400Extra niceties