diff options
| author | Bouke Haarsma <bouke@webatoom.nl> | 2013-12-14 16:42:50 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-12-14 16:49:25 +0100 |
| commit | bed52afee7a336b833c015bb8878f504cef46bd1 (patch) | |
| tree | 2935e0fc76d6b692a38030ba3178454b1e240a1f /docs/internals/contributing/writing-documentation.txt | |
| parent | e1cfc4b96a955d3d1ee4d544942853cf924200ec (diff) | |
Removed usage of to-be-deprecated ADMIN_FOR setting in contributing docs
Diffstat (limited to 'docs/internals/contributing/writing-documentation.txt')
| -rw-r--r-- | docs/internals/contributing/writing-documentation.txt | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt index ba53a1a3d6..94a9ae3cb4 100644 --- a/docs/internals/contributing/writing-documentation.txt +++ b/docs/internals/contributing/writing-documentation.txt @@ -263,23 +263,26 @@ example: .. code-block:: rst - .. setting:: ADMIN_FOR + .. setting:: ADMINS - ADMIN_FOR - --------- + ADMINS + ------ Default: ``()`` (Empty tuple) - Used for admin-site settings modules, this should be a tuple of - settings modules (in the format ``'foo.bar.baz'``) for which this site - is an admin. + A tuple that lists people who get code error notifications. When + ``DEBUG=False`` and a view raises an exception, Django will email these people + with the full exception information. Each member of the tuple should be a tuple + of (Full name, email address). Example:: - The admin site uses this in its automatically-introspected - documentation of models, views and template tags. + (('John', 'john@example.com'), ('Mary', 'mary@example.com')) + + Note that Django will email *all* of these people whenever an error happens. + See :doc:`/howto/error-reporting` for more information. This marks up the following header as the "canonical" target for the - setting ``ADMIN_FOR`` This means any time I talk about ``ADMIN_FOR``, - I can reference it using ``:setting:`ADMIN_FOR```. + setting ``ADMINS``. This means any time I talk about ``ADMINS``, + I can reference it using ``:setting:`ADMINS```. That's basically how everything fits together. @@ -320,8 +323,8 @@ look better: __ http://sphinx-doc.org/markup/desc.html#info-field-lists -* Whenever possible, use links. So, use ``:setting:`ADMIN_FOR``` instead - of ````ADMIN_FOR````. +* Whenever possible, use links. So, use ``:setting:`ADMINS``` instead + of ````ADMINS````. * Use directives where appropriate. Some directives (e.g. ``.. setting::``) are prefix-style directives; they go *before* |
