Package: python-moinmoin
Version: 1.5.3-1.1
Severity: normal

In README.Debian step 4 asks for a change to the list of wikis in
farmconfig.py, but the URI matching is case sensitive, resulting in an
error when loading the page:

ConfigurationError

Could not find a match for url: "example.com/MyWiki/".

Check your URL regular expressions in the "wikis" list in
"farmconfig.py". 

The fix is to match the case of the URI against the case in the wikis
list.  A patch is attached.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.8
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages python-moinmoin depends on:
ii  moinmoin-common               1.5.3-1.1  Python clone of WikiWiki - common 
ii  python                        2.4.3-11   An interactive high-level object-o
ii  python-support                0.5.4      automated rebuilding support for p

Versions of packages python-moinmoin recommends:
ii  exim [mail-transport-agent]   3.36-18.1  An obsolete MTA (Mail Transport Ag

-- no debconf information
--- README.Debian.orig  2006-10-25 13:38:04.000000000 +1000
+++ README.Debian       2006-10-25 13:44:11.000000000 +1000
@@ -35,7 +35,7 @@
     Edit /etc/moin/farmconfig.py to include mywiki like this:
 
        wikis = [
-           ("mywiki",    r"^your.site/mywiki/.*$"),
+           ("mywiki",    r"^your.site/MyWiki/.*$"),
        ]
 
     Also, in /etc/moin/farmconfig.py comment out data_dir and

Reply via email to