You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
317 B
20 lines
317 B
AUTHZ_FILE_NAME = "authz" |
|
HTPWD_FILE_NAME = ".htpasswd" |
|
|
|
ADMINS = "administrators" |
|
USERS = "users" |
|
RESTRICTED = "restricted" |
|
ALUMNI = "alumni" |
|
|
|
NO_ACL = "" |
|
READ_ACL = "r" |
|
WRITE_ACL = "rw" |
|
|
|
GROUP_DEFAULTS = { |
|
ADMINS: WRITE_ACL, |
|
USERS: READ_ACL, |
|
RESTRICTED: NO_ACL, |
|
ALUMNI: NO_ACL, |
|
} |
|
|
|
SVN_SUFFIX = ":/"
|
|
|