Author: adrian Date: 2007-04-26 09:51:50 -0500 (Thu, 26 Apr 2007) New Revision: 5093
Modified: django/trunk/docs/settings.txt Log: Added 'New in Django development version' note to docs/settings.txt changes from [5072], and fixed alphabetizing Modified: django/trunk/docs/settings.txt =================================================================== --- django/trunk/docs/settings.txt 2007-04-26 13:48:31 UTC (rev 5092) +++ django/trunk/docs/settings.txt 2007-04-26 14:51:50 UTC (rev 5093) @@ -562,9 +562,23 @@ you'll have to remember to wrap the languages in the *real* ``gettext()`` in any code that uses ``LANGUAGES`` at runtime. +LOGIN_REDIRECT_URL +------------------ + +**New in Django development version** + +Default: ``'/accounts/profile/'`` + +The URL where requests are redirected after login when the +``contrib.auth.login`` view gets no ``next`` parameter. + +This is used by the [EMAIL PROTECTED] decorator, for example. + LOGIN_URL --------- +**New in Django development version** + Default: ``'/accounts/login/'`` The URL where requests are redirected for login, specially when using the @@ -573,6 +587,8 @@ LOGOUT_URL ---------- +**New in Django development version** + Default: ``'/accounts/logout/'`` LOGIN_URL counterpart. @@ -635,16 +651,6 @@ See `allowed date format strings`_. See also DATE_FORMAT, DATETIME_FORMAT, TIME_FORMAT and YEAR_MONTH_FORMAT. -LOGIN_REDIRECT_URL ------------------- - -Default: ``'/accounts/profile/'`` - -The URL where requests are redirected after login when the -``contrib.auth.login`` view gets no ``next`` parameter. - -This is used by the [EMAIL PROTECTED] decorator, for example. - PREPEND_WWW ----------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
