Changes between Version 9 and Version 10 of AccountManagerPlugin/AuthStores


Ignore:
Timestamp:
Dec 12, 2011, 11:02:09 PM (12 years ago)
Author:
Steffen Hoffmann
Comment:

explicitely mention new options to avoid name-clash in acct_mgr-0.4 and later

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin/AuthStores

    v9 v10  
    2727; the webserver will need write permissions to this file
    2828; and its parent folder
    29 password_file = /var/trac/trac.htdigest
     29;password_file = /var/trac/trac.htdigest   # old style (acct_mgr < 0.4)
     30htdigest_password_file = /var/trac/trac.htdigest   # new style (acct_mgr >= 0.4)
    3031
    3132; the name of the authentication “realm”
     
    3334htdigest_realm = TracRealm
    3435}}}
    35 '''Note:''' `password_format` option is ''strongly depreciated'' now and will be withdrawn soon, since versions prior to Trac 0.10 are no longer elevant.
     36'''Note:''' `password_format` option is ''strongly depreciated'' now and will be withdrawn soon, since versions prior to Trac 0.10 are no longer relevant.
     37
     38Recent changes:
     39 * new 'htdigest_password_file' option replaced 'password_file' in [10396] for `acct_mgr-0.4`
    3640
    3741== !HtPasswdStore ==
     
    6064; the webserver will need write permissions to this file
    6165; and its parent folder
    62 password_file = /var/trac/trac.htpasswd
     66;password_file = /var/trac/trac.htpasswd   # old style (acct_mgr < 0.4)
     67htpasswd_file = /var/trac/trac.htpasswd   # new style (acct_mgr >= 0.4)
     68
    6369}}}
    64 '''Note:''' `password_format` option is ''strongly depreciated'' now and will be withdrawn soon, since versions prior to Trac 0.10 are no longer elevant.
     70'''Note:''' `password_format` option is ''strongly depreciated'' now and will be withdrawn soon, since versions prior to Trac 0.10 are no longer relevant.
    6571
    6672Recent changes:
    6773 * 'htpasswd_hash_type' for hash type selection available since [9274]
    6874 * integration of popular sha512 hash type pending (see #8791, patch available)
     75 * new 'htpasswd_file' option replaced 'password_file' in [10396] for `acct_mgr-0.4`
    6976
    7077== !HttpAuthStore ==