<?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>Dax Panganiban</title>
	<atom:link href="http://daxpanganiban.com/feed" rel="self" type="application/rss+xml" />
	<link>http://daxpanganiban.com</link>
	<description>web developer in progress</description>
	<lastBuildDate>Fri, 18 Nov 2011 10:47:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Getting DNS in Ruby</title>
		<link>http://daxpanganiban.com/ruby/getting-dns-in-ruby</link>
		<comments>http://daxpanganiban.com/ruby/getting-dns-in-ruby#comments</comments>
		<pubDate>Wed, 20 Apr 2011 07:42:04 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=105</guid>
		<description><![CDATA[Here&#8217;s a short snippet of how to grab a domain&#8217;s nameserver info using Ruby.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a short snippet of how to grab a domain&#8217;s nameserver info using Ruby.</p>
<pre class="brush: ruby; title: ; notranslate">
require 'resolv'

a = []
dns = Resolv::DNS.new
dns.getresources(&quot;google.com&quot;, Resolv::DNS::Resource::IN::NS).collect {|n| a &lt;&lt; n.name.to_s }

puts a
</pre>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/ruby/getting-dns-in-ruby/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parsing and creating csv files in Ruby using FasterCSV</title>
		<link>http://daxpanganiban.com/ruby/parsing-and-creating-csv-files-in-ruby-using-fastercsv</link>
		<comments>http://daxpanganiban.com/ruby/parsing-and-creating-csv-files-in-ruby-using-fastercsv#comments</comments>
		<pubDate>Wed, 20 Apr 2011 07:36:40 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=96</guid>
		<description><![CDATA[This tutorial shows how you can read and write csv files in Ruby. I&#8217;m going to use a plugin called FasterCSV. To install FasterCSV, type in your terminal: In your ruby code: There are also other alternatives for parsing and writing csv files in Ruby. You can use CSV, CSVScan and CCSV]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows how you can read and write csv files in Ruby. I&#8217;m going to use a plugin called <a title="FasterCSV" href="http://fastercsv.rubyforge.org/" target="_blank">FasterCSV</a>.</p>
<p>To install FasterCSV, type in your terminal:</p>
<pre class="brush: plain; title: ; notranslate">
sudo apt-get install fastercsv
</pre>
<p>In your ruby code:</p>
<pre class="brush: ruby; title: ; notranslate">
require 'rubygems'
require 'faster_csv'

# Reading csv file
FasterCSV.foreach(csv_file, :quote_char =&gt; '&quot;', :col_sep =&gt; ',', :row_sep =&gt; :auto) do |row|
  puts row[0] # Output first cell
end

# Writing data into a csv file
FasterCSV.open(&quot;report.csv&quot;, &quot;w&quot;) do |csv|
   csv &lt;&lt; ['Bulls','62','20']
   csv &lt;&lt; ['Spurs','61','21']
end
</pre>
<p>There are also other alternatives for parsing and writing csv files in Ruby. You can use CSV, <a title="CSVScan" href="http://raa.ruby-lang.org/project/csvscan/" target="_blank">CSVScan</a> and <a title="CCSV" href="http://github.com/fauna/ccsv/tree/master" target="_blank">CCSV</a></p>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/ruby/parsing-and-creating-csv-files-in-ruby-using-fastercsv/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expecting a Baby Girl!</title>
		<link>http://daxpanganiban.com/personal/expecting-a-baby-girl</link>
		<comments>http://daxpanganiban.com/personal/expecting-a-baby-girl#comments</comments>
		<pubDate>Sat, 13 Feb 2010 07:32:55 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/personal/expecting-a-baby-girl</guid>
		<description><![CDATA[My wife and I just got back from the clinic today. She took an ultrasound and we found out we are going to have a baby girl! My first born is a baby girl! Everything is right where it should be&#8230;I hope and pray she&#8217;ll come out healthy. I&#8217;m so happy today]]></description>
			<content:encoded><![CDATA[<p>My wife and I just got back from the clinic today. She took an ultrasound and we found out we are going to have a baby girl! My first born is a baby girl! Everything is right where it should be&#8230;I hope and pray she&#8217;ll come out healthy. I&#8217;m so happy today <img src='http://daxpanganiban.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/personal/expecting-a-baby-girl/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CakePHP sessions</title>
		<link>http://daxpanganiban.com/php/cakephp-sessions</link>
		<comments>http://daxpanganiban.com/php/cakephp-sessions#comments</comments>
		<pubDate>Tue, 09 Feb 2010 08:28:45 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=88</guid>
		<description><![CDATA[If you are developing an CakePHP application where ajax is mostly used. It is advisable that you set the following session configurations inside your core.php. If your application calls more than one ajax request at the same time, it is recommended that you set your ajax requests to synchronous to prevent session regeneration id errors.]]></description>
			<content:encoded><![CDATA[<p>If you are developing an CakePHP application where ajax is mostly used. It is advisable that you set the following session configurations inside your core.php.</p>
<pre class="brush: php; title: ; notranslate">
Configure::write('Session.timeout', '86400'); // expires in 30 days

Configure::write('Security.level', 'medium');
</pre>
<p>If your application calls more than one ajax request at the same time, it is recommended that you set your ajax requests to synchronous to prevent session regeneration id errors.</p>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/php/cakephp-sessions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check if a plugin has been loaded in jQuery?</title>
		<link>http://daxpanganiban.com/javascript/how-to-check-if-a-plugin-has-been-loaded-in-jquery</link>
		<comments>http://daxpanganiban.com/javascript/how-to-check-if-a-plugin-has-been-loaded-in-jquery#comments</comments>
		<pubDate>Tue, 09 Feb 2010 08:17:19 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=85</guid>
		<description><![CDATA[This tutorial illustrates how to check if a plugin exists or if plugin has been already loaded using  jQuery. This is particularly useful if you are writing your jQuery code that depends on that plugin.]]></description>
			<content:encoded><![CDATA[<p>This tutorial illustrates how to check if a plugin exists or if plugin has been already loaded using  jQuery. This is particularly useful if you are writing your jQuery code that depends on that plugin.</p>
<pre class="brush: jscript; title: ; notranslate">
if(jQuery().plugin_name) {
// plugin exists
} else {
// plugin not loaded
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/javascript/how-to-check-if-a-plugin-has-been-loaded-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Beginning</title>
		<link>http://daxpanganiban.com/personal/a-new-beginning</link>
		<comments>http://daxpanganiban.com/personal/a-new-beginning#comments</comments>
		<pubDate>Mon, 24 Aug 2009 06:23:13 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/personal/a-new-beginning</guid>
		<description><![CDATA[I just started on my new job at a startup company here in Cebu City. I&#8217;m excited on this new opportunity to work with a new team and deal with new projects.]]></description>
			<content:encoded><![CDATA[<p>I just started on my new job at a startup company here in Cebu City. I&#8217;m excited on this new opportunity to work with a new team and deal with new projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/personal/a-new-beginning/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Using Zend Framework&#8217;s Paginator Library</title>
		<link>http://daxpanganiban.com/php/using-zend-frameworks-paginator-library</link>
		<comments>http://daxpanganiban.com/php/using-zend-frameworks-paginator-library#comments</comments>
		<pubDate>Tue, 23 Jun 2009 04:26:46 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[zend paginator]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=74</guid>
		<description><![CDATA[Here&#8217;s a tutorial on how to use ZF&#8217;s paginator library. Inside your controller: Inside your results view page: Inside your pagination file view:]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a tutorial on how to use ZF&#8217;s paginator library.</p>
<p>Inside your controller:</p>
<pre class="brush: php; title: ; notranslate">
    public function displayResultsAction() {
        // First condition gets filtered info from a form and passes it to the model
        if($this-&gt;_request-&gt;getPost('Submit')) {
            $dept_code= $this-&gt;_request-&gt;getPost('dept_code');

            $results = $this-&gt;report_model-&gt;getReports($dept_code);
      	} elseif($this-&gt;_request-&gt;getParam('dept_code')) {
        // Get the filtered info from the url params being passed by zend paginator
       	    $dept_code= $this-&gt;_request-&gt;getParam('dept_code');

       	    $results = $this-&gt;report_model-&gt;getReports($dept_code);
       	} else {
            // do anything here...
            // I just display the default report results
            $dept_code = '';

       	    $results = $this-&gt;report_model-&gt;getDefaultReports();
        }

        $page = $this-&gt;_request-&gt;getParam('page', 1);

        $paginator = Zend_Paginator::factory($results);
        //Set item count per page
        $paginator-&gt;setItemCountPerPage(20);

        $paginator-&gt;setCurrentPageNumber($page);

        $this-&gt;view-&gt;results = $paginator;
        $this-&gt;view-&gt;dept_code = $dept_code;
    }
</pre>
<p>Inside your results view page:</p>
<pre class="brush: php; title: ; notranslate">
&lt;!-- html code here --&gt;

&lt;table class=&quot;view&quot; cellpadding=&quot;3&quot; cellspacing=&quot;0&quot;&gt;
    &lt;thead&gt;
        &lt;tr&gt;
            &lt;th width=&quot;100&quot;&gt;Id #&lt;/th&gt;
            &lt;th width=&quot;150&quot;&gt;Dept Code&lt;/th&gt;
            &lt;th width=&quot;200&quot;&gt;Department&lt;/th&gt;
            &lt;th width=&quot;200&quot;&gt;Project Name&lt;/th&gt;
        &lt;/tr&gt;
    &lt;/thead&gt;
    &lt;tbody&gt;
    &lt;?php   foreach($this-&gt;results as $row) { ?&gt;
        &lt;tr class=&quot;view-details&quot;&gt;
            &lt;td&gt;&lt;?=$row-&gt;Id?&gt;&lt;/td&gt;
            &lt;td&gt;&lt;?=$row-&gt;DeptCode?&gt;&lt;/td&gt;
            &lt;td&gt;&lt;?=$row-&gt;DeptName?&gt;&lt;/td&gt;
            &lt;td&gt;&lt;?=$row-&gt;ProjName?&gt;&lt;/td&gt;
        &lt;/tr&gt;
    &lt;?php   }    ?&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;!-- specify path of pagination control under your views in the 3rd param --&gt;
&lt;!-- Adding extra params in the url is specified on the 4th function param here --&gt;
&lt;?=$this-&gt;paginationControl($this-&gt;results, 'Sliding', 'reports/results-pagination.phtml', array('dept_code' =&gt; $this-&gt;dept_code))?&gt;

&lt;!-- html code here --&gt;
</pre>
<p>Inside your pagination file view:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php if ($this-&gt;pageCount): ?&gt;
&lt;div id=&quot;paginationControl&quot;&gt;
&lt;!-- Previous page link --&gt;
&lt;?php if (isset($this-&gt;previous)): ?&gt;
&lt;?php   if($this-&gt;dept_code == '') { ?&gt;
    &lt;a href=&quot;&lt;?= $this-&gt;url(array('page' =&gt; $this-&gt;previous)); ?&gt;&quot;&gt;&amp;lt; Previous&lt;/a&gt; |
&lt;?php   } else { ?&gt;
   &lt;a href=&quot;&lt;?= $this-&gt;url(array('page' =&gt; $this-&gt;previous, 'dept_code' =&gt; $this-&gt;dept_code)); ?&gt;&quot;&gt;&amp;lt; Previous&lt;/a&gt; |
&lt;?php   } ?&gt;
&lt;?php else: ?&gt;
  &lt;span class=&quot;disabled&quot;&gt;&amp;lt; Previous&lt;/span&gt; |
&lt;?php endif; ?&gt; 

&lt;!-- Numbered page links --&gt;
&lt;?php foreach ($this-&gt;pagesInRange as $page): ?&gt;
    &lt;?php if ($page != $this-&gt;current): ?&gt;
    &lt;a href=&quot;&lt;?=$this-&gt;baseUrl()?&gt;/reports/display-results?page=&lt;?=$page?&gt;&lt;?=($this-&gt;dept_code!= '') ? '&amp;dept_code=' . $this-&gt;dept_code: ''?&gt;&quot;&gt;&lt;?= $page; ?&gt;&lt;/a&gt; |
    &lt;?php else: ?&gt;
    &lt;?= $page; ?&gt; |
   &lt;?php endif; ?&gt;
&lt;?php endforeach; ?&gt;

&lt;!-- Next page link --&gt;
&lt;?php if (isset($this-&gt;next)): ?&gt;
  &lt;a href=&quot;&lt;?=$this-&gt;baseUrl()?&gt;/reports/display-results?page=&lt;?=$this-&gt;next?&gt;&lt;?=($this-&gt;dept_code != '') ? '&amp;dept_code=' . $this-&gt;dept_code: ''?&gt;&quot;&gt;Next &amp;gt;&lt;/a&gt;
&lt;?php else: ?&gt;
    &lt;span class=&quot;disabled&quot;&gt;Next &amp;gt;&lt;/span&gt;
&lt;?php endif; ?&gt;
&lt;/div&gt;
&lt;?php endif; ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/php/using-zend-frameworks-paginator-library/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get value of radio button using jQuery</title>
		<link>http://daxpanganiban.com/javascript/get-value-of-radio-button-using-jquery</link>
		<comments>http://daxpanganiban.com/javascript/get-value-of-radio-button-using-jquery#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:52:46 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[radio buttons]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=72</guid>
		<description><![CDATA[Here&#8217;s a tutorial on how to get the value of a checked or selected radio button out of a group of radio buttons:]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a tutorial on how to get the value of a checked or selected radio button out of a group of radio buttons:</p>
<pre class="brush: php; title: ; notranslate">
...
&lt;input type=&quot;radio&quot; name=&quot;sample&quot; value=&quot;1&quot; /&gt;
&lt;input type=&quot;radio&quot; name=&quot;sample&quot; value=&quot;2&quot; checked=&quot;checked&quot; /&gt;
&lt;input type=&quot;radio&quot; name=&quot;sample&quot; value=&quot;3&quot; /&gt;
...

//javascript code

&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
    // displays the selected radio button in an alert box
    alert($('input[name=sample]:checked').val())
--&gt;
&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/javascript/get-value-of-radio-button-using-jquery/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Translate timestamp into words using PHP</title>
		<link>http://daxpanganiban.com/php/translate-timestamp-into-words-using-php</link>
		<comments>http://daxpanganiban.com/php/translate-timestamp-into-words-using-php#comments</comments>
		<pubDate>Thu, 28 May 2009 09:38:55 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[date_diff]]></category>
		<category><![CDATA[php timestamp]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=64</guid>
		<description><![CDATA[Here&#8217;s a nifty class I use for getting the date difference and translating them into words.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a nifty class I use for getting the date difference and translating them into words.</p>
<pre class="brush: php; title: ; notranslate">
 class Date  {

    	public static function date_diff($dateTimeBegin,$dateTimeEnd) {

    		$dateTimeBegin = @strtotime($dateTimeBegin);

    		if($dateTimeBegin === -1) throw new InvalidDate(&quot;$dateTimeBegin: invalid date&quot;);

    		$dateTimeEnd=@strtotime($dateTimeEnd);

    		if($dateTimeEnd === -1) throw new InvalidDate(&quot;$dateTimeEnd: invalid date&quot;);

    		$dif=$dateTimeEnd - $dateTimeBegin;

    		if ($dif == 0) return &quot;&lt; 1 second&quot;;

    		if ($dif == 1) return &quot;1 second&quot;;

    		$return_val = null;
    		$weeks      = floor($dif / 604800);

    		if ($weeks &gt; 0) {
    			$dif -= $weeks * 604800;
    			$return_val .= &quot;$weeks week&quot;.(($weeks&gt;1)?'s':'');
    		}

    		$days = floor($dif / 86400);

    		if ($days &gt; 0) {
    			$dif -= $days * 86400;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$days day&quot;.(($days&gt;1)?'s':'');
    		}

    		$hours = floor($dif/3600);

    		if ($hours &gt; 0) {
    			$dif -= $hours * 3600;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$hours hour&quot;.(($hours&gt;1)?'s':'');
    		}

    		$minutes = floor($dif/60);

    		if ($minutes &gt; 0) {
    			$dif -= $minutes * 60;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$minutes minute&quot;.(($minutes&gt;1)?'s':'');
    		}

    		$seconds = $dif;

    		if ($seconds &gt; 0) {
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$seconds second&quot;.(($seconds&gt;1)?'s':'');
    		}

    		return $return_val;
    	}

    	public static function format_date($date) {
    	    $return_val = null;
    		$weeks      = floor($date / 604800);

    		if ($weeks &gt; 0) {
    			$dif -= $weeks * 604800;
    			$return_val .= &quot;$weeks week&quot;.(($weeks&gt;1)?'s':'');
    		}

    		$days = floor($date / 86400);

    		if ($days &gt; 0) {
    			$date -= $days * 86400;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$days day&quot;.(($days&gt;1)?'s':'');
    		}

    		$hours = floor($date/3600);

    		if ($hours &gt; 0) {
    			$date -= $hours * 3600;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$hours hour&quot;.(($hours&gt;1)?'s':'');
    		}

    		$minutes = floor($date/60);

    		if ($minutes &gt; 0) {
    			$date -= $minutes * 60;
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$minutes minute&quot;.(($minutes&gt;1)?'s':'');
    		}

    		$seconds = $date;

    		if ($seconds &gt; 0) {
    			$return_val .= !is_null($return_val)?' and ':'';
    			$return_val .= &quot;$seconds second&quot;.(($seconds&gt;1)?'s':'');
    		}

    		return $return_val;
    	}
    }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/php/translate-timestamp-into-words-using-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding security to your SVN directory using .htaccess</title>
		<link>http://daxpanganiban.com/server-related-stuff/adding-security-to-your-svn-directory-using-htaccess</link>
		<comments>http://daxpanganiban.com/server-related-stuff/adding-security-to-your-svn-directory-using-htaccess#comments</comments>
		<pubDate>Mon, 25 May 2009 09:02:57 +0000</pubDate>
		<dc:creator>Dax</dc:creator>
				<category><![CDATA[Server Related Stuff]]></category>

		<guid isPermaLink="false">http://daxpanganiban.com/?p=61</guid>
		<description><![CDATA[If you are familiar with SVN, your directory tree of your project or website would be populated by .svn folders. These folders are a security vulnerability since this is where you keep your file revisions and other information regarding the structure and layout of your website. Here&#8217;s a simple solution made by Adam Gotterer that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are familiar with SVN, your directory tree of your project or website would be populated by .svn folders. These folders are a security vulnerability since this is where you keep your file revisions and other information regarding the structure and layout of your website. Here&#8217;s a simple solution made by <a href="http://www.adamgotterer.com/2009/01/26/hacking-the-svn-directory/">Adam Gotterer</a> that protect and secure those directories by using .htaccess:</p>
<p>RewriteRule (\.svn)/(.*?) &#8211; [F,L]</p>
<p>Another good tip is to use SVN export instead of a checkout or rsync.</p>
]]></content:encoded>
			<wfw:commentRss>http://daxpanganiban.com/server-related-stuff/adding-security-to-your-svn-directory-using-htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

