See Issue#55 on googlecode. Unlike S.replace() and urllib.unquote() this version can handle mixed case, e.g. %Ab or %aB. Reason: About 2 months passed with this trivial issue unresolved. I guess upstream maintainer is inactive. How-To-Repeat: before >>> xmlUnEscape(percentUnQuote('%20%5bfoo & bar%5d%20')) u' %5bfoo & bar%5d ' >>> unQuoteReQuote('%20%5bfoo & bar%5d%20') u'%20%255bfoo%20%26AMP; bar%5d ' after >>> xmlUnEscape(percentUnQuote('%20%5bfoo & bar%5d%20')) u' [foo & bar] ' >>> unQuoteReQuote('%20%5bfoo & bar%5d%20') u'%20%5Bfoo%20%26%20bar%5D%20'
Class Changed From-To: sw-bug->maintainer-update Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool)
lwhsu 2010-08-22 01:12:18 UTC FreeBSD ports repository Modified files: www/py-rssdler Makefile Added files: www/py-rssdler/files patch-percentUnQuote patch-xmlUnEscape Log: - Make xmlUnEscape and percentUnQuote case-insensitive PR: ports/147706 Submitted by: Anonymous <swell.k AT gmail.com> (maintainer) Revision Changes Path 1.2 +1 -1 ports/www/py-rssdler/Makefile 1.1 +16 -0 ports/www/py-rssdler/files/patch-percentUnQuote (new) 1.1 +32 -0 ports/www/py-rssdler/files/patch-xmlUnEscape (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, with minor changes. The change changes package should bump PORTREVISION. Thanks!