aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/example.rss
blob: b3cef4abc59c58b5038e47a372f6fbca9164f1f3 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
  <title>My Totally Awesome Piccast</title>
  <link>http://example.com/</link>
  <description>Photos by shade of color... golly!</description>
  <category>Art</category>
  <media:content 
      url="http://example.com/icon.png"
      fileSize="123456"
      type="image/png"
      medium="image"
      height="256"
      width="256"
  />
  
  <item>
    <title>Green Images</title>
    <description>A whole bunch of images... all are green!</description>
    <link>http://example.com/2011/04/green-images/</link>
    <pubDate></pubDate>
    <media:group>
      <media:content
          isDefaul="true"
          url="http://example.com/static/abc123.png"
          filesize="123456"
          type="image/png"
          medium="image"
          height="1024"
          width="768" >
        <media:thumbnail
            url="http://example.com/static/abc123_thumb.png"
            height="256"
            width="256" />
      </media:content>
      <!-- an alternative media:content could go here as a mirror -->
      <link>http://example.com/2011/04/green-images/#img2</link>
      <media:title>A big green apple</media:title>
      <media:description>It's a granny smith from the UK</media:description>
      <media:rating scheme="urn:simple">nonadult</media:rating>
      <media:rating scheme="urn:nsfw">sfw</media:rating>
      <media:hash>5b3674eaba15b3674eaba1bb</media:hash>
      <media:credit role="photographer">Some Person</media:credit>
    </media:group>
    <media:group>
      <media:content
          isDefaul="true"
          url="http://example.com/static/abc123.png"
          filesize="123456"
          type="image/png"
          medium="image"
          height="1024"
          width="768" >
        <media:thumbnail
            url="http://example.com/static/abc123_thumb.png"
            height="256"
            width="256" />
      </media:content>
      <!-- an alternative media:content could go here as a mirror -->
      <link>http://example.com/2011/04/green-images/#img2</link>
      <media:title>A big green apple</media:title>
      <media:description>It's a granny smith from the UK</media:description>
      <media:rating scheme="urn:simple">nonadult</media:rating>
      <media:rating scheme="urn:nsfw">sfw</media:rating>
      <media:hash>5b3674eaba15b3674eaba1bb</media:hash>
      <media:credit role="photographer">Some Person</media:credit>
    </media:group>
  </item>

  <item>
    <title>Red Images</title>
    <description>A whole bunch of images... all are red!</description>
    <link>http://example.com/2011/04/red-images/</link>
    <pubDate></pubDate>
    <media:group>
      <media:content
          isDefaul="true"
          url="http://example.com/static/abc123.png"
          filesize="123456"
          type="image/png"
          medium="image"
          height="1024"
          width="768" >
        <media:thumbnail
            url="http://example.com/static/abc123_thumb.png"
            height="256"
            width="256" />
      </media:content>
      <!-- an alternative media:content could go here as a mirror -->
      <link>http://example.com/2011/03/red-images/#img2</link>
      <media:title>A big red apple</media:title>
      <media:description>It's not a granny smith from the UK</media:description>
      <media:rating scheme="urn:simple">nonadult</media:rating>
      <media:rating scheme="urn:nsfw">sfw</media:rating>
      <media:hash>5b3674eaba15b3674eaba1bb</media:hash>
      <media:credit role="photographer">Some Person</media:credit>
    </media:group>
  </item>

</channel>
</rss>