-
Notifications
You must be signed in to change notification settings - Fork 1
/
testfile.rss
58 lines (41 loc) · 1.31 KB
/
testfile.rss
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>test RSS file</title>
<description>Test description.</description>
# all valid:
<link>testfile.html</link>
<atom:link href="testfile.html" rel="self" type="application/rss+xml" />
<image>
<url>testfile.html</url>
<title>test RSS file</title>
<link>testfile.html</link>
</image>
<enclosure url="testfile.html" length="5000" type="audio/mpeg" />
<picture url="testfile.html" />
<homepage xlink:type="simple" xlink:href="testfile.html">any name here</homepage>
<item>
<title>misc1</title>
<description>misc1</description>
<link>testfile.html</link>
<guid>testfile.html</guid>
</item>
# all invalid:
<link>nosuchfile.html</link>
<atom:link href="nosuchfile.html" rel="self" type="application/rss+xml" />
<image>
<url>nosuchfile.html</url>
<title>test RSS file</title>
<link>nosuchfile.html</link>
</image>
<enclosure url="nosuchfile.html" length="5000" type="audio/mpeg" />
<picture url="nosuchfile.html" />
<homepage xlink:type="simple" xlink:href="nosuchfile.html">any name here</homepage>
<item>
<title>misc1</title>
<description>misc1</description>
<link>nosuchfile.html</link>
<guid>nosuchfile.html</guid>
</item>
</channel>
</rss>