<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://fbb.just4test.de/extern.php?action=feed&amp;tid=3878&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Informationen für CMS/made simple / [GELÖST] Youtubeplayer]]></title>
		<link>http://www.cmsmadesimple.de/forum/viewtopic.php?id=3878</link>
		<description><![CDATA[Die aktuellsten Beiträge in [GELÖST] Youtubeplayer.]]></description>
		<lastBuildDate>Fri, 25 Apr 2014 11:07:39 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30754#p30754</link>
			<description><![CDATA[<p>Habs mit @index gelöst - Vielen Dank euch beiden!</p>]]></description>
			<author><![CDATA[dummy@example.com (brandy)]]></author>
			<pubDate>Fri, 25 Apr 2014 11:07:39 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30754#p30754</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30743#p30743</link>
			<description><![CDATA[<p>Youtubeplayer hat leider keine solche Funktion. Das kannst du aber prima mit Smarty Properties wie @index und/oder @iteration innerhalb der foreach Schleife machen.</p><p><a href="http://www.smarty.net/docs/en/language.function.foreach.tpl#foreach.property.index" rel="nofollow">Lesestoff</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Fri, 25 Apr 2014 08:21:49 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30743#p30743</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30731#p30731</link>
			<description><![CDATA[<p>Ich hab gleich noch eine Frage:<br />Gibt es beim Modul Youtubeplayer ein Funktion ala News - wo ich sagen kann er soll mir erst Videos ab einer gewissen Nummer anzeigen?<br />Ich möchte nämlich unter Video rechts zwei, eventuell drei, Videos anzeigen lassen. Da hät ich zB gesagt limit=2 start=1 - dann hät ich unterhalb noch eine Zeile gemacht, wo ich gesagt hätte er soll mit dem 3. Video starten und kein Limit, sodass er es einfach anzeigt welche noch da sind!</p><p>Vielen Dank!</p>]]></description>
			<author><![CDATA[dummy@example.com (brandy)]]></author>
			<pubDate>Thu, 24 Apr 2014 13:45:47 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30731#p30731</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30727#p30727</link>
			<description><![CDATA[<p>Gut, ich werd mal die zwei Teile von Klenkes einbauen...<br />Wie sieht dann der Aufruf aus - ich geb ja aktuell ein Template vor...</p>]]></description>
			<author><![CDATA[dummy@example.com (brandy)]]></author>
			<pubDate>Thu, 24 Apr 2014 11:23:51 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30727#p30727</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30726#p30726</link>
			<description><![CDATA[<p>Hier nochmal die 1-Template-Variante sowohl für Detail- als auch Video-Template:</p><div class="codebox"><pre class="vscroll"><code>{if (isset($item) &amp;&amp; is_object($item) &amp;&amp; isset($item-&gt;videoid)) || (isset($itemlist) &amp;&amp; is_array($itemlist) &amp;&amp; isset($itemlist[0]-&gt;videoid))}

&lt;div class=&quot;large-12 columns&quot;&gt;

    &lt;div class=&quot;large-7 columns&quot;&gt;
        
        &lt;!-- Der Link zum Javascript kann auch in den Head der jeweiligen Seite --&gt;
        &lt;script src=&quot;//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js&quot;&gt;&lt;/script&gt; 
        
        &lt;!-- Der Flash-Player --&gt;
        &lt;div class=&quot;flex-video&quot; id=&quot;ytplayer-temp&quot;&gt;You need Flash player 10.1 (or higher) and JavaScript enabled to view this video.&lt;/div&gt;
        
        &lt;!-- Das Javascript zum Laden der Videos nach Klick auf das Vorschaubild --&gt;
        &lt;script&gt;
            /*
            * YouTube: Control Embedded Player With JavaScript API
            * http://salman-w.blogspot.com/2009/05/embed-multiple-youtube-videos-in-your.html
            */
            swfobject.embedSWF(
                &quot;http://www.youtube.com/v/{if isset($item) &amp;&amp; is_object($item) &amp;&amp; isset($item-&gt;videoid)}{$item-&gt;videoid}{elseif isset($itemlist) &amp;&amp; is_array($itemlist) &amp;&amp; isset($itemlist[0]-&gt;videoid)}{$itemlist[0]-&gt;videoid}{/if}?enablejsapi=1&amp;rel=0&amp;fs=1&quot;,
                &quot;ytplayer-temp&quot;,
                &quot;480&quot;,
                &quot;360&quot;,
                &quot;10.1&quot;,
                false,
                false,
                { allowScriptAccess: &quot;always&quot;, allowFullScreen: &quot;true&quot; },
                { id: &quot;ytplayer&quot; }
            );

            function ytplayer_loadvideo(link, id) {
                var o = document.getElementById(&quot;ytplayer&quot;);
                if (o) {
                    o.loadVideoById(id);
                    // funktioniert nur wenn, jquery verwendet wird
                    if(typeof $ != &#039;undefined&#039;) {
                        $(&#039;.videolink.active&#039;).removeClass(&#039;active&#039;);
                        $(link).parent().addClass(&#039;active&#039;);
                    }
                }
            }
        &lt;/script&gt;

    &lt;/div&gt;

{if isset($itemlist) &amp;&amp; is_array($itemlist) &amp;&amp; count($itemlist)}

    &lt;div class=&quot;large-5 columns&quot;&gt;

        &lt;!-- Die Liste mit den Videos --&gt;
        &lt;ul class=&quot;videolist&quot;&gt;

            {foreach from=$itemlist item=&quot;item&quot;}

            &lt;li class=&quot;videolink{if $item-&gt;is_selected} active{/if}&quot;&gt;
                {$item-&gt;detaillink}&lt;br/&gt;

                &lt;!-- onclick-Event zum Link mit Vorschaubild hinzufügen --&gt;
                &lt;a href=&quot;{$item-&gt;detailurl}&quot; onclick=&quot;ytplayer_loadvideo(this, &#039;{$item-&gt;videoid}&#039;);return false;&quot;&gt;

                    &lt;img src=&quot;http://img.youtube.com/vi/{$item-&gt;videoid}/default.jpg&quot; border=&quot;0&quot; alt=&quot;{$item-&gt;name}&quot; title=&quot;{$item-&gt;name}&quot; width=&quot;130&quot; height=&quot;97&quot; /&gt; 
                &lt;/a&gt;
            &lt;/li&gt;

            {/foreach}

        &lt;/ul&gt;
    &lt;/div&gt;

{/if}

&lt;/div&gt;

{/if}</code></pre></div><div class="quotebox"><blockquote><div><p>Deine 1 Templatelösung ist deutlich besser.</p></div></blockquote></div><p>Würd ich so pauschal nicht sagen.<br />Wie gesagt, es kommt drauf an was man am Ende erreichen will.<br />Es kann Situationen geben, wo es durchaus sinnvoller ist, mit mehreren Templates zu arbeiten.</p>]]></description>
			<author><![CDATA[dummy@example.com (NaN)]]></author>
			<pubDate>Thu, 24 Apr 2014 10:15:42 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30726#p30726</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30725#p30725</link>
			<description><![CDATA[<div class="quotebox"><cite>brandy schrieb:</cite><blockquote><div><p>Ich habs jetzt noch nicht hinbekommen - muss mir das zu Hause nochmal anschauen - danke vorerst mal...<br />Der Vorteil aus dieser Variante wäre, dass er nicht jedesmal die Seite neu lädt, oder?</p></div></blockquote></div><p>Das Video aus der Liste ersetzt das bereits geladene Video, und dein Inhalt aus dem Contenblock bleibt davon unberührt.<br />Und die Seite wird nicht neu geladen.</p>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Thu, 24 Apr 2014 10:10:44 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30725#p30725</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30724#p30724</link>
			<description><![CDATA[<div class="quotebox"><cite>NaN schrieb:</cite><blockquote><div><div class="quotebox"><blockquote><div><p>{$itemlist[0]} gibt nichts zurück.</p></div></blockquote></div><p>Kommt drauf an wie man das Modul aufruft.<br />Das Beispiel war als <em>Video</em>-Template gedacht.<br />Nicht als <em>Detail</em>-Template.</p></div></blockquote></div><p>Da hast du vollkommen recht.<br />Deine 1 Templatelösung ist deutlich besser.</p><p>Wenn man diese Template als Listtemplate aufruft funktioniert das $itemlist[0]-&gt;videoid auch.<br />Z.B.</p><div class="codebox"><pre><code>{cms_module module=&quot;youtubeplayer&quot; listtemplate=&quot;video-template&quot;}</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Thu, 24 Apr 2014 10:06:44 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30724#p30724</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30723#p30723</link>
			<description><![CDATA[<p>Ich habs jetzt noch nicht hinbekommen - muss mir das zu Hause nochmal anschauen - danke vorerst mal...<br />Der Vorteil aus dieser Variante wäre, dass er nicht jedesmal die Seite neu lädt, oder?</p>]]></description>
			<author><![CDATA[dummy@example.com (brandy)]]></author>
			<pubDate>Thu, 24 Apr 2014 10:05:49 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30723#p30723</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30721#p30721</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>{$itemlist[0]} gibt nichts zurück.</p></div></blockquote></div><p>Kommt drauf an wie man das Modul aufruft.<br />Das Beispiel war als <em>Video</em>-Template gedacht.<br />Nicht als <em>Detail</em>-Template.<br />Im <em>Video</em>-Template gibt nämlich {$item-&gt;videoid} außerhalb der Foreach-Schleife nichts zurück.<br />Im <em>Detail</em>-Template macht es natürlich mehr Sinn mit {$item-&gt;videoid} und einem gesonderten Modul-Aufruf für die Liste zu arbeiten.</p><p>Ist halt die Frage was genau man erreichen will.<br />Ich habe in meinem Beispiel nur mit einem Template gearbeitet, nicht mit zweien.</p><p>Man könnte bei einem einzigen Template auch vorher prüfen, ob {$item} bzw. {$item-&gt;videoid} existiert, wenn ja, dann {$item-&gt;videoid} als Standard-Video verwenden, wenn nicht, prüfen ob {itemlist} bzw. {$itemlist[0]-&gt;videoid} existiert und dann das erste Element mit {$itemlist[0]-&gt;videoid} wählen.</p><p>Wenn beides nicht existiert, läuft sowieso irgendwas falsch.</p>]]></description>
			<author><![CDATA[dummy@example.com (NaN)]]></author>
			<pubDate>Thu, 24 Apr 2014 09:48:28 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30721#p30721</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30720#p30720</link>
			<description><![CDATA[<p>Ich fasse es für brandy nochmal zusammen:</p><p><strong>Detailtemplate:</strong></p><div class="codebox"><pre class="vscroll"><code>&lt;div class=&quot;large-12 columns&quot;&gt;
    &lt;div class=&quot;large-7 columns&quot;&gt;

        
        &lt;!-- Der Link zum Javascript kann auch in den Head der jeweiligen Seite --&gt;
        &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js&quot;&gt;&lt;/script&gt; 
        
        &lt;!-- Der Flash-Player --&gt;
        &lt;div class=&quot;flex-video&quot; id=&quot;ytplayer-temp&quot;&gt;You need Flash player 10.1 (or higher) and JavaScript enabled to view this video.&lt;/div&gt;
        
        &lt;!-- Das Javascript zum Laden der Videos nach Klick auf das Vorschaubild --&gt;
        &lt;script&gt;
            /*
            * YouTube: Control Embedded Player With JavaScript API
            * http://salman-w.blogspot.com/2009/05/embed-multiple-youtube-videos-in-your.html
            */
            swfobject.embedSWF(
                &quot;http://www.youtube.com/v/{$item-&gt;videoid}?enablejsapi=1&amp;rel=0&amp;fs=1&quot;,
                &quot;ytplayer-temp&quot;,
                &quot;480&quot;,
                &quot;360&quot;,
                &quot;10.1&quot;,
                false,
                false,
                { allowScriptAccess: &quot;always&quot;, allowFullScreen: &quot;true&quot; },
                { id: &quot;ytplayer&quot; }
            );
            function ytplayer_loadvideo(link, id) {
                var o = document.getElementById(&quot;ytplayer&quot;);
                if (o) {
                    o.loadVideoById(id);
                    $(&#039;.videolink.active&#039;).removeClass(&#039;active&#039;);
                    $(link).parent().addClass(&#039;active&#039;);
                }
            }
        &lt;/script&gt;

    &lt;/div&gt;

{cms_module module=&quot;youtubeplayer&quot;}</code></pre></div><p><strong>Listtemplate:</strong></p><div class="codebox"><pre><code>    &lt;div class=&quot;large-5 columns&quot;&gt;
            
        &lt;!-- Die Liste mit den Videos --&gt;
        &lt;ul class=&quot;videolist&quot;&gt;
            {foreach from=$itemlist item=&quot;item&quot;}
            &lt;li class=&quot;videolink{if $item-&gt;is_selected} active{/if}&quot;&gt;
                {$item-&gt;detaillink}&lt;br/&gt;
            
                &lt;!-- onclick-Event zum Link mit Vorschaubild hinzufügen --&gt;
                &lt;a href=&quot;{$item-&gt;detailurl}&quot; onclick=&quot;ytplayer_loadvideo(this, &#039;{$item-&gt;videoid}&#039;);return false;&quot;&gt;
            
                    &lt;img src=&quot;http://img.youtube.com/vi/{$item-&gt;videoid}/default.jpg&quot; border=&quot;0&quot; alt=&quot;{$item-&gt;name}&quot; title=&quot;{$item-&gt;name}&quot; width=&quot;130&quot; height=&quot;97&quot; /&gt; 
                &lt;/a&gt;
            &lt;/li&gt;
            {/foreach}
        &lt;/ul&gt;
        
    &lt;/div&gt;
&lt;/div&gt;</code></pre></div><p>Die Templates müssen jeweils als Standard gesetzt werden.</p>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Thu, 24 Apr 2014 09:43:47 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30720#p30720</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30719#p30719</link>
			<description><![CDATA[<p>An eine Ajaxlösung dachte ich auch schon.<br />Yepp! Hinterher kann es&#160; jeder sagen <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/wink.png" alt="wink" /> </p><p>Es funktioniert mit {$item-&gt;videoid}</p><div class="codebox"><pre><code>swfobject.embedSWF(
  &quot;http://www.youtube.com/v/{$item-&gt;videoid}?enablejsapi=1&amp;rel=0&amp;fs=1&quot;,
...</code></pre></div><p>{$itemlist[0]-&gt;videoid} gibt nichts zurück weil es das Detailtemplate ist.</p>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Thu, 24 Apr 2014 09:37:05 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30719#p30719</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30718#p30718</link>
			<description><![CDATA[<p>Einfach ein neues Template im Youtubeplayer-Modul anlegen und den Code da einfügen.<br />Ich habs als Standard Video-Template ausgewählt.</p>]]></description>
			<author><![CDATA[dummy@example.com (NaN)]]></author>
			<pubDate>Thu, 24 Apr 2014 09:29:35 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30718#p30718</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30717#p30717</link>
			<description><![CDATA[<p>Wo bau ich das hin?<br />Copy/Paste reicht anscheinend nicht*g*</p>]]></description>
			<author><![CDATA[dummy@example.com (brandy)]]></author>
			<pubDate>Thu, 24 Apr 2014 09:22:12 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30717#p30717</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30716#p30716</link>
			<description><![CDATA[<p>Wie wäre es eigentlich mit einer Javascript-Lösung für die Video-Seite?<br />Video-Template:</p><div class="codebox"><pre class="vscroll"><code>&lt;div class=&quot;large-12 columns&quot;&gt;
    &lt;div class=&quot;large-7 columns&quot;&gt;
        
        &lt;!-- Der Link zum Javascript kann auch in den Head der jeweiligen Seite --&gt;
        &lt;script src=&quot;//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js&quot;&gt;&lt;/script&gt; 
        
        &lt;!-- Der Flash-Player --&gt;
        &lt;div class=&quot;flex-video&quot; id=&quot;ytplayer-temp&quot;&gt;You need Flash player 10.1 (or higher) and JavaScript enabled to view this video.&lt;/div&gt;
        
        &lt;!-- Das Javascript zum Laden der Videos nach Klick auf das Vorschaubild --&gt;
        &lt;script&gt;
            /*
            * YouTube: Control Embedded Player With JavaScript API
            * http://salman-w.blogspot.com/2009/05/embed-multiple-youtube-videos-in-your.html
            */
            swfobject.embedSWF(
                &quot;http://www.youtube.com/v/{$itemlist[0]-&gt;videoid}?enablejsapi=1&amp;rel=0&amp;fs=1&quot;,
                &quot;ytplayer-temp&quot;,
                &quot;480&quot;,
                &quot;360&quot;,
                &quot;10.1&quot;,
                false,
                false,
                { allowScriptAccess: &quot;always&quot;, allowFullScreen: &quot;true&quot; },
                { id: &quot;ytplayer&quot; }
            );
            function ytplayer_loadvideo(link, id) {
                var o = document.getElementById(&quot;ytplayer&quot;);
                if (o) {
                    o.loadVideoById(id);
                    $(&#039;.videolink.active&#039;).removeClass(&#039;active&#039;);
                    $(link).parent().addClass(&#039;active&#039;);
                }
            }
        &lt;/script&gt;

    &lt;/div&gt;
    &lt;div class=&quot;large-5 columns&quot;&gt;
            
        &lt;!-- Die Liste mit den Videos --&gt;
        &lt;ul class=&quot;videolist&quot;&gt;
            {foreach from=$itemlist item=&quot;item&quot;}
            &lt;li class=&quot;videolink{if $item-&gt;is_selected} active{/if}&quot;&gt;
                {$item-&gt;detaillink}&lt;br/&gt;
            
                &lt;!-- onclick-Event zum Link mit Vorschaubild hinzufügen --&gt;
                &lt;a href=&quot;{$item-&gt;detailurl}#ytplayer-temp&quot; onclick=&quot;ytplayer_loadvideo(this, &#039;{$item-&gt;videoid}&#039;);return false;&quot;&gt;
            
                    &lt;img src=&quot;http://img.youtube.com/vi/{$item-&gt;videoid}/default.jpg&quot; border=&quot;0&quot; alt=&quot;{$item-&gt;name}&quot; title=&quot;{$item-&gt;name}&quot; width=&quot;130&quot; height=&quot;97&quot; /&gt; 
                &lt;/a&gt;
            &lt;/li&gt;
            {/foreach}
        &lt;/ul&gt;
        
    &lt;/div&gt;
&lt;/div&gt;</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (NaN)]]></author>
			<pubDate>Thu, 24 Apr 2014 08:39:37 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30716#p30716</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Youtubeplayer]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30715#p30715</link>
			<description><![CDATA[<p>Das Problem hierbei ist, dass wenn du die Liste mit inline=&quot;1&quot; aufrufst, hast du zwar die Überschrift(und allen Inhalt) aus dem Contentblock aber damit auch das zuerst aufgerufene Video. Und das ist blöd.</p><p><strong>Also bleibt dir nur:</strong><br />1. Die Überschrift ganz oben zuerst im Detailtemplate setzen?<br />2. oder ins Seitentemplate</p>]]></description>
			<author><![CDATA[dummy@example.com (Klenkes)]]></author>
			<pubDate>Thu, 24 Apr 2014 08:33:10 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=30715#p30715</guid>
		</item>
	</channel>
</rss>
