|
|
|
TPL_RSS = '<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<rss version="2.0"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
|
|
|
xmlns:admin="http://webns.net/mvcb/"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
|
|
|
|
|
|
|
<channel>
|
|
|
|
<title>radio chaotica podcast</title>
|
|
|
|
<link>http://entropia.de/wiki/Radio%20Chaotica</link>
|
|
|
|
<description>ein podcast der sendungen des entropia e.v., chaos computer club karlsruhe auf querfunk, 104.8 mhz</description>
|
|
|
|
<category>Talk Radio</category>
|
|
|
|
<generator>MediaWiki neinomat</generator>
|
|
|
|
<language>de</language>
|
|
|
|
<copyright>Entropia e.V. Karlsruhe</copyright>
|
|
|
|
|
|
|
|
<managingEditor>radio@entropia.de (Radio Chaotica)</managingEditor>
|
|
|
|
<pubDate><%=Time.now.strftime(RFC822) %></pubDate>
|
|
|
|
<image>
|
|
|
|
<url>http://podcast.entropia.de/chaotica-100x300-crappy.png</url>
|
|
|
|
<width>100</width>
|
|
|
|
<height>300</height>
|
|
|
|
<link>http://entropia.de/wiki/Radio%20Chaotica</link>
|
|
|
|
<title>Radio Chaotica</title>
|
|
|
|
</image>
|
|
|
|
|
|
|
|
<sy:updatePeriod>daily</sy:updatePeriod>
|
|
|
|
<sy:updateFrequency>1</sy:updateFrequency>
|
|
|
|
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
|
|
|
|
|
|
|
|
<itunes:subtitle xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">ein podcast der sendungen des entropia e.v., chaos computer club karlsruhe auf querfunk, 104.8 mhz</itunes:subtitle>
|
|
|
|
<itunes:summary xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
|
|
|
ein podcast der sendungen des entropia e.v., chaos computer club karlsruhe auf querfunk, 104.8 mhz
|
|
|
|
|
|
|
|
infos zur sendung unter:
|
|
|
|
http://entropia.de/wiki/Radio_Chaotica
|
|
|
|
</itunes:summary>
|
|
|
|
<itunes:image xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" href="http://podcast.entropia.de/chaotica-300x300-crappy.png"/>
|
|
|
|
|
|
|
|
<itunes:category xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" text="News & Politics"/>
|
|
|
|
<itunes:keywords xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">entropia,karlsruhe,ccc,hacking,computer,technology,society,chaosradio,chaos,politics</itunes:keywords>
|
|
|
|
<itunes:explicit xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">no</itunes:explicit>
|
|
|
|
|
|
|
|
<itunes:author xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">Entropia e.V. Karlsruhe</itunes:author>
|
|
|
|
<itunes:owner xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
|
|
|
<itunes:name>Entropia e.V. Karlsruhe</itunes:name>
|
|
|
|
<itunes:email>radio@entropia.de</itunes:email>
|
|
|
|
</itunes:owner>
|
|
|
|
|
|
|
|
<%= items %>
|
|
|
|
</channel></rss>
|
|
|
|
'
|
|
|
|
TPL_ITEM = '
|
|
|
|
<item>
|
|
|
|
<title><%= CGI::escapeHTML(episode["title"]) %></title>
|
|
|
|
<link><%= episode["url"] %></link>
|
|
|
|
<description><%= CGI::escapeHTML(episode["description"]) %></description>
|
|
|
|
<category>Talk Radio</category>
|
|
|
|
<enclosure url="<%= episode["enclosure_url"] %>" length="<%= episode["length"] %>" type="<%= episode["type"] %>" />
|
|
|
|
|
|
|
|
<guid isPermaLink="true"><%= episode["url"] %></guid>
|
|
|
|
<pubDate><%= episode["pubdate"] %></pubDate>
|
|
|
|
<comments><%= CGI::escapeHTML(episode["discussion"]) %></comments>
|
|
|
|
<content:encoded><%= CGI::escapeHTML(episode["content:encoded"]) %></content:encoded>
|
|
|
|
|
|
|
|
<author>radio@entropia.de</author>
|
|
|
|
|
|
|
|
<itunes:explicit xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">no</itunes:explicit>
|
|
|
|
<itunes:author xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">Entropia e.V. Karlsruhe</itunes:author>
|
|
|
|
<itunes:keywords xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">entropia,karlsruhe,ccc,hacking,computer,technology,society,chaosradio,chaos,politics</itunes:keywords>
|
|
|
|
<itunes:duration xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"><%= episode["duration"] %></itunes:duration>
|
|
|
|
<itunes:subtitle xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
|
|
|
<%= CGI::escapeHTML(episode["description"]) %>
|
|
|
|
</itunes:subtitle>
|
|
|
|
<itunes:summary xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"><%= CGI::escapeHTML(episode["summary"]) %></itunes:summary>
|
|
|
|
</item>
|
|
|
|
'
|
|
|
|
TPL_SUMMARY_ADD = '
|
|
|
|
|
|
|
|
Sendung downloaden:
|
|
|
|
<%= episode["enclosure_url"] %>
|
|
|
|
|
|
|
|
Weitere Informationen zur Sendung gibt es unter:
|
|
|
|
<%= episode["url"] %>
|
|
|
|
|
|
|
|
Ihr habt Fragen und Anregungen? Hinterlasst sie uns auf der Diskussionsseite zur Sendung oder per Mail an radio@entropia.de:
|
|
|
|
<%= episode["discussion"] %>
|
|
|
|
|
|
|
|
Weitere Sendungen findet ihr hier: Radio Chaotica. Wir senden (fast ;-) jeden 3. Montag im Monat um 16:00 Uhr live auf Querfunk 104,8 MHz im Raum Karlsruhe. Für alle, die Querfunk nicht über UKW empfangen können, existiert auch der Querfunk Live-Stream (http://www.querfunk.de/live.html) oder natürlich unser Podcast - den ihr gerade lest oder hört :-)
|
|
|
|
'
|