mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
58 lines
2.3 KiB
PHP
58 lines
2.3 KiB
PHP
<?php return [
|
|
'mime' => "application/atom+xml",
|
|
'content' => <<<MESSAGE_BODY
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title>Example feed title</title>
|
|
<id>urn:uuid:0fd8f6d8-43df-11e7-8511-9b59a0324eb8</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/"/>
|
|
|
|
<entry>
|
|
<id>urn:uuid:df329114-43df-11e7-9f23-a938604d62f8</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/1"/>
|
|
<title>Article title 1</title>
|
|
<content>Article content 1</content>
|
|
<published>2000-01-01T00:00:00Z</published>
|
|
<updated>2000-01-01T00:00:00Z</updated>
|
|
</entry>
|
|
<entry>
|
|
<id>urn:uuid:24382fa8-43e0-11e7-bd9c-559df0ea4b9b</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/2"/>
|
|
<title>Article title 2</title>
|
|
<content>Article content 2</content>
|
|
<published>2000-01-02T00:00:00Z</published>
|
|
<updated>2000-01-02T00:00:00Z</updated>
|
|
</entry>
|
|
<entry>
|
|
<id>urn:uuid:03b9f558-43e1-11e7-87c5-ebaab4fd4cd1</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/3"/>
|
|
<title>Article title 3 (updated)</title>
|
|
<content>Article content 3</content>
|
|
<published>2000-01-03T00:00:00Z</published>
|
|
<updated>2000-01-03T00:00:00Z</updated>
|
|
</entry>
|
|
<entry>
|
|
<link rel="alternate" type="text/html" href="http://example.com/4"/>
|
|
<title>Article title 4</title>
|
|
<content>Article content 4 with updates</content>
|
|
<published>2000-01-04T00:00:00Z</published>
|
|
<updated>2000-01-04T00:00:00Z</updated>
|
|
</entry>
|
|
<entry>
|
|
<id>urn:uuid:6d4c7964-43e1-11e7-92bd-4fed65d89793</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/5"/>
|
|
<title>Article title 5</title>
|
|
<content>Article content 5</content>
|
|
<published>2000-01-05T00:00:00Z</published>
|
|
<updated>2000-01-05T00:00:00Z</updated>
|
|
</entry>
|
|
<entry>
|
|
<id>urn:uuid:b0b9698c-43e6-11e7-85b4-53a6b351844b</id>
|
|
<link rel="alternate" type="text/html" href="http://example.com/6"/>
|
|
<title>Article title 6</title>
|
|
<content>Article content 6</content>
|
|
<published>2000-01-06T00:00:00Z</published>
|
|
<updated>2000-01-06T00:00:00Z</updated>
|
|
</entry>
|
|
</feed>
|
|
MESSAGE_BODY
|
|
];
|