Bug 147706 - [patch][maintainer] www/rssdler: make xmlUnEscape and percentUnQuote case-insensitive
Summary: [patch][maintainer] www/rssdler: make xmlUnEscape and percentUnQuote case-ins...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-06-09 00:50 UTC by swell.k
Modified: 2010-08-22 02:20 UTC (History)
0 users

See Also:


Attachments
a.diff (2.79 KB, patch)
2010-06-09 00:50 UTC, swell.k
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description swell.k 2010-06-09 00:50:01 UTC
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'
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2010-06-09 00:50:12 UTC
Class Changed
From-To: sw-bug->maintainer-update

Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2010-08-22 02:12:30 UTC
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"
Comment 3 Li-Wen Hsu freebsd_committer freebsd_triage 2010-08-22 02:12:58 UTC
State Changed
From-To: open->closed

Committed, with minor changes.  The change changes package should bump 
PORTREVISION.  Thanks!