<?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>Bionic Works &#187; Web Browsers</title>
	<atom:link href="http://www.bionicworks.com/category/web-browsers/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bionicworks.com</link>
	<description>Paid in Bacon</description>
	<lastBuildDate>Sun, 05 Feb 2012 20:27:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Check Safari Mobile Version</title>
		<link>http://www.bionicworks.com/web-browsers/check-safari-mobile-version</link>
		<comments>http://www.bionicworks.com/web-browsers/check-safari-mobile-version#comments</comments>
		<pubDate>Thu, 09 Jun 2011 21:40:11 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/?p=2417</guid>
		<description><![CDATA[It&#8217;s weird how the UI doesn&#8217;t tell you what Safari version you&#8217;re running, but this little tidbit will. Just cut and paste it into the URL bar: javascript:alert(navigator.userAgent) You can also use it for Android&#8217;s browser as well.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s weird how the UI doesn&#8217;t tell you what Safari version you&#8217;re running, but this little tidbit will. Just cut and paste it into the URL bar:</p>
<div class="codesnip-container" >javascript:alert(navigator.userAgent)</div>
<p>You can also use it for Android&#8217;s browser as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/web-browsers/check-safari-mobile-version/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Chrome&#8217;s Hidden Features</title>
		<link>http://www.bionicworks.com/web-browsers/enable-chromes-hidden-features</link>
		<comments>http://www.bionicworks.com/web-browsers/enable-chromes-hidden-features#comments</comments>
		<pubDate>Wed, 16 Mar 2011 05:53:00 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/?p=2212</guid>
		<description><![CDATA[Speed up Chrome by turning on GPU acceleration. Type this in your URL bar: Simply look for GPU Accelerated Canvas 2D and click on enable. If you&#8217;re running on a computer that needs a little help optimizing resources then this (&#8230;)<p><a href="http://www.bionicworks.com/web-browsers/enable-chromes-hidden-features">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bionicworks.com/wp-content/uploads/2011/03/google-chrome-enable-gpu1.jpg"><img src="http://www.bionicworks.com/wp-content/uploads/2011/03/google-chrome-enable-gpu1.jpg" alt="turn on graphics acceleration for chrome" title="enable gpu for google chrome browser" width="553" height="238" class="alignnone size-full wp-image-2219" /></a><br />
Speed up Chrome by turning on GPU acceleration.  Type this in your URL bar:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;">about:flags</div>
</div>
<p>Simply look for <strong>GPU Accelerated Canvas 2D</strong> and click on enable. If you&#8217;re running on a computer that needs a little help optimizing resources then this may help your system out by utilizing the GPU instead.  Also, restart the browser, so that it&#8217;ll get it going. Remember that this is experimental and you might not even notice any difference in the performance.  You can test against <a href="http://ie.microsoft.com/testdrive/">Internet Explorer&#8217;s Test Drive</a> to see any improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/web-browsers/enable-chromes-hidden-features/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate a Playlist for HTML5 Video</title>
		<link>http://www.bionicworks.com/php/generate-a-playlist-for-html5-video</link>
		<comments>http://www.bionicworks.com/php/generate-a-playlist-for-html5-video#comments</comments>
		<pubDate>Tue, 04 May 2010 08:10:08 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/?p=1524</guid>
		<description><![CDATA[I wanted to script a playlist generator for HTML5 without using jQuery and this is what I came up with. What it does is read files from a directory and outputs it in JSON array. It&#8217;ll pass the values to (&#8230;)<p><a href="http://www.bionicworks.com/php/generate-a-playlist-for-html5-video">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I wanted to script a playlist generator for HTML5 without using jQuery and this is what I came up with.  What it does is read files from a directory and outputs it in JSON array.  It&#8217;ll pass the values to JavaScript and with a bit of DOM magic, set the MP4&#8242;s path to HTML5&#8242;s player.  I could&#8217;ve easily built the front end with jQuery but I wanted to see the gears of HTML5.  If you don&#8217;t care about performance then use PHP&#8217;s <a href="http://www.php.net/manual/en/function.glob.php">glob()</a> method to find files in a directory.  I also added two JS functions from <a href="http://developer.apple.com/safari/library/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/ControllingMediaWithJavaScript/ControllingMediaWithJavaScript.html#//apple_ref/doc/uid/TP40009523-CH3-SW1">Apple&#8217;s dev</a> manual.  Sometimes you don&#8217;t have to reinvent the wheel.</p>
<div style="width:690px; height:150px; overflow:auto;padding-bottom:4px;">
<strong>11/22/10</strong><br />
I fixed the click event bug ,so now it will load the video properly. jQuery made it easier to figure out what was wrong with the links. Basically, I attached click events with the live() method to the generated links and they should play the appropriate video when clicked.
</div>
<pre class="brush: php; title: ; toolbar: true; notranslate">
&lt;?php
 //Grab the files from a directory
 $dir = 'vids';
 if(is_dir($dir)){
     if($dd = opendir($dir)){
         while (($f = readdir($dd)) !== false)
             if($f != '.' &amp;&amp; $f != '..'){
                 $files[] = $f;
			 }
     closedir($dd);
     }
 }
//Create JS's header
header(&quot;Content-type: text/javascript&quot;);
$file = array();

foreach($files as $key =&gt; $val){
	//inserts the val into the array
	 $file[$key] = $val;
}

//creates json obj with the array
echo 'var obj = '  .  json_encode($file)  .  &quot;;\n&quot;;
?&gt;

// listener function changes src
function myNewSrc() {

      var myVideo = document.getElementsByTagName('video')[0];
      myVideo.src = obj[(++i)%obj.length];
      myVideo.load();
      myVideo.play();

}

// function adds listener function to ended event
function myAddListener(){
     var myVideo = document.getElementsByTagName('video')[0];
     myVideo.addEventListener('ended', myNewSrc, false);

}

$(document).ready(function(){

    for(i in obj){
        var text = document.createTextNode(obj[i]);
        var list = document.getElementById('list');
        var bullet = document.createElement('li');
        var output = document.getElementById('output');

        var path = &quot;vids/&quot; + text.nodeValue;

        bullet.innerHTML= &quot;&lt;a href='&quot; + path + &quot;' onclick='return false;'&gt;&quot; + text.nodeValue + &quot;&lt;/a&gt;&quot;;
        list.appendChild(bullet);
        output.appendChild(list);

    }

    $('#list &gt; li a').live('click', function(e){
    	var t = e.target;
        var $this = $(this);
        var path = $this.attr('href');
        var myVideo = document.getElementsByTagName('video')[0];

        myVideo.src = path;
        myVideo.load();
        myVideo.play();

    });

});
</pre>
<div style="padding:12px;"></div>
<p>You have to place the JS source tag at the bottom of the markup otherwise it won&#8217;t parse properly. It&#8217;s just good practice to load your scripts at the bottom of the document.  You can also load it by creating an init() method if you want to be really nasty.  I&#8217;ve set this page up so that it fits snug with the iPad&#8217;s screen width.  There are ways to have fallbacks so that it degrades to Flash but that&#8217;s outside the scope of this write up.  <a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-html-5-video-with-a-fallback-to-flash/">NETTUTS</a> goes over it a bit.</p>
<pre class="brush: xml; title: ; toolbar: true; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;utf-8&quot; /&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot; /&gt;
&lt;title&gt;Generate HTML5 Playlist with JSON&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
#player {
 padding-top: 6px;
 }
#output{
	display:block;
	width:480px;
	height:220px;
	background-color:#CCC;
	color:#000;
	padding:6px;
}

#output {width:350px; height:200px; background-color:#CCC;}
#output ul, li{list-style:none;}
hgroup{list-style:none;}

&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body id=&quot;index&quot; class=&quot;home&quot; onLoad=&quot;myAddListener()&quot;&gt;
    &lt;header id=&quot;header&quot; class=&quot;vid&quot;&gt;
        &lt;div id=&quot;logo&quot;&gt;&lt;h1&gt;Create a HTML5 Playlist with PHP&lt;/h1&gt;&lt;/div&gt;
    &lt;/header&gt;&lt;!-- /#header --&gt;

    &lt;aside id=&quot;featured&quot; class=&quot;body&quot;&gt;
        &lt;article&gt;
            &lt;figure&gt;
                &lt;video src=&quot;vids/video.mp4&quot;
                    controls
                    id=&quot;player&quot;
                    poster=&quot;bluemoon_logo.jpg&quot;
                    height=&quot;480&quot;
                    width=&quot;720&quot;
                    type=&quot;video/mp4&quot;&gt;&lt;/video&gt;
            &lt;/figure&gt;
            &lt;hgroup&gt;
                &lt;h2&gt;Video loading playlist&lt;/h2&gt;
                &lt;div id=&quot;output&quot;&gt;&lt;ul id=&quot;list&quot;&gt;&lt;/ul&gt;&lt;/div&gt;
            &lt;/hgroup&gt;
		&lt;/article&gt;
    &lt;/aside&gt;&lt;!-- /#featured --&gt;
&lt;script src=&quot;getPlaylist.php&quot;&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<div style="padding:12px;"></div>
<p>Check out the <a href="http://www.bionicworks.com/php/playlist/">working sample</a> to see how it&#8217;s set up.  You can only view this in Safari and Chrome but maybe by 2049 HTML5 will be fully implemented.  I don&#8217;t think HTML5&#8242;s video will mature anytime soon, but it doesn&#8217;t hurt to see what the future holds.  It has a lot of catching up to do if it wants to out do Flash.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0165341109871249";
/* 728x15, created 8/8/10 */
google_ad_slot = "3457353063";
google_ad_width = 700;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/php/generate-a-playlist-for-html5-video/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Flash Video on Mobile Devices Thanks to Skyfire</title>
		<link>http://www.bionicworks.com/apps/flash-video-on-mobile-devices-thanks-to-skyfire</link>
		<comments>http://www.bionicworks.com/apps/flash-video-on-mobile-devices-thanks-to-skyfire#comments</comments>
		<pubDate>Fri, 30 Apr 2010 06:42:36 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/apps/flash-video-on-mobile-devices-thanks-to-skyfire</guid>
		<description><![CDATA[I guess Flash made it to the Andriod and it&#8217;s in the beta state. A huge chunk of the web experience is now possible. It&#8217;s not perfect but it&#8217;s a great start. The best part is when Skyfire detects a (&#8230;)<p><a href="http://www.bionicworks.com/apps/flash-video-on-mobile-devices-thanks-to-skyfire">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bionicworks.com/wp-content/uploads/2010/04/android_logo_with_flash_logo.jpg"><img src="http://www.bionicworks.com/wp-content/uploads/2010/04/android_logo_with_flash_logo.jpg" alt="Flash Video is now on Android OS" title="Flash Video is now on Android OS" width="512" height="384" class="alignnone size-full wp-image-1519" /></a></p>
<p>I guess Flash made it to the Andriod and it&#8217;s in the beta state.  A huge chunk of the web experience is now possible.  It&#8217;s not perfect but it&#8217;s a great start.  The best part is when <a href="http://www.skyfire.com">Skyfire</a> detects a viewable Flash video,  it&#8217;ll notify you or you can click on menu to see if it&#8217;ll play.  What I notice is that it&#8217;ll pull the video if your video&#8217;s source is rendered in the html.  Small step for Android, giant leap for Flash.</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/9t00fEV2_kE&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/9t00fEV2_kE&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object>            </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/apps/flash-video-on-mobile-devices-thanks-to-skyfire/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detect iPad&#8217;s Safari Browser and Redirect to HTML5 Page</title>
		<link>http://www.bionicworks.com/php/detect-ipads-safari-browser-and-redirect-to-html5-page</link>
		<comments>http://www.bionicworks.com/php/detect-ipads-safari-browser-and-redirect-to-html5-page#comments</comments>
		<pubDate>Sun, 04 Apr 2010 22:27:12 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/?p=1459</guid>
		<description><![CDATA[I&#8217;m upset that Apple decided not to support Flash for the iPad and instead embraced html5 as their weapon of choice to implement video content. I wasn&#8217;t impressed with html5 until I saw the guys at Google ported Quake 2 (&#8230;)<p><a href="http://www.bionicworks.com/php/detect-ipads-safari-browser-and-redirect-to-html5-page">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m upset that Apple decided not to support Flash for the iPad and instead embraced html5 as their weapon of choice to implement video content.  I wasn&#8217;t impressed with html5 until I saw the <a href="http://www.youtube.com/watch?v=fyfu4OwjUEI">guys at Google ported Quake 2</a> over from Java.  The potential dawned on me.  I guess using the native language to handle the DOM isn&#8217;t so bad.  You just have to roll up your sleave and tango JS into some bedroom boom boom.  After all, parsing the native language is faster.</p>
<p>The server side script has to detect the user agent sent by the browser and this is what it&#8217;ll send in the http request.</p>
<pre class="brush: xml; light: true; title: ; notranslate">
Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10</pre>
<p>A simple redirect with php&#8217;s header() method will send the client to the page according to the device&#8217;s browser or OS.  I recommend that the script should look for stuff where it&#8217;s specific to the device.  You don&#8217;t want to serve them your iPhone site if you&#8217;re checking for &#8220;mobile&#8221; in the request.</p>
<pre class="brush: php; title: ; toolbar: true; notranslate">
&lt;?php

$useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
preg_match('/ipad/', $useragent, $browser);
$device = $browser[0];

function get_agent($string){
	if($string == 'ipad')
	{
		//redirect browser to the html5 page
		header('Location: http://www.yoursite.com/link/to/page.html');
		exit();
	} else {
		$foo = 'Unidentified device';
	}

	return $foo;
}

get_agent($device);

?&gt;
</pre>
<p>This skeleton of html5 markup has the device&#8217;s viewport value set to a constant so that it fits the viewport of the current device such as the iPad.  The controls can be skinned with <a href="http://developer.apple.com/safari/library/documentation/AudioVideo/Conceptual/Using_HTML5_Audio_Video/ControllingMediaWithJavaScript/ControllingMediaWithJavaScript.html#//apple_ref/doc/uid/TP40009523-CH3-SW1">Javascript</a> and <a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariCSSRef/Introduction.html#//apple_ref/doc/uid/TP40002050">CSS</a> to give it some <a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariJSRef/index.html#//apple_ref/doc/uid/TP40001482">DOM visual effects</a>.</p>
<pre class="brush: xml; title: ; toolbar: true; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;utf-8&quot; /&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot; /&gt;
&lt;title&gt;HTML5 Video!&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;

#player {
 	padding-top: 6px;
 }

aside, header, footer, body{display: block;}

&lt;/style&gt;
&lt;/head&gt;

&lt;body id=&quot;index&quot; class=&quot;home&quot;&gt;
    &lt;header id=&quot;header&quot; class=&quot;vid&quot;&gt;
        &lt;div id=&quot;logo&quot;&gt;&lt;h1&gt;Logo&lt;/h1&gt;&lt;/div&gt;
    &lt;/header&gt;&lt;!-- #header --&gt;

    &lt;aside id=&quot;featured&quot; class=&quot;body&quot;&gt;
        &lt;article&gt;
            &lt;figure&gt;
                &lt;video src=&quot;http://www.site.com/your/video.mp4&quot; controls=&quot;controls&quot; id=&quot;player&quot;&gt;&lt;/video&gt;
            &lt;/figure&gt;
            &lt;hgroup&gt;
                &lt;h2&gt;Featured Video&lt;/h2&gt;
                &lt;h3&gt;&lt;a href=&quot;#&quot;&gt;A vid&lt;/a&gt;&lt;/h3&gt;
            &lt;/hgroup&gt;
            &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec mauris massa, tempus in eleifend id, sagittis ac urna.&lt;/p&gt;
        &lt;/article&gt;
    &lt;/aside&gt;&lt;!-- #featured --&gt;
&lt;footer&gt;&lt;/footer&gt;&lt;!-- #footer--&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>So that&#8217;s the basics on how to get your site to figure out the user agent and then take them to a page that&#8217;s html5 formatted.  You can view the source on the <a href="http://www.bionicworks.com/php/html5/markup.html">working sample</a> in Safari or Chrome to see the structure.  It&#8217;s missing other elements but the <a href="http://dev.w3.org/html5/spec/">W3C Editor&#8217;s Draft</a> outlines all the new tags.  Some of the features I look forward seeing developers take advantage of will certainly give Flash reasons to fine tune their song and dance.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0165341109871249";
/* 468x60, created 9/14/10 */
google_ad_slot = "5131622998";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/php/detect-ipads-safari-browser-and-redirect-to-html5-page/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Clear Safari&#8217;s Cache</title>
		<link>http://www.bionicworks.com/web-browsers/how-to-clear-safaris-cache</link>
		<comments>http://www.bionicworks.com/web-browsers/how-to-clear-safaris-cache#comments</comments>
		<pubDate>Wed, 06 Jan 2010 21:38:07 +0000</pubDate>
		<dc:creator>Thai</dc:creator>
				<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.bionicworks.com/?p=1281</guid>
		<description><![CDATA[You can clear Safari 4.0.4 cache and everything from saved passwords to cookies by clicking on general settings > Reset Safari . I thought it was a little strange how they labeled the feature and so I wanted to share (&#8230;)<p><a href="http://www.bionicworks.com/web-browsers/how-to-clear-safaris-cache">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bionicworks.com/wp-content/uploads/2010/01/safari.jpg"><img src="http://www.bionicworks.com/wp-content/uploads/2010/01/safari.jpg" alt="clearing safari's browser" title="clearing safari's browser" width="548" height="313" class="alignnone size-full wp-image-1282" /></a><br />
You can clear Safari 4.0.4 cache and everything from saved passwords to cookies by clicking on<strong> general settings > Reset Safari </strong>.  I thought it was a little strange how they labeled the feature and so I wanted to share it.  You can also clear browsing history if you&#8217;ve been checking out smut.  But if your wife or girlfriend is behind you while you&#8217;re checking out porn&#8230;well, just say you&#8217;re doing research.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bionicworks.com/web-browsers/how-to-clear-safaris-cache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

