summaryrefslogtreecommitdiff
path: root/www/moinmoin
diff options
context:
space:
mode:
Diffstat (limited to 'www/moinmoin')
-rw-r--r--www/moinmoin/Makefile1
-rw-r--r--www/moinmoin/files/patch-MoinMoin::parser::wiki.py11
2 files changed, 12 insertions, 0 deletions
diff --git a/www/moinmoin/Makefile b/www/moinmoin/Makefile
index ffb665762442..48a8ad67661b 100644
--- a/www/moinmoin/Makefile
+++ b/www/moinmoin/Makefile
@@ -7,6 +7,7 @@
PORTNAME= moinmoin
PORTVERSION= 0.10
+PORTREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= moin
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)