Changeset 3841
- Timestamp:
- 09/25/06 12:50:36 (2 years ago)
- Files:
-
- django/trunk/django/core/management.py (modified) (1 diff)
- django/trunk/django/core/servers/basehttp.py (modified) (1 diff)
- django/trunk/docs/django-admin.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management.py
r3821 r3841 1275 1275 type='choice', choices=['0', '1', '2'], 1276 1276 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 developmentserver.'),1277 parser.add_option('--adminmedia', dest='admin_media_path', default='', help='Specifies the directory from which to serve admin media for runserver.'), 1278 1278 1279 1279 options, args = parser.parse_args(argv[1:]) django/trunk/django/core/servers/basehttp.py
r3811 r3841 595 595 security and is not super efficient. 596 596 """ 597 def __init__(self, application, media_dir =None):597 def __init__(self, application, media_dir=None): 598 598 from django.conf import settings 599 599 self.application = application django/trunk/docs/django-admin.txt
r3812 r3841 393 393 django-admin.py manage.py --adminmedia=/tmp/new-admin-style/ 394 394 395 Tell Django where to find the various stylesheets and Javascript files for the396 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 f iles for their site, this option allows you to test against custom versions.395 Tells Django where to find the various CSS and JavaScript files for the admin 396 interface when running the development server. Normally these files are served 397 out of the Django source tree, but because some designers customize these files 398 for their site, this option allows you to test against custom versions. 399 399 400 400 Extra niceties
