Changeset 10396
- Timestamp:
- 07/07/11 23:10:43 (10 months ago)
- Files:
-
- accountmanagerplugin/trunk/acct_mgr/htfile.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
accountmanagerplugin/trunk/acct_mgr/htfile.py
r10332 r10396 184 184 [account-manager] 185 185 password_store = HtPasswdStore 186 password_file = /path/to/trac.htpasswd186 htpasswd_file = /path/to/trac.htpasswd 187 187 htpasswd_hash_type = crypt|md5|sha <- None or one of these options 188 188 }}} … … 194 194 implements(IPasswordStore) 195 195 196 filename = EnvRelativePathOption('account-manager', 'htpasswd_file', '', 197 doc = N_("""Path relative to Trac environment or full host machine 198 path to password file""")) 196 199 hash_type = Option('account-manager', 'htpasswd_hash_type', 'crypt', 197 200 doc = N_("Default hash type of new/updated passwords")) … … 225 228 [account-manager] 226 229 password_store = HtDigestStore 227 password_file = /path/to/trac.htdigest230 htdigest_file = /path/to/trac.htdigest 228 231 htdigest_realm = TracDigestRealm 229 232 }}} … … 232 235 implements(IPasswordStore) 233 236 237 filename = EnvRelativePathOption('account-manager', 'htdigest_file', '', 238 doc = N_("""Path relative to Trac environment or full host machine 239 path to password file""")) 234 240 realm = Option('account-manager', 'htdigest_realm', '', 235 241 doc = N_("Realm to select relevant htdigest file entries"))

