You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2006/12/04 15:01:41 UTC

svn commit: r482175 - /incubator/roller/trunk/web/WEB-INF/classes/roller.properties

Author: snoopdave
Date: Mon Dec  4 06:01:40 2006
New Revision: 482175

URL: http://svn.apache.org/viewvc?view=rev&rev=482175
Log:
Added username.allowedChars and comments for a couple of properties

Modified:
    incubator/roller/trunk/web/WEB-INF/classes/roller.properties

Modified: incubator/roller/trunk/web/WEB-INF/classes/roller.properties
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/web/WEB-INF/classes/roller.properties?view=diff&rev=482175&r1=482174&r2=482175
==============================================================================
--- incubator/roller/trunk/web/WEB-INF/classes/roller.properties (original)
+++ incubator/roller/trunk/web/WEB-INF/classes/roller.properties Mon Dec  4 06:01:40 2006
@@ -503,19 +503,6 @@
 users.sso.autoProvision.enabled=false
 users.sso.autoProvision.className=org.apache.roller.ui.core.security.BasicUserAutoProvision
 
-#----------------------------------
-# misc settings
-
-rememberme.enabled=true
-debug.memory.enabled=false
-compression.gzipResponse.enabled=true
-
-# specifies the max number of tags allowed in URL ( /feed?tags=foo+bar+baz )
-tags.queries.maxIntersectionSize=3
-
-# editor theme to be used (corresponds to directory name under /theme)
-editor.theme=tan
-
 #---------------------------------
 # settings for various plugins
 
@@ -531,6 +518,24 @@
 # Set to true to allow only default topic tag site (and avoid costly bookmark queries)
 plugins.topictag.ignoreBookmarks=true
 
+#----------------------------------
+# misc settings
+
+# Some folks consider remember-me type functionality to be a security
+rememberme.enabled=true
+
+# You might want to disable GZIP if your app server already supports it
+compression.gzipResponse.enabled=true
+
+# specifies the max number of tags allowed in URL ( /feed?tags=foo+bar+baz )
+tags.queries.maxIntersectionSize=3
+
+# Characters to be allowed in user names (change at your own risk)
+username.allowedChars=A-Za-z0-9
+
+# editor theme to be used (corresponds to directory name under /theme)
+editor.theme=tan
+
 #---------------------------------
 # Experimental settings
 
@@ -552,3 +557,4 @@
 aggregator.cache.enabled=
 aggregator.cache.timeout=14400
 
+debug.memory.enabled=false