<?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>Rusty Bits</title>
	<atom:link href="http://blog.russkern.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.russkern.com</link>
	<description>Articles on Web, mobile and other things I enjoy.</description>
	<lastBuildDate>Fri, 27 Apr 2012 01:13:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Great Cinema 4D Tutorials</title>
		<link>http://blog.russkern.com/?p=107</link>
		<comments>http://blog.russkern.com/?p=107#comments</comments>
		<pubDate>Fri, 27 Apr 2012 01:02:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cinema 4D]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=107</guid>
		<description><![CDATA[I&#8217;ve started collecting a list of links to what I consider to be great Cinema 4D Tutorials. I&#8217;ll try to note the version number of the software for each one. Some are full tutorials from other sites and some are YouTube &#38; Vimeo videos. Bodypaint Redox UV mapping with cinema 4d : It&#8217;s not in ]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-117" title="cinemaheader" src="http://blog.russkern.com/wp-content/uploads/2012/04/cinemaheader-e1335489170544.png" alt="Cinema 4D" width="545" height="83" /></p>
<p>I&#8217;ve started collecting a list of links to what I consider to be great Cinema 4D Tutorials. I&#8217;ll try to note the version number of the software for each one. Some are full tutorials from other sites and some are YouTube &amp; Vimeo videos.</p>
<h2>Bodypaint</h2>
<p id="watch-headline-title"><a href="http://www.youtube.com/watch?v=6mMVCWDsn00" target="_blank">Redox UV mapping with cinema 4d</a> : It&#8217;s not in English, but this YouTube Video does a great job of showing you how to UV Map a complete character.<br />
The video runs a little over 36 minutes. Looks to be version 11 or 12.</p>
<h2>Character Modeling</h2>
<p><a title="Realtime Character Modeling" href="http://www.creativecrash.com/maya/tutorials/character/c/real-time-character-modeling-tutorial" target="_blank">Creative Crash &#8211; Realtime Character Modeling:</a> I found this approach to Character modeling helpful.  It&#8217;s not Cinema 4D (Maya actually), but the concept translates very well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Submisssion Error Reporting Tip</title>
		<link>http://blog.russkern.com/?p=100</link>
		<comments>http://blog.russkern.com/?p=100#comments</comments>
		<pubDate>Thu, 07 Jul 2011 11:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code Igniter]]></category>
		<category><![CDATA[JQMobile]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=100</guid>
		<description><![CDATA[Form submission is handled through AJAX by default in JQuery Mobile. While this is great for production where you want a seemless user experience and transition between the form and confirmation page, if you have an error in the code in your form submission through Code Igniter, you&#8217;ll never see the error page. All you ]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.russkern.com/wp-content/uploads/2011/04/Picture-8.png" alt="JQuery Mobile Framework" title="JQuery Logo" width="230" height="81" class="alignright size-full wp-image-37" />Form submission is handled through AJAX by default in JQuery Mobile. While this is great for production where you want a seemless user experience and transition between the form and confirmation page, if you have an error in the code in your form submission through Code Igniter, you&#8217;ll never see the error page. All you get is a re-display of your form which can leave you scratching your head.<span id="more-100"></span></p>
<p>What I&#8217;ve found to be a big help is to manually set your form open tags in your HTML (rather than Code Igniters form_open() method) and disable the AJAX form submission while in development. This will allow you to see the Code Igniter error messages that you code may be generating and allow you to troubleshoot much more easliy.</p>
<p>Simply open your forms like so:</p>
<p><pre><code>
&lt;form action=&quot;/dashboard/add_service_record/&quot; method=&quot;post&quot; data-ajax=&quot;false&quot;&gt;
</code></pre></p>
<p>Of course once you know your code works correctly, be sure to re-enable AJAX form submission and include appropriate error reporting in your submission script to be sure that if an error does occur in production, the user is notified.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=100</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating simple Statistics Bar Charts with PHP &amp; CSS</title>
		<link>http://blog.russkern.com/?p=85</link>
		<comments>http://blog.russkern.com/?p=85#comments</comments>
		<pubDate>Wed, 06 Jul 2011 12:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code Igniter]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=85</guid>
		<description><![CDATA[I have had the need to create simple bar charts to illustrate statistics on a sweepstakes website. Short of buying a package to allow the creation of 3-Dimensional bar charts, I used the method below to do just that. This example is illustrated within the Code Igniter Framework, but I believe it is easy to ]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.russkern.com/wp-content/uploads/2011/07/Picture-17.png"><img class="alignnone size-full wp-image-90" title="Bar chart 1" src="http://blog.russkern.com/wp-content/uploads/2011/07/Picture-17.png" alt="Sample PHP &amp; CSS Bar Chart" width="540" height="146" /></a><br />
I have had the need to create simple bar charts to illustrate statistics on a sweepstakes website. Short of buying a package to allow the creation of 3-Dimensional bar charts, I used the method below to do just that. This example is illustrated within the Code Igniter Framework, but I believe it is easy to see how this can be applied to any other framework or method.<br />
<span id="more-85"></span><br />
In this simple example, I have a sweepstakes website and I want to track &#8211; graphicly &#8211; the number of entries via the available TEXT method, QR Code &amp; Mobile Site and  traditional web.</p>
<ol>
<li>First I need to get the number of entries in the sweepstakes  from my database.</li>
<li>Second I need to collect the number of entries for each method (I have made provision in my database to record the entry method)</li>
<li>Using these numbers, figure my percentages</li>
<li>Write some simple CSS to display the results.</li>
</ol>
<p>To start, I&#8217;ll create a Model (Reports_model.php) to store my functions to count my entries. I&#8217;ll need 2 functions here&#8230; one to count the total entries and one to count each category.</p>
<p><pre><code>
class Report_model extends CI_Model {

function __construct()
{
parent::__construct();
}

function method_count($method)
{
$sql = &quot;SELECT * FROM entries WHERE method = ?&quot;;
$query = $this-&amp;gt;db-&amp;gt;query($sql, $method);
$value = $query-&amp;gt;num_rows();
return $value;
}

function entry_count()
{
$sql = &quot;SELECT * FROM entries&quot;;
$query = $this-&amp;gt;db-&amp;gt;query($sql);
$value = $query-&amp;gt;num_rows();
return $value;
}

}
</code></pre><br />
Next, we create our Controller for our reports page and a view file to display our work.<br />
Within our controller we will call our functions to get all our required numbers. The equation to calculate our percentages looks like:<br />
<pre><code>
number_format(($data[&#039;web_count&#039;]/$data[&#039;total_count&#039;])*100);
</code></pre></p>
<p>for example: If we want to know what percent 47 web entries of 144 total entries is we divide 144 into 47 and get .3263. We then multiply it by 100 to get 32%.</p>
<p>The part of the controller to do our calculations &amp; set our required values looks like this:<br />
<pre><code>
$this-&amp;gt;load-&amp;gt;model(&#039;report_model&#039;);
$data[&#039;total_count&#039;] = $this-&amp;gt;report_model-&amp;gt;entry_count(); //
$data[&#039;text_count&#039;] = $this-&amp;gt;report_model-&amp;gt;method_count(&#039;text&#039;);
$data[&#039;text_percent&#039;] = number_format(($data[&#039;text_count&#039;]/$data[&#039;total_count&#039;])*100);

$data[&#039;mobile_count&#039;] = $this-&amp;gt;report_model-&amp;gt;method_count(&#039;mobile&#039;);
$data[&#039;mobile_percent&#039;] =&nbsp;&nbsp;number_format(($data[&#039;mobile_count&#039;]/$data[&#039;total_count&#039;])*100);

$data[&#039;web_count&#039;] = $this-&amp;gt;report_model-&amp;gt;method_count(&#039;web&#039;);
$data[&#039;web_percent&#039;] =&nbsp;&nbsp;number_format(($data[&#039;web_count&#039;]/$data[&#039;total_count&#039;])*100);
</code></pre></p>
<p>Now we&#8217;re ready to create some charts!<br />
in this example, I&#8217;m just creating simple horizontal bar charts. We will have an outer cell that we can set to any width we like to fit our layout and an inner data cell to create a color bar that only occupies the proper percentage of the total. You can obviously style your CSS to a design that fits your layout.</p>
<p>The CSS:<br />
<pre><code>
.report_cell {
float: left;
padding: 3px;
display: block;
border-color: #7f7f7f;
border-width: 1px;
border-style: solid;
color: #888888;
width: 900px;
height: 24px;
}

.report_data {
line-height: 24px;
color: black;
font-family: Helvetica, Verdana, Arial, sans-serif;
background-color: #edd794;
display: block;
height: 24px;
overflow: hidden;
}
</code></pre><br />
And the display in our view file to show each of our bars:</p>
<p><pre><code>
&amp;nbsp;
&lt;h1&gt;Quick Report&lt;/h1&gt;
&lt;h2&gt;Total Entries:&lt;/h2&gt;
&lt;span class=&quot;flap&quot;&gt;Text:&lt;/span&gt;
&lt;div class=&quot;report_cell&quot;&gt;
&lt;div class=&quot;report_data&quot; style=&quot;width: &amp;lt;?php echo $text_percent;&quot;&gt;&lt;span style=&quot;margin-left: 8px;&quot;&gt; entries&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&amp;nbsp;

&lt;span class=&quot;flap&quot;&gt;Mobile:&lt;/span&gt;
&lt;div class=&quot;report_cell&quot;&gt;
&lt;div class=&quot;report_data&quot; style=&quot;width: &amp;lt;?php echo $mobile_percent;&quot;&gt;&lt;span style=&quot;margin-left: 8px;&quot;&gt; entries&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&amp;nbsp;

&lt;span class=&quot;flap&quot;&gt;Web:&lt;/span&gt;
&lt;div class=&quot;report_cell&quot;&gt;
&lt;div class=&quot;report_data&quot; style=&quot;width: &amp;lt;?php echo $web_percent;&quot;&gt;&lt;span style=&quot;margin-left: 8px;&quot;&gt; entries&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&amp;nbsp;
</code></pre><br />
That&#8217;s all there is. using this method, you can style your charts anyway you like&#8230; horizontal, vertically, stack in a single row.. whatever.</p>
<p>Hope this was useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Event Compatibility Tables</title>
		<link>http://blog.russkern.com/?p=78</link>
		<comments>http://blog.russkern.com/?p=78#comments</comments>
		<pubDate>Fri, 27 May 2011 15:08:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=78</guid>
		<description><![CDATA[I came across compatibility tables for Javascript events earlier today while trying to figure out why an &#8220;onchange&#8221; event wouldn&#8217;t work in IE browsers. The site was a big help so I&#8217;m posting it here. quirksmode.org Event Compatibility Tables]]></description>
			<content:encoded><![CDATA[<p>I came across compatibility tables for Javascript events earlier today while trying to figure out why an &#8220;onchange&#8221; event wouldn&#8217;t work in IE browsers.<br />
The site was a big help so I&#8217;m posting it here.<img src="http://blog.russkern.com/wp-content/uploads/2011/05/Picture-16-1024x488.png" alt="" title="Picture 16" width="525" height="250" class="alignnone size-large wp-image-79" /></p>
<p><a href="http://www.quirksmode.org/dom/events/index.html">quirksmode.org Event Compatibility Tables.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Light Bulb model</title>
		<link>http://blog.russkern.com/?p=68</link>
		<comments>http://blog.russkern.com/?p=68#comments</comments>
		<pubDate>Sun, 22 May 2011 12:56:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cinema 4D]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=68</guid>
		<description><![CDATA[This is a lightbulb I modeled for a project a month or so ago. Decided I&#8217;d post it for free download&#8230; The file is a Cinema 4D r12 file. If anyone is interested I can convert it to other formats. Download Cinema 4D r12 File]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.russkern.com/wp-content/uploads/2011/05/Screen-shot-2011-05-22-at-8.41.30-AM-150x150.png" alt="" title="Screen shot 2011-05-22 at 8.41.30 AM" width="150" height="150" class="alignright size-thumbnail wp-image-67" />This is a lightbulb I modeled for a project a month or so ago. Decided I&#8217;d post it for free download&#8230; The file is a Cinema 4D r12 file. If anyone is interested I can convert it to other formats.</p>
<p><a href='http://blog.russkern.com/wp-content/uploads/2011/05/curly_bulb.zip'>Download Cinema 4D r12 File</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project: Web App Development with JQTouch &amp; Code Igniter</title>
		<link>http://blog.russkern.com/?p=46</link>
		<comments>http://blog.russkern.com/?p=46#comments</comments>
		<pubDate>Tue, 05 Apr 2011 17:14:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code Igniter]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[JQTouch]]></category>
		<category><![CDATA[Mobile Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=46</guid>
		<description><![CDATA[I&#8217;ve started a new project recently. I have decided to build a web app for automotive service. I know there are plenty of these around, but it is something I have had floating in the back of my mind for some time so I decided that with my new interest in mobile development I&#8217;d give ]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_59" class="wp-caption alignright" style="width: 67px"><img src="http://blog.russkern.com/wp-content/uploads/2011/04/AMicon.png" alt="AUTOmobile" title="AMicon" width="57" height="57" class="size-full wp-image-59" /><p class="wp-caption-text">Working graphic for my mobile web app project</p></div>I&#8217;ve started a new project recently. I have decided to build a web app for automotive service. I know there are plenty of these around, but it is something I have had floating in the back of my mind for some time so I decided that with my new interest in mobile development I&#8217;d give it a shot.<br />
I have decided to use JQTouch and my primary PHP development framework Code Igniter for the task.<br />
In researching, I&#8217;ve found a couple great resources for learning the process. I&#8217;ve started a list of links below which I&#8217;ll continue to add to. If you know of any I&#8217;ve missed, feel free to pass them along.</p>
<p><a href="http://ofps.oreilly.com/titles/9780596805784/" target="_bank">Building iPhone Apps with HTML, CSS, and JavaScript</a> &#8211; Copyright © 2009 Jonathan Stark</p>
<p><a href="https://github.com/senchalabs/jQTouch/wiki/_pages" target="_blank">JQTouch Documentation</a> &#8211; The JQTouch documentation at GitHub</p>
<p><a href="http://blog.peepcode.com/tutorials/2009/jqtouch-cheat-sheet" target="_blank">The JQTouch Cheat Sheet</a> &#8211; simple post @ PeepCode</p>
<p><a href="http://blog.darkcrimson.com/2010/05/local-databases/" target="_blank">Crimson Blog &#8211; local databases</a> &#8211; a nice article on HTML5 databases and using javvascript to interact with them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Development with  JQuery Mobile &amp; Code Igniter.</title>
		<link>http://blog.russkern.com/?p=4</link>
		<comments>http://blog.russkern.com/?p=4#comments</comments>
		<pubDate>Mon, 04 Apr 2011 12:47:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code Igniter]]></category>
		<category><![CDATA[JQMobile]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.russkern.com/?p=4</guid>
		<description><![CDATA[I have found that one of the best (and my favorite) solutions to producing mobile websites is to use the JQuery Mobile javascript library . It&#8217;s simple, straight forward approach allows web developers to utiize the skills they already know while still delivering the sort of mobile web experience that a user expects. However, one ]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.russkern.com/wp-content/uploads/2011/04/Picture-8.png" alt="JQuery Mobile Framework" title="JQuery Logo" width="206" height="73" class="alignright size-full wp-image-37" />I have found that one of the best (and my favorite) solutions to producing mobile websites is to use the <a title="JQuery Mobile website" href="http://jquerymobile.com/" target="_blank">JQuery Mobile</a> javascript library . It&#8217;s simple, straight forward approach allows web developers to utiize the skills they already know while still delivering the sort of mobile web experience that a user expects.</p>
<p><img src="http://blog.russkern.com/wp-content/uploads/2011/04/Picture-9.png" alt="CodeIgniter PHP Framework" title="CodeIgniter Logo" width="206" height="67" class="alignright size-full wp-image-40" />However, one of the issues I found with building mobile websites with JQuery Mobile was that when building multi-page sites in a single HTML file, I frequently found myself editing the content for the wrong page. I try to keep my code commented and separated, but if the code gets very long I find that it becomes unwieldy. The MVC approach of constructing pages in Code Igniter (and I suppose other MVC frameworks for that matter) makes for an ideal construction method for building out multi-page mobile websites as a single HTML document.</p>
<p><span id="more-4"></span>First off. This is not intended to be a tutorial on using JQuery Mobile  or Code Igniter. Plenty can be learned about each from their respective websites. It is intended however to outline one, simple method of mobile development.</p>
<p>Within the Code Igniter framework, you can assemble various, independent view files to construct a page. By creating each of your page divs in a separate &#8220;View&#8221; file, you can keep your code clean and easy to follow.</p>
<p>The structure is simple. With the &#8220;Views folder&#8221; I create a file for the page top (contains my opening tags and head information as well as my opening BODY tag and my page bottom which contains my closing body &#038; html tags. Those files look basicly like this:</p>
<p><strong>The Head file:</strong><br />
<pre><code>
&lt;!DOCTYPE html&gt; 
&lt;html&gt; 
&nbsp;&nbsp;&lt;head&gt; 
&nbsp;&nbsp;&lt;title&gt;Page Title&lt;/title&gt; 
&nbsp;&nbsp;&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a3.min.css&quot; /&gt;
&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;http://code.jquery.com/jquery-1.5.2.min.js&quot;&gt;&lt;/script&gt;
&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a3.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt; 
&lt;body&gt;</code></pre></p>
<p><strong>The Foot File:</strong><br />
<pre><code>&lt;/body&gt;
&lt;/html&gt;</code></pre></p>
<p><strong>The Page file (create as many as you need):</strong></p>
<p><pre><code>&lt;div data-role=&quot;Your-page-name-here&quot;&gt;

&nbsp;&nbsp;&lt;div data-role=&quot;header&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;h1&gt;Page Title&lt;/h1&gt;
&nbsp;&nbsp;&lt;/div&gt;&lt;!-- /header --&gt;

&nbsp;&nbsp;&lt;div data-role=&quot;content&quot;&gt;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt;Page content goes here.&lt;/p&gt;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&lt;/div&gt;&lt;!-- /content --&gt;

&nbsp;&nbsp;&lt;div data-role=&quot;footer&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;h4&gt;Page Footer&lt;/h4&gt;
&nbsp;&nbsp;&lt;/div&gt;&lt;!-- /footer --&gt;
&lt;/div&gt;&lt;!-- /page --&gt;</code></pre></p>
<p>Once you have completed all of that, I compile them all in a Controller:</p>
<p><pre><code>public function index()
&nbsp;&nbsp;{
&nbsp;&nbsp;$this-&gt;load-&gt;view(&#039;head&#039;);
&nbsp;&nbsp;$this-&gt;load-&gt;view(&#039;page_one&#039;);
&nbsp;&nbsp;$this-&gt;load-&gt;view(&#039;page_two&#039;);
$this-&gt;load-&gt;view(&#039;page_three&#039;);
&nbsp;&nbsp;$this-&gt;load-&gt;view(&#039;foot&#039;);
&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;}</code></pre></p>
<p>It&#8217;s as simple as all of that. Of course, this is a fairly simple construction, but from it I think you can see how you can embellish it to create your own mobile pages using these two great OpenSource projects.</p>
<p>If you have never worked with either one of these great projects, links to each one are below.<br />
<a href="http://codeigniter.com/" target="_blank">Code Igniter</a><br />
<a href="http://jquerymobile.com" target="_blank">JQuery Mobile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.russkern.com/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

