Mercurial > moin > 1.9
changeset 5357:a7477cf9c536
farmconfig: remove wrong comment, add sample http/https entry
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Tue, 08 Dec 2009 12:14:59 +0100 |
parents | f992fed6e94a |
children | a5bd554abd87 |
files | wiki/config/wikifarm/farmconfig.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/wiki/config/wikifarm/farmconfig.py Sun Dec 06 00:29:33 2009 +0100 +++ b/wiki/config/wikifarm/farmconfig.py Tue Dec 08 12:14:59 2009 +0100 @@ -34,7 +34,6 @@ # * 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!!! # * the right part is the url re, use r"..." for it -# * the right part does NOT include "http://" nor "https://" at the beginning # * 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. # * in the right part, "^" means "beginning" and "$" means "end" @@ -47,7 +46,7 @@ # for multiple wikis, do something like this: #("wiki1", r"^http://wiki1\.example\.org/.*$"), - #("wiki2", r"^http://wiki2\.example\.org/.*$"), + #("wiki2", r"^https?://wiki2\.example\.org/.*$"), ]