File: atom10_2.xml

package info (click to toggle)
newsboat 2.38-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,540 kB
  • sloc: cpp: 90,216; xml: 606; sh: 429; makefile: 369; ruby: 258; python: 239; ansic: 211; php: 63; awk: 59; perl: 38
file content (67 lines) | stat: -rw-r--r-- 2,309 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">

  <title>Media test feed</title>
  <link rel="alternate" href="http://example.com/"/>
  <updated>2008-12-30T18:26:15Z</updated>
  <author>
    <name>John Doe</name>
  </author>
  <id>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id>

  <entry>
    <title>using regular content</title>
    <link href="http://example.com/1.html"/>
    <id>tag:example.com,2008-12-30:/1</id>
    <content type="html">regular html content</content>
    <author>
      <name>A Person</name>
      <uri>http://example.com/</uri>
    </author>
  </entry>

  <entry>
    <title>using media:description</title>
    <link href="http://example.com/2.html"/>
    <id>tag:example.com,2008-12-30:/2</id>
    <media:description>media plaintext content</media:description>
  </entry>

  <entry>
    <id>tag:example.com,2008-12-30:/3</id>
    <media:description type="html">media html content</media:description>
    <media:title>using multiple media tags</media:title>
    <media:player url="http://example.com/player.html"/>
  </entry>

  <entry>
    <id>tag:example.com,2008-12-30:/4</id>
    <media:group>
      <media:content>
        <media:description type="html">nested media html content</media:description>
        <media:title>using multiple media tags nested in group/content</media:title>
        <media:player url="http://example.com/player.html"/>
      </media:content>
    </media:group>
  </entry>

  <entry>
    <id>tag:example.com,2008-12-30:/5</id>
    <title>regular title</title>
    <content type="html">regular content</content>
    <link rel="alternate" type="text/html" href="http://example.com/regular-link" />
    <media:description type="plain">media:description content</media:description>
    <media:title>using multiple media tags</media:title>
    <media:player url="http://example.com/player.html"/>
  </entry>

  <entry>
    <title>using media:content</title>
    <link href="http://example.com/4.html"/>
    <id>tag:example.com,2008-12-30:/4</id>
    <content type="html">regular content</content>
    <media:content url="http://example.com/media-test.png" type="image/png" />
    <media:content url="http://example.com/movie.mov" type="video/quicktime" />
  </entry>

</feed>