1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
<?xml version='1.0' encoding='iso-8859-1'?>
<!--
SkipUnless: __import__('codecs').lookup('windows-1252')
Header: Content-type: text/xml; charset=windows-1252
Description: text/xml + charset overrides encoding (this one is harder than the others)
Expect: not bozo and entries[0]['description'] == '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>
|