Author: jezdez
Date: 2010-11-13 12:41:24 -0600 (Sat, 13 Nov 2010)
New Revision: 14552
Modified:
django/trunk/django/core/management/commands/runserver.py
django/trunk/docs/internals/deprecation.txt
django/trunk/docs/ref/django-admin.txt
Log:
Fixed a few typos introduced in r14533.
Modified: django/trunk/django/core/management/commands/runserver.py
===================================================================
--- django/trunk/django/core/management/commands/runserver.py 2010-11-13
03:55:06 UTC (rev 14551)
+++ django/trunk/django/core/management/commands/runserver.py 2010-11-13
18:41:24 UTC (rev 14552)
@@ -12,7 +12,7 @@
make_option('--nostatic', action="store_false",
dest='use_static_handler', default=True,
help='Tells Django to NOT automatically serve static files at
STATICFILES_URL.'),
make_option('--insecure', action="store_true",
dest='insecure_serving', default=False,
- help='Allows serving static files even if DEBUG is True.'),
+ help='Allows serving static files even if DEBUG is False.'),
make_option('--adminmedia', dest='admin_media_path', default='',
help='Specifies the directory from which to serve admin media.'),
)
Modified: django/trunk/docs/internals/deprecation.txt
===================================================================
--- django/trunk/docs/internals/deprecation.txt 2010-11-13 03:55:06 UTC (rev
14551)
+++ django/trunk/docs/internals/deprecation.txt 2010-11-13 18:41:24 UTC (rev
14552)
@@ -129,7 +129,7 @@
* The :class:`~django.core.servers.basehttp.AdminMediaHandler` has
been deprecated in favor of the
- :class:`~django.contrib.staticfiles.handlers.StaticFilesHAndler`.
+ :class:`~django.contrib.staticfiles.handlers.StaticFilesHandler`.
* 2.0
* ``django.views.defaults.shortcut()``. This function has been moved
Modified: django/trunk/docs/ref/django-admin.txt
===================================================================
--- django/trunk/docs/ref/django-admin.txt 2010-11-13 03:55:06 UTC (rev
14551)
+++ django/trunk/docs/ref/django-admin.txt 2010-11-13 18:41:24 UTC (rev
14552)
@@ -694,7 +694,7 @@
Use the ``--insecure`` option to force serving of static files with the
:doc:`staticfiles </ref/contrib/staticfiles>` app even if the :setting:`DEBUG`
-setting is ``False``. By using this you acknoledge the fact that it's
+setting is ``False``. By using this you acknowledge the fact that it's
**grossly inefficient** and probably **insecure**. This is only intended for
local development, and should **never be used in production**.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.