diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2002-01-10 15:22:14 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2002-01-10 15:22:14 +0000 |
commit | aa1d810e2f9aed9c0d14646d9317933313c18514 (patch) | |
tree | e1c204f6a562f74272f3173cec713c85523b1cf4 /www/moinmoin | |
parent | a1ec5ec39ccb6a623a98f64dbfdd763f0e582026 (diff) | |
download | ports-aa1d810e2f9aed9c0d14646d9317933313c18514.tar.gz ports-aa1d810e2f9aed9c0d14646d9317933313c18514.zip |
Fix for Python 2.2 re module
PR: 33726
Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=52866
Diffstat (limited to 'www/moinmoin')
-rw-r--r-- | www/moinmoin/Makefile | 1 | ||||
-rw-r--r-- | www/moinmoin/files/patch-MoinMoin::parser::wiki.py | 11 |
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) |