Changes between Version 61 and Version 62 of AccountManagerPlugin


Ignore:
Timestamp:
Nov 26, 2008, 4:05:16 PM (15 years ago)
Author:
Hendrik Maryns
Comment:

add ‘or later’ where appropriate, invert order, since people will probably have later by now

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v61 v62  
    112112[account-manager]
    113113; configure the plugin to store passwords in the htdigest format:
     114password_store = HtDigestStore
     115; with Trac < 0.10 use this instead:
    114116password_format = htdigest
    115 ; with Trac 0.10 use this instead:
    116 password_store = HtDigestStore
    117117
    118118; the file where user accounts are stored
     
    144144[account-manager]
    145145; configure the plugin to store passwords in the htpasswd format:
     146password_store = HtPasswdStore
     147; with Trac < 0.10 use this instead:
    146148password_format = htpasswd
    147 ; with Trac 0.10 use this instead:
    148 password_store = HtPasswdStore
    149149
    150150; the file where user accounts are stored
     
    157157 '''Package''':: acct_mgr.http
    158158
    159 '''Note:''' This component requires Trac 0.10
     159'''Note:''' This component requires Trac 0.10 or later
    160160
    161161Used to delegate authentication to the web server.  This allows access to be restricted based on LDAP, a password file, etc, or some combination of them.
     
    211211 '''Package''':: acct_mgr.admin
    212212
    213 '''Note:''' This component requires Trac 0.10
     213'''Note:''' This component requires Trac 0.10 or later
    214214
    215215This component adds a new page to the trac:WebAdmin section for managing user accounts.  It requires the `TRAC_ADMIN` permission to access.
     
    243243 '''Package''':: acct_mgr.web_ui
    244244
    245 '''Warning:''' this module is not supported using the [trac:TracStandalone tracd] stand-alone server on Trac 0.9.  It either needs Trac 0.10, or an external webserver such as Apache.
     245'''Warning:''' this module is not supported using the [trac:TracStandalone tracd] stand-alone server on Trac 0.9.  It either needs Trac 0.10 or later, or an external webserver such as Apache.
    246246
    247247Allows users to login via a HTML form instead of using HTTP authentication.