<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WEBPIRATEN</title>
	<atom:link href="http://webpiraten.de/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://webpiraten.de</link>
	<description>TECHNOLOGIE-BLOG</description>
	<lastBuildDate>Fri, 03 Sep 2010 15:12:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>mit shell script und diff dateien prüfen</title>
		<link>http://webpiraten.de/index.php/2010/08/mit-shell-script-und-diff-dateien-prufen/</link>
		<comments>http://webpiraten.de/index.php/2010/08/mit-shell-script-und-diff-dateien-prufen/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 11:52:52 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[diff]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[target]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=266</guid>
		<description><![CDATA[Um durch etwaige Cronjobs eine Prüfung von 2 Dateien und darauf folgende Aktionen zu erzeugen, kann ein shell script Verwendung finden. #!/bin/bash SOURCE=/mount/data/new_file.txt TARGET=/srv/www/vhosts/www/app/config/old_file.txt diff -i -b -B -q ${SOURCE} ${TARGET} if [ ! $? -eq 0 ] then echo &#34;new file is different from old one - copy new one to old&#34; cp ${SOURCE} [...]]]></description>
			<content:encoded><![CDATA[<p>Um durch etwaige Cronjobs eine Prüfung von 2 Dateien und darauf folgende Aktionen zu erzeugen, kann ein shell script Verwendung finden.</p>
<pre class="brush: bash;">
#!/bin/bash

SOURCE=/mount/data/new_file.txt
TARGET=/srv/www/vhosts/www/app/config/old_file.txt

diff -i -b -B -q ${SOURCE} ${TARGET}

if [ ! $? -eq 0 ]
then
    echo &quot;new file is different from old one - copy new one to old&quot;
    cp ${SOURCE} ${TARGET}
else
    echo &quot;no difference between files - nothing to do&quot;
fi
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/08/mit-shell-script-und-diff-dateien-prufen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Die Machete im Android Dschungel</title>
		<link>http://webpiraten.de/index.php/2010/06/die-machete-im-android-dschungel/</link>
		<comments>http://webpiraten.de/index.php/2010/06/die-machete-im-android-dschungel/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 18:53:31 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[androidpit]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[handy]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[übersicht]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=262</guid>
		<description><![CDATA[Um in der Vielzahl von Android Applikationen die Guten herauszufinden, macht androidpit.de die entscheidenden Tests und gibt gute Entscheidungshilfen.]]></description>
			<content:encoded><![CDATA[<p>Um in der Vielzahl von Android Applikationen die Guten herauszufinden, macht <a href="http://www.androidpit.de/">androidpit.de</a> die entscheidenden Tests und gibt gute Entscheidungshilfen.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/06/die-machete-im-android-dschungel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kohana twitter api modul</title>
		<link>http://webpiraten.de/index.php/2010/06/kohana-twitter-api-modul/</link>
		<comments>http://webpiraten.de/index.php/2010/06/kohana-twitter-api-modul/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 19:45:58 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[kohana]]></category>
		<category><![CDATA[modul]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=260</guid>
		<description><![CDATA[Das Kohana Twitter API Modul macht es einem sehr einfach Twitter in seine Applikationen einzubeziehen. Hier gehts zum Kohana Projekt]]></description>
			<content:encoded><![CDATA[<p>Das Kohana Twitter API Modul macht es einem sehr einfach Twitter in seine Applikationen einzubeziehen.</p>
<p><a href="http://dev.kohanaframework.org/projects/twitter">Hier gehts zum Kohana Projekt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/06/kohana-twitter-api-modul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIT für SVN Umsteiger</title>
		<link>http://webpiraten.de/index.php/2010/05/git-fur-svn-umsteiger/</link>
		<comments>http://webpiraten.de/index.php/2010/05/git-fur-svn-umsteiger/#comments</comments>
		<pubDate>Fri, 14 May 2010 12:27:14 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[GIT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Versionierung]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=257</guid>
		<description><![CDATA[Unter folgendem Link findet Ihr die GIT Quickreferenz für SVN Umsteiger. http://git-scm.com/course/svn.html]]></description>
			<content:encoded><![CDATA[<p>Unter folgendem Link findet Ihr die GIT Quickreferenz für SVN Umsteiger.</p>
<p><a href="http://git-scm.com/course/svn.html" target="_blank">http://git-scm.com/course/svn.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/05/git-fur-svn-umsteiger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agavi Custom Logger implementieren</title>
		<link>http://webpiraten.de/index.php/2010/05/agavi-custom-logger-implementieren/</link>
		<comments>http://webpiraten.de/index.php/2010/05/agavi-custom-logger-implementieren/#comments</comments>
		<pubDate>Fri, 07 May 2010 15:15:57 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Agavi]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[agavi]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[logger]]></category>
		<category><![CDATA[logging]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=252</guid>
		<description><![CDATA[Um in Agavi custom logfiles zu erstellen, benötigt man einen eigens erstellten logger + appender in der app/config/logger.xml. &#60;!-- logs only custom messages in a custom log --&#62; &#60;logger name=&#34;custom&#34; class=&#34;AgaviLogger&#34; level=&#34;'custom'&#34;&#62; &#60;appenders&#62; &#60;appender&#62;CustomLogAppender&#60;/appender&#62; &#60;/appenders&#62; &#60;/logger&#62; &#60;appender name=&#34;CustomLogAppender&#34; class=&#34;AgaviFileLoggerAppender&#34; layout=&#34;DateTimeLayout&#34;&#62; &#60;ae:parameters&#62; &#60;ae:parameter name=&#34;file&#34;&#62;%core.app_dir%/log/custom.log&#60;/ae:parameter&#62; &#60;/ae:parameters&#62; &#60;/appender&#62; Dann kann man den Logger quasi überall wo der LoggerManager [...]]]></description>
			<content:encoded><![CDATA[<p>Um in Agavi custom logfiles zu erstellen, benötigt man einen eigens erstellten logger + appender in der <strong>app/config/logger.xml</strong>.</p>
<pre class="brush: xml;">
&lt;!-- logs only custom messages in a custom log --&gt;
&lt;logger name=&quot;custom&quot; class=&quot;AgaviLogger&quot; level=&quot;'custom'&quot;&gt;
    &lt;appenders&gt;
        &lt;appender&gt;CustomLogAppender&lt;/appender&gt;
    &lt;/appenders&gt;
&lt;/logger&gt;

&lt;appender name=&quot;CustomLogAppender&quot; class=&quot;AgaviFileLoggerAppender&quot; layout=&quot;DateTimeLayout&quot;&gt;
    &lt;ae:parameters&gt;
        &lt;ae:parameter name=&quot;file&quot;&gt;%core.app_dir%/log/custom.log&lt;/ae:parameter&gt;
    &lt;/ae:parameters&gt;
&lt;/appender&gt;
</pre>
<p>Dann kann man den Logger quasi überall wo der LoggerManager verfügbar ist benutzen.</p>
<pre class="brush: php;">
$message = 'Custom logging message';
$this-&gt;getContext()-&gt;getLoggerManager()-&gt;log(new AgaviLoggerMessage($message, 'custom'), 'custom');
</pre>
<p>Und in der bash das logfile einsehen.</p>
<pre class="brush: bash;">
tail -f app/log/custom.log
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/05/agavi-custom-logger-implementieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agavi routing specials</title>
		<link>http://webpiraten.de/index.php/2010/05/agavi-routing-specials/</link>
		<comments>http://webpiraten.de/index.php/2010/05/agavi-routing-specials/#comments</comments>
		<pubDate>Mon, 03 May 2010 13:32:32 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Agavi]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[agavi]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[http_accept]]></category>
		<category><![CDATA[http_x_requested_with]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[specials]]></category>
		<category><![CDATA[types]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=245</guid>
		<description><![CDATA[Um bestimmte Agavi output_types bei speziellen routings zu bedienen kann man die routing.xml wie folgt anpassen. &#60;!-- cut out leading slash --&#62; &#60;route name=&#34;slasher&#34; pattern=&#34;^/&#34; stop=&#34;false&#34; imply=&#34;true&#34; cut=&#34;true&#34; /&#62; &#60;!-- match ajax calls with special http header --&#62; &#60;route pattern=&#34;XMLHttpRequest&#34; source=&#34;_SERVER[HTTP_X_REQUESTED_WITH]&#34; stop=&#34;false&#34; output_type=&#34;ajax&#34; /&#62; &#60;!-- match json calls with special http header --&#62; &#60;route pattern=&#34;application/json&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Um bestimmte Agavi output_types bei speziellen routings zu bedienen kann man die routing.xml wie folgt anpassen.</p>
<pre class="brush: xml;">
&lt;!-- cut out leading slash --&gt;
&lt;route name=&quot;slasher&quot; pattern=&quot;^/&quot; stop=&quot;false&quot; imply=&quot;true&quot; cut=&quot;true&quot; /&gt;

&lt;!-- match ajax calls with special http header --&gt;
&lt;route pattern=&quot;XMLHttpRequest&quot; source=&quot;_SERVER[HTTP_X_REQUESTED_WITH]&quot; stop=&quot;false&quot; output_type=&quot;ajax&quot; /&gt;

&lt;!-- match json calls with special http header --&gt;
&lt;route pattern=&quot;application/json&quot; source=&quot;_SERVER[HTTP_ACCEPT]&quot; stop=&quot;false&quot; output_type=&quot;json&quot; /&gt;

&lt;!-- cut out special pointer --&gt;
&lt;route name=&quot;portal&quot; pattern=&quot;^({portal:[a-zA-Z]{3}}/)?&quot; stop=&quot;false&quot; imply=&quot;true&quot; cut=&quot;true&quot;&gt;
    &lt;callbacks&gt;
        &lt;callback class=&quot;RoutingCallback&quot; /&gt;
    &lt;/callbacks&gt;
&lt;/route&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/05/agavi-routing-specials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN WorkingCopy Version Format ändern</title>
		<link>http://webpiraten.de/index.php/2010/05/svn-workingcopy-version-format-aendern/</link>
		<comments>http://webpiraten.de/index.php/2010/05/svn-workingcopy-version-format-aendern/#comments</comments>
		<pubDate>Mon, 03 May 2010 13:14:34 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Versionierung]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[working copy]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=236</guid>
		<description><![CDATA[In verteilten Systemen kommt es des öfteren vor, das unterschiedliche SVN Versionen zum Einsatz kommen. Wenn euer SVN diese Meldung ausgibt: svn: This client is too old to work with working copy 'xyz'. You need to get a newer Subversion client, or to downgrade this working copy. See http://subversion.tigris.org/faq.html#working-copy-format-change for details. kann das Python Script [...]]]></description>
			<content:encoded><![CDATA[<p>In verteilten Systemen kommt es des öfteren vor, das unterschiedliche SVN Versionen zum Einsatz kommen.</p>
<p>Wenn euer SVN diese Meldung ausgibt:</p>
<pre class="brush: bash;">
svn: This client is too old to work with working copy 'xyz'.  You need to get a newer Subversion client, or to downgrade this working copy. See http://subversion.tigris.org/faq.html#working-copy-format-change for details.
</pre>
<p>kann das Python Script <a href='http://webpiraten.de/wp-content/uploads/2010/05/change-svn-wc-format.zip' target='_blank'>change-svn-wc-format</a> eine SVN WorkingCopy in ein bestimmtes anderes SVN Versionsformat wechseln.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/05/svn-workingcopy-version-format-aendern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ordner mit gzip packen und entpacken.</title>
		<link>http://webpiraten.de/index.php/2010/03/ordner-mit-gzip-packen-und-entpacken/</link>
		<comments>http://webpiraten.de/index.php/2010/03/ordner-mit-gzip-packen-und-entpacken/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 09:11:34 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[dir]]></category>
		<category><![CDATA[entpacken]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[ordner]]></category>
		<category><![CDATA[packen]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=233</guid>
		<description><![CDATA[Da GZIP selbst keine ganzen Ordner packen kann, kann man TAR das gepackte Archiv erzeugen lassen. user@server: tar cvzf ordner.tar.gz ordnername user@server: tar zxvf ordner.tar.gz]]></description>
			<content:encoded><![CDATA[<p>Da GZIP selbst keine ganzen Ordner packen kann, kann man TAR das gepackte Archiv erzeugen lassen.</p>
<pre class="brush: bash;">
user@server: tar cvzf ordner.tar.gz ordnername
user@server: tar zxvf ordner.tar.gz
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/03/ordner-mit-gzip-packen-und-entpacken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>:nth-of-type Pseudo-Klasse macht Tabellen-Zeilen Highlighting einfach</title>
		<link>http://webpiraten.de/index.php/2010/03/nth-of-type-pseudo-klasse-macht-tabellen-zeilen-highlighting-einfach/</link>
		<comments>http://webpiraten.de/index.php/2010/03/nth-of-type-pseudo-klasse-macht-tabellen-zeilen-highlighting-einfach/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:51:56 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Layout & Styles]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[klasse]]></category>
		<category><![CDATA[of type]]></category>
		<category><![CDATA[pseudo]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[tabelle]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=227</guid>
		<description><![CDATA[Das abwechselnd farbliche Absetzen von Tabellenzeilen in HTML kann auch mittels einer CSS 3 Pseudo Klasse umgesetzt werden. /* heighlight jeder 2ten zeile beginnend mit der ersten */ tr:nth-of-type(2n+1) { background-color:#f7f7f7; } /* heighlight jeder 2ten zeile beginnend mit der zweiten */ tr:nth-of-type(2n) { background-color:#f7f7f7; } Der InternetExplorer weigert sich leider bis dato diese CSS [...]]]></description>
			<content:encoded><![CDATA[<p>Das abwechselnd farbliche Absetzen von Tabellenzeilen in HTML kann auch mittels einer CSS 3 Pseudo Klasse umgesetzt werden.</p>
<pre class="brush: css;">
/* heighlight jeder 2ten zeile beginnend mit der ersten */
tr:nth-of-type(2n+1) { background-color:#f7f7f7; }

/* heighlight jeder 2ten zeile beginnend mit der zweiten */
tr:nth-of-type(2n) { background-color:#f7f7f7; }
</pre>
<p>Der InternetExplorer weigert sich leider bis dato diese CSS 3 Angaben zu interpretieren.</p>
<p>Mehr Informationen zu CSS 3 Selektoren liefert der <a href="http://www.w3.org/TR/css3-selectors/#structural-pseudos">W3C</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2010/03/nth-of-type-pseudo-klasse-macht-tabellen-zeilen-highlighting-einfach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell Scripting Guide</title>
		<link>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/</link>
		<comments>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 16:04:51 +0000</pubDate>
		<dc:creator>sägefisch</dc:creator>
				<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bin]]></category>
		<category><![CDATA[freeos]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://webpiraten.de/?p=221</guid>
		<description><![CDATA[Hier findet Ihr den Shell Scripting Guide: freeos.com/guides/lsst/ Dann kann man beispielsweise so kleine Helferlein zum Löschen von Logs und Caches wie diesen hier basteln: #!/bin/bash cd `dirname $0` # go to scripts dir cd .. # step ahead arr[0]='Application1/app/cache/*' arr[1]='Application1/var/cache/*' arr[2]='Application2/application/cache/*' arr[3]='Application2/application/logs/*' arr[4]='Application2/pub/tmp/*' arr[5]='Application3/application/cache/*' arr[6]='Application3/application/logs/*' arr[7]='Application3/pub/tmp/*' i=0 while [ $i -lt ${#arr[@]} ] do [...]]]></description>
			<content:encoded><![CDATA[<p>Hier findet Ihr den Shell Scripting Guide:</p>
<p><a href="http://www.freeos.com/guides/lsst/" target="_blank">freeos.com/guides/lsst/</a></p>
<p>Dann kann man beispielsweise so kleine Helferlein zum Löschen von Logs und Caches wie diesen hier basteln:</p>
<pre class="brush: bash;">
#!/bin/bash
cd `dirname $0` # go to scripts dir
cd .. # step ahead
arr[0]='Application1/app/cache/*'
arr[1]='Application1/var/cache/*'
arr[2]='Application2/application/cache/*'
arr[3]='Application2/application/logs/*'
arr[4]='Application2/pub/tmp/*'
arr[5]='Application3/application/cache/*'
arr[6]='Application3/application/logs/*'
arr[7]='Application3/pub/tmp/*'

i=0
while [ $i -lt ${#arr[@]} ]
do

rm -rf ${arr[$i]}
echo &quot;${arr[$i]} deleted&quot;

(( i=$i+1 ))
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://webpiraten.de/index.php/2009/12/shell-scripting-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
