From: Matthijs Kooijman Date: Sun, 8 Jun 2008 15:31:14 +0000 (+0200) Subject: * Update location of static files to /wipi/static instead of /wipistatic. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fwipi.git;a=commitdiff_plain;h=cc733b1eba60b8c07e42d573c36c14e884c31049 * Update location of static files to /wipi/static instead of /wipistatic. * Move default acl to acl_before, so it always works. --- diff --git a/conf/farmconfig.py b/conf/farmconfig.py index 36ad494..f8c657d 100644 --- a/conf/farmconfig.py +++ b/conf/farmconfig.py @@ -104,7 +104,7 @@ class FarmConfig(DefaultConfig): # For Twisted and standalone server, the default will automatically work. # For others, you should make a matching server config (e.g. an Apache # Alias definition pointing to the directory with the static stuff). - url_prefix_static = '/wipistatic' + url_prefix_static = '/wipi/static' # Security ---------------------------------------------------------- @@ -126,7 +126,8 @@ class FarmConfig(DefaultConfig): acl_hierarchic = True # Give users all rights, but don't give any rights to anonymous users - acl_rights_default = u"Known:read,write,delete,revert,admin" + acl_rights_default = u"" + acl_rights_before = u"Known:read,write,delete,revert,admin" # Mail --------------------------------------------------------------