You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
885 B
21 lines
885 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ title }}</title>
|
|
<link>{{ log_path }}</link>
|
|
<description>Collective log writing using XMPP chat groups and LogBot.</description>
|
|
<lastBuildDate>{{ date }}</lastBuildDate>
|
|
<atom:link href="{{ log_path }}" rel="self" type="application/rss+xml" />
|
|
{% for x, post in db["messages"].items() %}
|
|
<item>
|
|
<title>{{ title }}</title>
|
|
<link>{{ log_path }}#{{ x }}</link>
|
|
<guid>{{ log_path }}#{{ x }}</guid>
|
|
<description>{{ post.post }}</description>
|
|
{% if 'media' in post %}<enclosure url="{{ post.media.url }}" length="{{ post.media.size }}" type="{{ post.media.type }}" />{% endif %}
|
|
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LogBot</dc:creator>
|
|
<pubDate>{{ post.date }}</pubDate>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|