36 lines
1.8 KiB
XML
36 lines
1.8 KiB
XML
<?xml version="1.0"?>
|
|
<rss version="2.0" xmlns:py="http://genshi.edgewall.org/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<channel>
|
|
<title>${project.name}: #${title}</title>
|
|
<link>${abs_href.event("upcoming")}</link>
|
|
<description>Die kommenden Termine im und Rund um den 'CTDO'</description>
|
|
<language>de-de</language>
|
|
<image py:if="chrome.logo.src">
|
|
<title>$project.name</title>
|
|
<url>${abs_href.chrome(chrome.logo.src)}</url>
|
|
<link>${abs_href.chrome(chrome.logo.src)}</link>
|
|
</image>
|
|
<generator>TracRendezvous</generator>
|
|
|
|
<item py:for="key,value in events">
|
|
<pubDate>${http_date(today)}</pubDate>
|
|
<title>$event.name</title>
|
|
<link>${abs_href.events(event.srv_id)}</link>
|
|
<guid isPermaLink="false">${abs_href.events(event.srv_id)}</guid>
|
|
<description>
|
|
<ul>
|
|
<li><strong>When:</strong> <em>${event.time_begin.strftime("%d.%m.%Y %Z")} - ${event.time_end.strftime("%d.%m.%Y %Z")}</em></li>
|
|
<py:if test="event.location"><li><strong>Location:</strong> <em>$event.location.name</em></li></py:if>
|
|
<py:if test="event.type_name"><li><strong>Type:</strong> <em>$event.type_name</em></li></py:if>
|
|
<py:if test="event.tags"><li><strong>Tags:</strong> <em>$event.tags</em></li></py:if>
|
|
<py:if test="event.attendees"><li><strong>Attendees:</strong> <em>$event.attendees</em></li></py:if>
|
|
</ul>
|
|
</description>
|
|
<category>Upcoming Events</category>
|
|
</item>
|
|
|
|
</channel>
|
|
</rss>
|