Arsse/tests/docroot/Feed/Scraping/Feed.php
J. King aaa4d1e988 Basic support for PicoFeed content scraping
- At the moment this is a completely manual setting: feed deduplication makes the setting very hard to handle for multiple users
- Improves #60
2017-07-17 14:56:50 -04:00

18 lines
No EOL
536 B
PHP

<?php return [
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Test feed</title>
<link>http://example.com/</link>
<description>Example newsfeed title</description>
<item>
<guid>http://localhost:8000/Feed/Scraping/Document</guid>
<title>Example article</title>
<description>Partial content</description>
</item>
</channel>
</rss>
MESSAGE_BODY
];