mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
0e82c5f573
Adjusted code for custom RSS feed parsing now that feedparser does the parsing for us all we do is pull the data from the returned entries.
17 lines
468 B
XML
17 lines
468 B
XML
<!--
|
|
SkipUnless: __import__('codecs').lookup('windows-1252')
|
|
Header: Content-type: text/xml; charset=windows-1252
|
|
Description: text/xml + explicit charset (this one is harder than the others)
|
|
Expect: not bozo and entries[0]['description'] == u'This is a \xa3\u201ctest.\u201d'
|
|
-->
|
|
|
|
<rss version="2.0">
|
|
<channel>
|
|
<item>
|
|
<title>Foo</title>
|
|
<link>http://purl.org/rss/2.0/?item</link>
|
|
<description>This is a £“test.”</description>
|
|
</item>
|
|
</channel>
|
|
</rss>
|