head	1.2;
access;
symbols
	RELEASE_9_0_0:1.1
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1;
locks; strict;
comment	@# @;


1.2
date	2012.01.25.19.15.43;	author rm;	state dead;
branches;
next	1.1;

1.1
date	2010.08.22.01.12.18;	author lwhsu;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove expired port: Runtime is mostly broken, abandoned upstream. Use www/py-flexget instead.

PR:		160626
Submitted by:	h h <aakuusta at gmail dot com>
Approved by:	maintainer (timeout, 3 months+)
@
text
@Index: rssdler.py
===================================================================
--- rssdler.py	(revision 169)
+++ rssdler.py	(working copy)
@@@@ -363,9 +363,9 @@@@ def percentUnQuote( sStr, p=percentunQuoteDict, re
       replaced in order of the sequence"""
     for search in p:
         if search in reserved: continue
-        sStr = sStr.replace( search, p[search] )
+        sStr = re.sub('(?i)' + re.escape(search), p[search], sStr)
     for search in reserved:
-        sStr = sStr.replace( search, p[search])
+        sStr = re.sub('(?i)' + re.escape(search), p[search], sStr)
     return sStr
 
 def percentQuote(sStr, urlPart=(2,), pd=percentQuoteDict):
@


1.1
log
@- Make xmlUnEscape and percentUnQuote case-insensitive

PR:		ports/147706
Submitted by:	Anonymous <swell.k AT gmail.com> (maintainer)
@
text
@@

