2021-03-07 11:36:03 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<rss version="2.0">
|
|
|
|
<channel>
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<link>{{ log_path }}</link>
|
|
|
|
<description>Collective log writing using XMPP chat groups and LogBot.</description>
|
|
|
|
<lastBuildDate>{{ date }}</lastBuildDate>
|
2021-03-07 11:41:37 +01:00
|
|
|
{% for x, post in db["messages"].items() %}
|
2021-03-07 11:36:03 +01:00
|
|
|
<item>
|
2021-03-07 11:46:41 +01:00
|
|
|
<title>{{ title }}</title>
|
2021-03-07 11:36:03 +01:00
|
|
|
<link>{{ log_path }}#{{ x }}</link>
|
|
|
|
<description>{{ post }}</description>
|
|
|
|
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LogBot</dc:creator>
|
|
|
|
<pubDate>{{ post.date }}</pubDate>
|
|
|
|
</item>
|
|
|
|
{% endfor %}
|
|
|
|
</channel>
|
|
|
|
</rss>
|