changeset 5942:5142c2bfd655

explicitly tell not to use a dot in a farm wiki config module name
author Thomas Waldmann <tw AT waldmann-edv DOT de>
date Mon, 04 Feb 2013 13:18:11 +0100
parents db8fd396ec54
children 51ea4cb7b390
files wiki/config/wikifarm/farmconfig.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/wiki/config/wikifarm/farmconfig.py	Tue Jan 29 19:46:03 2013 +0100
+++ b/wiki/config/wikifarm/farmconfig.py	Mon Feb 04 13:18:11 2013 +0100
@@ -32,7 +32,8 @@
 # Important:
 #  * the left part is the wikiname enclosed in double quotes
 #  * the left part must be a valid python module name, so better use only
-#    lower letters "a-z" and "_". Do not use blanks or "-" there!!!
+#    lower letters "a-z" and "_". Do not use blanks, dots or minus there!
+#    E.g. use "foo_bar_org", NOT: "foo-bar.org"!
 #  * the right part is the url re, use r"..." for it
 #  * in the right part ".*" means "everything". Just "*" does not work like
 #    for filenames on the shell / commandline, you must use ".*" as it is a RE.