2018-10-26 18:58:04 +00:00
|
|
|
<?php
|
2017-05-27 22:15:52 +00:00
|
|
|
$item = '
|
|
|
|
<item>
|
|
|
|
<description>'.str_repeat("0", 1024).'</description>
|
2017-08-29 14:50:31 +00:00
|
|
|
</item>';
|
2017-05-27 22:15:52 +00:00
|
|
|
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>
|
2021-01-08 21:46:21 +00:00
|
|
|
<link>http://localhost:8000/</link>
|
2017-05-27 22:15:52 +00:00
|
|
|
<description>Example newsfeed title</description>
|
|
|
|
$item
|
|
|
|
</channel>
|
|
|
|
</rss>
|
|
|
|
MESSAGE_BODY
|
2017-08-29 14:50:31 +00:00
|
|
|
];
|