浏览代码

Fixed some ReST errors; refs #20819.

Tim Graham 11 年之前
父节点
当前提交
4d8ecbdfda
共有 2 个文件被更改,包括 6 次插入6 次删除
  1. 3 3
      docs/ref/contrib/staticfiles.txt
  2. 3 3
      docs/releases/1.7.txt

+ 3 - 3
docs/ref/contrib/staticfiles.txt

@@ -352,9 +352,9 @@ This view function serves static files in development.
 
 .. versionchanged:: 1.7
 
-    Will now raise an :exc:`~django.http.Http404` exception instead of
-    :exc:`~from django.core.exceptions.ImproperlyConfigured` when
-    :setting:`DEBUG` is ``True``.
+    This view will now raise an :exc:`~django.http.Http404` exception instead
+    of :exc:`~django.core.exceptions.ImproperlyConfigured` when
+    :setting:`DEBUG` is ``False``.
 
 .. note::
 

+ 3 - 3
docs/releases/1.7.txt

@@ -122,10 +122,10 @@ Miscellaneous
 * Loading empty fixtures emits a ``RuntimeWarning`` rather than raising
   :class:`~django.core.management.CommandError`.
 
-* :view:`~django.contrib.staticfiles.views.serve` will now raise an
+* :func:`django.contrib.staticfiles.views.serve` will now raise an
   :exc:`~django.http.Http404` exception instead of
-  :exc:`~from django.core.exceptions.ImproperlyConfigured` when :setting:`DEBUG`
-  is ``True``. This change removes the need to conditionally add the view to
+  :exc:`~django.core.exceptions.ImproperlyConfigured` when :setting:`DEBUG`
+  is ``False``. This change removes the need to conditionally add the view to
   your root URLconf, which in turn makes it safe to reverse by name. It also
   removes the ability for visitors to generate spurious HTTP 500 errors by
   requesting static files that don't exist or haven't been collected yet.