Ticket #8580: missing_links_in_ref_doc.diff

File missing_links_in_ref_doc.diff, 1.3 KB (added by Manuel Saelices, 16 years ago)
  • docs/ref/settings.txt

     
    269269
    270270A boolean that turns on/off debug mode.
    271271
    272 If you define custom settings, django/views/debug.py has a ``HIDDEN_SETTINGS``
     272If you define custom settings, `django/views/debug.py`_ has a ``HIDDEN_SETTINGS``
    273273regular expression which will hide from the DEBUG view anything that contains
    274274``'SECRET'``, ``'PASSWORD'``, or ``'PROFANITIES'``. This allows untrusted users to
    275275be able to give backtraces without seeing sensitive (or offensive) settings.
     
    284284
    285285Never deploy a site into production with ``DEBUG`` turned on.
    286286
     287.. _django/views/debug.py: http://code.djangoproject.com/browser/django/trunk/django/views/debug.py
     288
    287289DEBUG_PROPAGATE_EXCEPTIONS
    288290--------------------------
    289291
     
    766768the ``hasNoProfanities`` validator is called.
    767769
    768770We 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``.
     771the default values, see the file `django/conf/global_settings.py`_.
    770772
    771773.. setting:: ROOT_URLCONF
     774.. _django/conf/global_settings.py: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py
    772775
    773776ROOT_URLCONF
    774777------------
Back to Top