Django

Code

Changeset 5093

Show
Ignore:
Timestamp:
04/26/07 09:51:50 (2 years ago)
Author:
adrian
Message:

Added 'New in Django development version' note to docs/settings.txt changes from [5072], and fixed alphabetizing

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/settings.txt

    r5072 r5093  
    563563any code that uses ``LANGUAGES`` at runtime. 
    564564 
     565LOGIN_REDIRECT_URL 
     566------------------ 
     567 
     568**New in Django development version** 
     569 
     570Default: ``'/accounts/profile/'`` 
     571 
     572The URL where requests are redirected after login when the 
     573``contrib.auth.login`` view gets no ``next`` parameter. 
     574 
     575This is used by the `@login_required`_ decorator, for example. 
     576 
    565577LOGIN_URL 
    566578--------- 
    567579 
     580**New in Django development version** 
     581 
    568582Default: ``'/accounts/login/'`` 
    569583 
     
    573587LOGOUT_URL 
    574588---------- 
     589 
     590**New in Django development version** 
    575591 
    576592Default: ``'/accounts/logout/'`` 
     
    635651See `allowed date format strings`_. See also DATE_FORMAT, DATETIME_FORMAT, 
    636652TIME_FORMAT and YEAR_MONTH_FORMAT. 
    637  
    638 LOGIN_REDIRECT_URL 
    639 ------------------ 
    640  
    641 Default: ``'/accounts/profile/'`` 
    642  
    643 The URL where requests are redirected after login when the 
    644 ``contrib.auth.login`` view gets no ``next`` parameter. 
    645  
    646 This is used by the `@login_required`_ decorator, for example. 
    647653 
    648654PREPEND_WWW