Skip to content

Commit a04df80

Browse files
committed
Removed links to deprecated IGNORABLE_404_STARTS/ENDS settings.
refs django#19516 and 641acf7
1 parent a7b7d63 commit a04df80

File tree

4 files changed

+30
-27
lines changed

4 files changed

+30
-27
lines changed

docs/internals/deprecation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ these changes.
227227
be accessible through their GB-prefixed names (GB is the correct
228228
ISO 3166 code for United Kingdom).
229229

230-
* The :setting:`IGNORABLE_404_STARTS` and :setting:`IGNORABLE_404_ENDS`
231-
settings have been superseded by :setting:`IGNORABLE_404_URLS` in
232-
the 1.4 release. They will be removed.
230+
* The ``IGNORABLE_404_STARTS`` and ``IGNORABLE_404_ENDS`` settings have been
231+
superseded by :setting:`IGNORABLE_404_URLS` in the 1.4 release. They will be
232+
removed.
233233

234234
* The :doc:`form wizard </ref/contrib/formtools/form-wizard>` has been
235235
refactored to use class-based views with pluggable backends in 1.4.

docs/releases/1.4-alpha-1.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -813,11 +813,12 @@ For more details, see the documentation about
813813

814814
Until Django 1.3, it was possible to exclude some URLs from Django's
815815
:doc:`404 error reporting</howto/error-reporting>` by adding prefixes to
816-
:setting:`IGNORABLE_404_STARTS` and suffixes to :setting:`IGNORABLE_404_ENDS`.
816+
``IGNORABLE_404_STARTS`` and suffixes to ``IGNORABLE_404_ENDS``.
817817

818818
In Django 1.4, these two settings are superseded by
819-
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular expressions.
820-
Django won't send an email for 404 errors on URLs that match any of them.
819+
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular
820+
expressions. Django won't send an email for 404 errors on URLs that match any
821+
of them.
821822

822823
Furthermore, the previous settings had some rather arbitrary default values::
823824

@@ -827,12 +828,12 @@ Furthermore, the previous settings had some rather arbitrary default values::
827828

828829
It's not Django's role to decide if your website has a legacy ``/cgi-bin/``
829830
section or a ``favicon.ico``. As a consequence, the default values of
830-
:setting:`IGNORABLE_404_URLS`, :setting:`IGNORABLE_404_STARTS` and
831-
:setting:`IGNORABLE_404_ENDS` are all now empty.
831+
:setting:`IGNORABLE_404_URLS`, ``IGNORABLE_404_STARTS``, and
832+
``IGNORABLE_404_ENDS`` are all now empty.
832833

833-
If you have customized :setting:`IGNORABLE_404_STARTS` or
834-
:setting:`IGNORABLE_404_ENDS`, or if you want to keep the old default value,
835-
you should add the following lines in your settings file::
834+
If you have customized ``IGNORABLE_404_STARTS`` or ``IGNORABLE_404_ENDS``, or
835+
if you want to keep the old default value, you should add the following lines
836+
in your settings file::
836837

837838
import re
838839
IGNORABLE_404_URLS = (

docs/releases/1.4-beta-1.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -881,11 +881,12 @@ For more details, see the documentation about
881881

882882
Until Django 1.3, it was possible to exclude some URLs from Django's
883883
:doc:`404 error reporting</howto/error-reporting>` by adding prefixes to
884-
:setting:`IGNORABLE_404_STARTS` and suffixes to :setting:`IGNORABLE_404_ENDS`.
884+
``IGNORABLE_404_STARTS`` and suffixes to ``IGNORABLE_404_ENDS``.
885885

886886
In Django 1.4, these two settings are superseded by
887-
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular expressions.
888-
Django won't send an email for 404 errors on URLs that match any of them.
887+
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular
888+
expressions. Django won't send an email for 404 errors on URLs that match any
889+
of them.
889890

890891
Furthermore, the previous settings had some rather arbitrary default values::
891892

@@ -895,12 +896,12 @@ Furthermore, the previous settings had some rather arbitrary default values::
895896

896897
It's not Django's role to decide if your website has a legacy ``/cgi-bin/``
897898
section or a ``favicon.ico``. As a consequence, the default values of
898-
:setting:`IGNORABLE_404_URLS`, :setting:`IGNORABLE_404_STARTS` and
899-
:setting:`IGNORABLE_404_ENDS` are all now empty.
899+
:setting:`IGNORABLE_404_URLS`, ``IGNORABLE_404_STARTS``, and
900+
``IGNORABLE_404_ENDS`` are all now empty.
900901

901-
If you have customized :setting:`IGNORABLE_404_STARTS` or
902-
:setting:`IGNORABLE_404_ENDS`, or if you want to keep the old default value,
903-
you should add the following lines in your settings file::
902+
If you have customized ``IGNORABLE_404_STARTS`` or ``IGNORABLE_404_ENDS``, or
903+
if you want to keep the old default value, you should add the following lines
904+
in your settings file::
904905

905906
import re
906907
IGNORABLE_404_URLS = (

docs/releases/1.4.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,12 @@ For more details, see the documentation about
966966

967967
Until Django 1.3, it was possible to exclude some URLs from Django's
968968
:doc:`404 error reporting</howto/error-reporting>` by adding prefixes to
969-
:setting:`IGNORABLE_404_STARTS` and suffixes to :setting:`IGNORABLE_404_ENDS`.
969+
``IGNORABLE_404_STARTS`` and suffixes to ``IGNORABLE_404_ENDS``.
970970

971971
In Django 1.4, these two settings are superseded by
972-
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular expressions.
973-
Django won't send an email for 404 errors on URLs that match any of them.
972+
:setting:`IGNORABLE_404_URLS`, which is a list of compiled regular
973+
expressions. Django won't send an email for 404 errors on URLs that match any
974+
of them.
974975

975976
Furthermore, the previous settings had some rather arbitrary default values::
976977

@@ -980,12 +981,12 @@ Furthermore, the previous settings had some rather arbitrary default values::
980981

981982
It's not Django's role to decide if your website has a legacy ``/cgi-bin/``
982983
section or a ``favicon.ico``. As a consequence, the default values of
983-
:setting:`IGNORABLE_404_URLS`, :setting:`IGNORABLE_404_STARTS` and
984-
:setting:`IGNORABLE_404_ENDS` are all now empty.
984+
:setting:`IGNORABLE_404_URLS`, ``IGNORABLE_404_STARTS``, and
985+
``IGNORABLE_404_ENDS`` are all now empty.
985986

986-
If you have customized :setting:`IGNORABLE_404_STARTS` or
987-
:setting:`IGNORABLE_404_ENDS`, or if you want to keep the old default value,
988-
you should add the following lines in your settings file::
987+
If you have customized ``IGNORABLE_404_STARTS`` or ``IGNORABLE_404_ENDS``, or
988+
if you want to keep the old default value, you should add the following lines
989+
in your settings file::
989990

990991
import re
991992
IGNORABLE_404_URLS = (

0 commit comments

Comments
 (0)