Date: Wed, 9 Jan 2002 04:48:50 -0800 (PST) From: Hye-Shik Chang <perky@fallin.lv> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/33726: Update port: www/moinmoin Message-ID: <200201091248.g09Cmop68510@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 33726 >Category: ports >Synopsis: Update port: www/moinmoin >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jan 09 04:50:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Hye-Shik Chang >Release: FreeBSD 4.4 >Organization: Yonsei University >Environment: FreeBSD akaraka.yonsei.ac.kr 4.5-PRERELEASE FreeBSD 4.5-PRERELEASE #0: Mon Dec 24 06:07:50 KST 2001 root@akaraka.yonsei.ac.kr:/usr/src/sys/compile/RYOKO i386 >Description: - Fix for Python 2.2 re module (temporary patching until next release.) (Taken from moinmoin project cvs repository) >How-To-Repeat: >Fix: diff -ruN moinmoin.orig/Makefile moinmoin/Makefile --- moinmoin.orig/Makefile Sun Nov 25 03:57:27 2001 +++ moinmoin/Makefile Wed Jan 9 21:29:12 2002 @@ -7,6 +7,7 @@ PORTNAME= moinmoin PORTVERSION= 0.10 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= moin diff -ruN moinmoin.orig/files/patch-MoinMoin::parser::wiki.py moinmoin/files/patch-MoinMoin::parser::wiki.py --- moinmoin.orig/files/patch-MoinMoin::parser::wiki.py Thu Jan 1 09:00:00 1970 +++ moinmoin/files/patch-MoinMoin::parser::wiki.py Wed Jan 9 21:27:10 2002 @@ -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) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200201091248.g09Cmop68510>