aboutsummaryrefslogtreecommitdiffstats
path: root/www/moinmoin/files
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2002-01-10 23:22:14 +0800
committerkevlo <kevlo@FreeBSD.org>2002-01-10 23:22:14 +0800
commit5fd3e4a308f026c43a93a632c82763df0352722e (patch)
treedc21fd6e47d9a21728bd1d4016e49aa2496046a2 /www/moinmoin/files
parentaa67e48f47bc7669fddf0e08c4dd257c4e76f2bb (diff)
downloadfreebsd-ports-gnome-5fd3e4a308f026c43a93a632c82763df0352722e.tar.gz
freebsd-ports-gnome-5fd3e4a308f026c43a93a632c82763df0352722e.tar.zst
freebsd-ports-gnome-5fd3e4a308f026c43a93a632c82763df0352722e.zip
Fix for Python 2.2 re module
PR: 33726 Submitted by: MAINTAINER
Diffstat (limited to 'www/moinmoin/files')
-rw-r--r--www/moinmoin/files/patch-MoinMoin::parser::wiki.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/moinmoin/files/patch-MoinMoin::parser::wiki.py b/www/moinmoin/files/patch-MoinMoin::parser::wiki.py
new file mode 100644
index 000000000000..91bc343ba18f
--- /dev/null
+++ b/www/moinmoin/files/patch-MoinMoin::parser::wiki.py
@@ -0,0 +1,11 @@
+--- MoinMoin/parser/wiki.py.orig Wed Jan 9 21:20:17 2002
++++ MoinMoin/parser/wiki.py Wed Jan 9 21:22:55 2002
+@@ -388,7 +388,7 @@
+ def replace(self, match):
+ #hit = filter(lambda g: g[1], match.groupdict().items())
+ for type, hit in match.groupdict().items():
+- if hit is not None:
++ if hit is not None and type != 'hmarker':
+ ##print "###", cgi.escape(`type`), cgi.escape(`hit`), "###"
+ if self.in_pre and type not in ['pre', 'ent']:
+ return self.highlight_text(hit)