-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathsaxerror.xml
More file actions
26 lines (26 loc) · 860 Bytes
/
saxerror.xml
File metadata and controls
26 lines (26 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>SAXError Test Feed</title>
<link>http://example.com/</link>
<description>A feed with a SAX error in one item.</description>
<item>
<title>Good Item</title>
<link>http://example.com/good</link>
<description>This item is fine.</description>
<guid>http://example.com/good</guid>
</item>
<item>
<title>Bad Item</title>
<link>http://example.com/bad?foo=1&bar=2</link>
<description>This item has an unescaped ampersand in the link.</description>
<guid>http://example.com/bad</guid>
</item>
<item>
<title>Item After Error</title>
<link>http://example.com/after</link>
<description>This item comes after the SAX error.</description>
<guid>http://example.com/after</guid>
</item>
</channel>
</rss>