Ticket #5455: settings-doc-quotes-typos.diff
File settings-doc-quotes-typos.diff, 2.9 KB (added by , 17 years ago) |
---|
-
docs/settings.txt
325 325 pages -- and, possibly, by other parts of the system. See 326 326 `allowed date format strings`_. 327 327 328 See also DATETIME_FORMAT, TIME_FORMAT, YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT. 328 See also ``DATETIME_FORMAT``, ``TIME_FORMAT``, ``YEAR_MONTH_FORMAT`` 329 and ``MONTH_DAY_FORMAT``. 329 330 330 331 .. _allowed date format strings: ../templates/#now 331 332 … … 338 339 pages -- and, possibly, by other parts of the system. See 339 340 `allowed date format strings`_. 340 341 341 See also DATE_FORMAT, DATETIME_FORMAT, TIME_FORMAT, YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT. 342 See also ``DATE_FORMAT``, ``DATETIME_FORMAT``, ``TIME_FORMAT``, 343 ``YEAR_MONTH_FORMAT`` and ``MONTH_DAY_FORMAT``. 342 344 343 345 .. _allowed date format strings: ../templates/#now 344 346 … … 350 352 A boolean that turns on/off debug mode. 351 353 352 354 If you define custom settings, django/views/debug.py has a ``HIDDEN_SETTINGS`` 353 regular expression which will hide from the DEBUG view anything that cont ins354 ``'SECRET ``, ``PASSWORD``, or ``PROFANITIES'``. This allows untrusted users to355 regular expression which will hide from the DEBUG view anything that contains 356 ``'SECRET'``, ``'PASSWORD'``, or ``'PROFANITIES'``. This allows untrusted users to 355 357 be able to give backtraces without seeing sensitive (or offensive) settings. 356 358 357 359 Still, note that there are always going to be sections of your debug output that … … 656 658 locales have different formats. For example, U.S. English would say 657 659 "January 1," whereas Spanish might say "1 Enero." 658 660 659 See `allowed date format strings`_. See also DATE_FORMAT, DATETIME_FORMAT,660 TIME_FORMAT and YEAR_MONTH_FORMAT.661 See `allowed date format strings`_. See also ``DATE_FORMAT``, 662 ``DATETIME_FORMAT``, ``TIME_FORMAT`` and ``YEAR_MONTH_FORMAT``. 661 663 662 664 PREPEND_WWW 663 665 ----------- … … 815 817 Note that Django only displays fancy error pages if ``DEBUG`` is ``True``, so 816 818 you'll want to set that to take advantage of this setting. 817 819 818 See also DEBUG.820 See also ``DEBUG``. 819 821 820 822 TEMPLATE_DIRS 821 823 ------------- … … 905 907 pages -- and, possibly, by other parts of the system. See 906 908 `allowed date format strings`_. 907 909 908 See also DATE_FORMAT, DATETIME_FORMAT, TIME_FORMAT, YEAR_MONTH_FORMAT and909 MONTH_DAY_FORMAT.910 See also ``DATE_FORMAT``, ``DATETIME_FORMAT``, ``TIME_FORMAT``, 911 ``YEAR_MONTH_FORMAT`` and ``MONTH_DAY_FORMAT``. 910 912 911 913 .. _allowed date format strings: ../templates/#now 912 914 … … 980 982 Different locales have different formats. For example, U.S. English would say 981 983 "January 2006," whereas another locale might say "2006/January." 982 984 983 See `allowed date format strings`_. See also DATE_FORMAT, DATETIME_FORMAT,984 TIME_FORMAT and MONTH_DAY_FORMAT.985 See `allowed date format strings`_. See also ``DATE_FORMAT``, 986 ``DATETIME_FORMAT``, ``TIME_FORMAT`` and ``MONTH_DAY_FORMAT``. 985 987 986 988 .. _cache docs: ../cache/ 987 989 .. _middleware docs: ../middleware/