Ticket #8580: missing_links_in_ref_doc.diff
File missing_links_in_ref_doc.diff, 1.3 KB (added by , 16 years ago) |
---|
-
docs/ref/settings.txt
269 269 270 270 A boolean that turns on/off debug mode. 271 271 272 If you define custom settings, django/views/debug.pyhas a ``HIDDEN_SETTINGS``272 If you define custom settings, `django/views/debug.py`_ has a ``HIDDEN_SETTINGS`` 273 273 regular expression which will hide from the DEBUG view anything that contains 274 274 ``'SECRET'``, ``'PASSWORD'``, or ``'PROFANITIES'``. This allows untrusted users to 275 275 be able to give backtraces without seeing sensitive (or offensive) settings. … … 284 284 285 285 Never deploy a site into production with ``DEBUG`` turned on. 286 286 287 .. _django/views/debug.py: http://code.djangoproject.com/browser/django/trunk/django/views/debug.py 288 287 289 DEBUG_PROPAGATE_EXCEPTIONS 288 290 -------------------------- 289 291 … … 766 768 the ``hasNoProfanities`` validator is called. 767 769 768 770 We don't list the default values here, because that would be profane. To see 769 the default values, see the file ` `django/conf/global_settings.py``.771 the default values, see the file `django/conf/global_settings.py`_. 770 772 771 773 .. setting:: ROOT_URLCONF 774 .. _django/conf/global_settings.py: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py 772 775 773 776 ROOT_URLCONF 774 777 ------------