Changes between Version 25 and Version 26 of AccountManagerPlugin


Ignore:
Timestamp:
Oct 17, 2006, 2:45:45 AM (17 years ago)
Author:
Matt Good
Comment:

add component-enabling to more trac.ini examples since people are overlooking it

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v25 v26  
    8686
    8787{{{
     88[components]
     89; be sure to enable the component
     90acct_mgr.htfile.HtDigestStore = enabled
     91
    8892[account-manager]
    8993; configure the plugin to store passwords in the htdigest format:
     
    111115{{{
    112116[components]
    113 acct_mgr.api.AccountManager = enabled
     117; be sure to enable the component
     118acct_mgr.htfile.HtDigestStore = enabled
    114119
    115120[account-manager]
     
    132137This component adds a new page to the trac:WebAdmin section for managing user accounts.  It requires the `TRAC_ADMIN` permission to access.
    133138
     139{{{
     140[components]
     141acct_mgr.htfile.AccountManagerAdminPage = enabled
     142}}}
     143
    134144[[Image(account-manager-admin.png)]]
    135145
     
    138148
    139149Allows users to change their password, or delete their account.  When logged in it will appear as a link "My Account" in the same row as the "Login" link.
     150
     151{{{
     152[components]
     153acct_mgr.htfile.AccountModule = enabled
     154}}}
    140155
    141156[[Image(my-account.png)]]
     
    181196Enables users to register a new account.  It adds a "Register" link on the same menu bar as the "Login" link.
    182197
     198{{{
     199[components]
     200acct_mgr.htfile.RegistrationModule = enabled
     201}}}
     202
    183203[[Image(register.png)]]
    184204