<?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>TechPitcher &#187; Javascript</title>
	<atom:link href="http://www.techpitcher.com/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techpitcher.com</link>
	<description></description>
	<lastBuildDate>Mon, 20 Dec 2010 10:28:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to prevent browser caching</title>
		<link>http://www.techpitcher.com/how-to-prevent-browser-caching.html</link>
		<comments>http://www.techpitcher.com/how-to-prevent-browser-caching.html#comments</comments>
		<pubDate>Thu, 13 Nov 2008 18:51:57 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=88</guid>
		<description><![CDATA[There are many ways you can prevent browser caching.
One of them is to include following meta tags, place these tags in head section of html document.

&#60;META HTTP-EQUIV=&#34;Pragma&#34; CONTENT=&#34;no-cache&#34;&#62;
&#60;META HTTP-EQUIV=&#34;Expires&#34; CONTENT=&#34;-1&#34;&#62;

For ASP pages use following script at the extreme beginning of the page

&#60;% Response.CacheControl = &#34;no-cache&#34; %&#62;
&#60;% Response.AddHeader &#34;Pragma&#34;, &#34;no-cache&#34; %&#62;
&#60;% Response.Expires = -1 %&#62;

In case [...]]]></description>
			<content:encoded><![CDATA[<p>There are many ways you can prevent browser caching.<br />
One of them is to include following meta tags, place these tags in head section of html document.</p>
<pre class="brush: xml;">
&lt;META HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;&gt;
&lt;META HTTP-EQUIV=&quot;Expires&quot; CONTENT=&quot;-1&quot;&gt;
</pre>
<p>For ASP pages use following script at the extreme beginning of the page</p>
<pre class="brush: java;">
&lt;% Response.CacheControl = &quot;no-cache&quot; %&gt;
&lt;% Response.AddHeader &quot;Pragma&quot;, &quot;no-cache&quot; %&gt;
&lt;% Response.Expires = -1 %&gt;
</pre>
<p>In case of JSP pages use following code</p>
<pre class="brush: java;">
&lt;%
response.setHeader(&quot;Cache-Control&quot;,&quot;no-cache&quot;);
response.setHeader(&quot;Pragma&quot;,&quot;no-cache&quot;);
response.setDateHeader (&quot;Expires&quot;, -1);
%&gt;
</pre>
<p>If you are generating your response in java or some other languages then you need to set following parameters in response header.</p>
<pre class="brush: java;">
response.addHeader(&quot;cache-control&quot;, &quot;no-cache&quot;);
response.addHeader(&quot;pragma&quot;, &quot;no-cache&quot;);
response.addHeader(&quot;expires&quot;, &quot;-1&quot;);
</pre>
<p>All of the above method works on the response of the particular page and tell browser not the cache the response.</p>
<p>There is another way of telling browser to make a fresh request and don’t use the cached content for the page if any. This is done by appending some random characters to requested url. Below is sample code</p>
<pre class="brush: jscript;">
&lt;script&gt;
var url = &quot;http://techpitcher.com&quot;;
url += &quot;?preventCache=&quot;+ Math.floor(Math.random()*100000);
&lt;/script&gt;
</pre>
<p>This will create a random url every time and won’t allow browser to use cache content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/how-to-prevent-browser-caching.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery &#8211; A lightweight JavaScript Library</title>
		<link>http://www.techpitcher.com/jquery-a-lightweight-javascript-library.html</link>
		<comments>http://www.techpitcher.com/jquery-a-lightweight-javascript-library.html#comments</comments>
		<pubDate>Sat, 25 Oct 2008 17:51:51 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=79</guid>
		<description><![CDATA[jQuery is JavaScript library that simplifies lots of work done in JavaScript. jQuery makes HTML document traverse easy. It can provide ajax support to your website. There are lots of site which provides jQuery plugins (plugin for validation, animation, cookies, events). The most important point to remember is that by using jQuery you can easily [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is JavaScript library that simplifies lots of work done in JavaScript. jQuery makes HTML document traverse easy. It can provide ajax support to your website. There are lots of site which provides jQuery plugins (plugin for validation, animation, cookies, events). The most important point to remember is that by using jQuery you can easily get multiple browser compatibility.<br />
There are three downloads available<br />
   1. Minified and Gzipped (Used in production)<br />
   2. Packed version (This version is not gzipped)<br />
   3. Uncompressed (Used in testing and learning)<br />
Reference<br />
<a href="http://jquery.com">http://jquery.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/jquery-a-lightweight-javascript-library.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fiddler: Http debugging proxy</title>
		<link>http://www.techpitcher.com/fiddler-http-debugging-proxy.html</link>
		<comments>http://www.techpitcher.com/fiddler-http-debugging-proxy.html#comments</comments>
		<pubDate>Wed, 15 Oct 2008 15:32:16 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Fiddler]]></category>
		<category><![CDATA[J2ee]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=68</guid>
		<description><![CDATA[Fiddler is an HTTP debugging proxy that logs all HTTP traffic between your computer and the Internet. Fiddler is simpler in use and provides lots of information regarding the data flow.
    1.	It allows you setup break points on incoming and outgoing request/response.
    2.	Modify incoming and outgoing response/ request to [...]]]></description>
			<content:encoded><![CDATA[<p>Fiddler is an HTTP debugging proxy that logs all HTTP traffic between your computer and the Internet. Fiddler is simpler in use and provides lots of information regarding the data flow.<br />
    1.	It allows you setup break points on incoming and outgoing request/response.<br />
    2.	Modify incoming and outgoing response/ request to test some edge cases.<br />
    3.	Gives complete information about request, response headers.<br />
    4.	Provides cookies information.<br />
    5.	Round trip time taken by request.<br />
    6.	Can simulates slow internet connect speed. It helps in testing web applications in slow internet connections.<br />
Click <a href="http://www.fiddler2.com/Fiddler2/version.asp" target="_blank">here</a> to download fiddler<br />
<br/><br />
<a href='http://techpitcher.com/wp-content/uploads/2008/10/fiddler.jpg'><img src="http://techpitcher.com/wp-content/uploads/2008/10/fiddler.jpg" alt="" title="fiddler" width="480" height="242" class="aligncenter size-full wp-image-69" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/fiddler-http-debugging-proxy.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String Number conversion in JavaScript</title>
		<link>http://www.techpitcher.com/string-number-conversion-in-javascript.html</link>
		<comments>http://www.techpitcher.com/string-number-conversion-in-javascript.html#comments</comments>
		<pubDate>Wed, 15 Oct 2008 03:28:41 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=67</guid>
		<description><![CDATA[Number to String conversion
To convert a number to string you can append an empty string or you can use toString() method. toString() method is not supported by older browsers.

var num = 30;
num = 30 * 5; // 150
str = num + &#34;&#34;; // or
str = num.toString();

String to number conversion
To convert a String to number, you [...]]]></description>
			<content:encoded><![CDATA[<h4>Number to String conversion</h4>
<p>To convert a number to string you can append an empty string or you can use <em>toString()</em> method. <em>toString()</em> method is not supported by older browsers.</p>
<pre class="brush: jscript;">
var num = 30;
num = 30 * 5; // 150
str = num + &quot;&quot;; // or
str = num.toString();
</pre>
<h4>String to number conversion</h4>
<p>To convert a String to number, you can perform arithmetic operations like (*, / or -) such that it doesn&#8217;t alter the given string value. You might have noticed that I have not included &#8216;+&#8217; in the above list this is because that JavaScript uses &#8216;+&#8217; sign for string concatenation so adding &#8216;123&#8242; + 0 will result into &#8216;1230&#8242; and not 123. We can also user <code>Number()</code> function to perform the conversion. This is bit slower than any of the above options because this make explicit call to a function to perform conversion. But if you are using this option then it makes very clear that what your code is intended to do. So in my opinion if you are not worried about the performance then you can use <code>Number()</code> function as it will make code very clear.</p>
<pre class="brush: jscript;">
var str = '123'
num = str * 1;
num = str - 0;
num = str/ 0;
num = Number(str);
</pre>
<p>If you try any of the above method on a text field which doesn&#8217;t contain valid numeric fields then you will get an &#8216;NaN&#8217; as the result. So be careful <img src='http://www.techpitcher.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/string-number-conversion-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Enable/Disable Input element in JQuery</title>
		<link>http://www.techpitcher.com/how-to-enabledisable-input-element-in-jquery.html</link>
		<comments>http://www.techpitcher.com/how-to-enabledisable-input-element-in-jquery.html#comments</comments>
		<pubDate>Mon, 29 Sep 2008 18:10:55 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=59</guid>
		<description><![CDATA[To disable  input elements (checkbox, radio button, text box, button etc) in jquery, you need to set disabled attribute. 

// check box
$(&#34;#check_box_id&#34;).attr(&#34;disabled&#34;, &#34;disabled&#34;);
// radio button
$(&#34;#radio_btn_id&#34;).attr(&#34;disabled&#34;, &#34;disabled&#34;);
// Text box
$(&#34;#text_box_id&#34;).attr(&#34;disabled&#34;, &#34;disabled&#34;);
// button
$(&#34;#btn_id&#34;).attr(&#34;disabled&#34;, &#34;disabled&#34;);

To Enable the input elements (checkbox, radio button, text box, button etc) , we need to remove disabled attribute. This can be done in [...]]]></description>
			<content:encoded><![CDATA[<p>To disable  input elements (checkbox, radio button, text box, button etc) in jquery, you need to set <code>disabled</code> attribute. </p>
<pre class="brush: jscript;">
// check box
$(&quot;#check_box_id&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);
// radio button
$(&quot;#radio_btn_id&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);
// Text box
$(&quot;#text_box_id&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);
// button
$(&quot;#btn_id&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);
</pre>
<p>To Enable the input elements (checkbox, radio button, text box, button etc) , we need to remove <code>disabled</code> attribute. This can be done in the following way.</p>
<pre class="brush: jscript;">
// check box
$(&quot;#check_box_id&quot;).removeAttr(&quot;disabled&quot;);
// radio button
$(&quot;#radio_btn_id&quot;).removeAttr(&quot;disabled&quot;);
// Text box
$(&quot;#text_box_id&quot;).removeAttr(&quot;disabled&quot;);
// button
$(&quot;#btn_id&quot;).removeAttr(&quot;disabled&quot;);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/how-to-enabledisable-input-element-in-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Initializing Array in JavaScript</title>
		<link>http://www.techpitcher.com/initializing-array-in-javascript.html</link>
		<comments>http://www.techpitcher.com/initializing-array-in-javascript.html#comments</comments>
		<pubDate>Fri, 26 Sep 2008 18:06:46 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=43</guid>
		<description><![CDATA[There are many ways we can initialize the Array in the JavaScript. JavaScript is a loosely types language. This means you need not worry about data type while storing them in Array. It can store any data type in a single array. Also you don&#8217;t need to provide the size of Array at the time [...]]]></description>
			<content:encoded><![CDATA[<p>There are many ways we can initialize the Array in the JavaScript. JavaScript is a loosely types language. This means you need not worry about data type while storing them in Array. It can store any data type in a single array. Also you don&#8217;t need to provide the size of Array at the time of creation of Array. JavaScript will automatically adjust size of array according to the requirement. You can create Array by following declaration.<br />
<em>var array = [];</em></p>
<p>Another way of creating Array in JavaScript is<br />
<em>var secondArray = new Array(5);</em><br />
This will create an Array of length 5.</p>
<p><strong>Initializing an Array</strong><br />
You can initialize Array with pre defined data.<br />
<em>var dataArray = ['Tech', 'Pitcher', 'And', 'You'];</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/initializing-array-in-javascript.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Restoring Conventional Browser Navigation to AJAX Applications</title>
		<link>http://www.techpitcher.com/restoring-conventional-browser-navigation-to-ajax-applications.html</link>
		<comments>http://www.techpitcher.com/restoring-conventional-browser-navigation-to-ajax-applications.html#comments</comments>
		<pubDate>Thu, 10 Jul 2008 18:16:02 +0000</pubDate>
		<dc:creator>Gautam</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=34</guid>
		<description><![CDATA[This article was result of my experience in developing Rich Internet application. It is depiction of my fight against the pitfalls of AJAX application. User is happy if you give him a better usability and performance but he is not aware about the underline technologies. If all of the sudden the default browser navigation stops [...]]]></description>
			<content:encoded><![CDATA[<p>This article was result of my experience in developing Rich Internet application. It is depiction of my fight against the pitfalls of AJAX application. User is happy if you give him a better usability and performance but he is not aware about the underline technologies. If all of the sudden the default browser navigation stops to work in the desired fashion, user will start to panic. The developer starts getting issues like my back button is not working, clicking refresh lost my work done, so and so forth. The first reaction of developer is this is AJAX world and it act this way only, what can I do? Then we have to look for the ways of supporting default browser navigation in AJAX world. There are few hacks for providing supporting for default browser&#8217;s navigation using javascript but AJAX provide more systematic way of doing this. In my article I will explain how to use DOJO history APIs to cope up with one of the pitfall of AJAX application.<br />
To read the article please follow the <a href="http://www.devx.com/webdev/Article/35549/" mce_href="http://www.devx.com/webdev/Article/35549/">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/restoring-conventional-browser-navigation-to-ajax-applications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounding number in javascript up to some decimal point</title>
		<link>http://www.techpitcher.com/rounding-number-in-javascript-up-to-some-decimal-point.html</link>
		<comments>http://www.techpitcher.com/rounding-number-in-javascript-up-to-some-decimal-point.html#comments</comments>
		<pubDate>Fri, 30 May 2008 12:33:23 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=13</guid>
		<description><![CDATA[If we want to round a number up to certain decimal point, in that case Math.round(x) won&#8217;t work . For example if x = 5.67, then Math.round(x) will be 6. In certain cases we want rounding up to some decimal places (y). To do that We need to do the following 1. Multiply given number [...]]]></description>
			<content:encoded><![CDATA[<p>If we want to round a number up to certain decimal point, in that case Math.round(x) won&#8217;t work . For example if x = 5.67, then Math.round(x) will be 6. In certain cases we want rounding up to some decimal places (y). To do that We need to do the following 1. Multiply given number by 10^y 2. Now round the result using Math.round. e.g. Math.round(x*10^y) 3. Divide number by 10^y.  If x = 10.567 and we want to format x up to two points of decimal. We need to do the following
<pre class="brush: jscript;">var result = Math.round(x * 100)/100;</pre>
<p> And the output will be 10.57</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/rounding-number-in-javascript-up-to-some-decimal-point.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Validating date in Java Script</title>
		<link>http://www.techpitcher.com/validating-date-in-java-script.html</link>
		<comments>http://www.techpitcher.com/validating-date-in-java-script.html#comments</comments>
		<pubDate>Thu, 29 Nov 2007 17:35:40 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=17</guid>
		<description><![CDATA[There are lots of method available which uses REG EXP to validate date and are bit complicated to understand. Here is simple and small date validator.

function isValidDate(day, month, year){
var date;
//Get a Date object based on the given day, month and year
//months start at 0 (0-11 instead of 1-12)
date = new Date(year,month-1,day);
return ((day == date.getDate()) &#38;&#38; [...]]]></description>
			<content:encoded><![CDATA[<p>There are lots of method available which uses REG EXP to validate date and are bit complicated to understand. Here is simple and small date validator.</p>
<pre class="brush: jscript;">
function isValidDate(day, month, year){
var date;
//Get a Date object based on the given day, month and year
//months start at 0 (0-11 instead of 1-12)
date = new Date(year,month-1,day);
return ((day == date.getDate()) &amp;&amp; (month == (date.getMonth()+1))
&amp;&amp; (year == date.getFullYear()));
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/validating-date-in-java-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun turns JavaScript into Java. Google turns Java into JavaScript</title>
		<link>http://www.techpitcher.com/sun-turns-javascript-into-java-google-turns-java-into-javascript.html</link>
		<comments>http://www.techpitcher.com/sun-turns-javascript-into-java-google-turns-java-into-javascript.html#comments</comments>
		<pubDate>Fri, 16 Nov 2007 17:32:10 +0000</pubDate>
		<dc:creator>Amit</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://techpitcher.com/?p=16</guid>
		<description><![CDATA[JavaScript is said to be World&#8217;s Most Misunderstood Programming Language. Why is  the language so misunderstood? It may be the name JavaScript  . It doesn’t have  any relation with Java.
No programming language is perfect. JavaScript has  many errors like overloading of +, reserved word policies are too rigid,  Semicolon insertion [...]]]></description>
			<content:encoded><![CDATA[<p>JavaScript is said to be World&#8217;s Most Misunderstood Programming Language. Why is  the language so misunderstood? It may be the name JavaScript <img src='http://www.techpitcher.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . It doesn’t have  any relation with Java.<br />
No programming language is perfect. JavaScript has  many errors like overloading of +, reserved word policies are too rigid,  Semicolon insertion and some more.</p>
<p>When I started working on JavaScript,  I felt it an easy language but sooner I was facing many issues like browser  compatibility, memory leaks and many other common problems.<br />
There are many  sites discussing about all these. I would refer few of them in this  post.</p>
<p>Being a scripting language, support of object-oriented programming  is quite impressive. Even though there are no classes and instances, there are  objects, prototypes, and implicit inheritance.<br />
Browser compatibility issue  can be handled using object level detection (Don’t check browsers rather check  objects).<br />
Memory leak is a challenging problem. The browsers try to work  well with broken web, making it look fine and behave well. This is a very  difficult task. If browser fails to collect the garbage that we left, is a buggy  browser (memory leak). Most browsers don&#8217;t do a very good job about memory leak.</p>
<p>I would like to say thanks to Google and many other companies which are  writing JavaScript libraries and making JavaScript hot. A good JavaScript  Compiler would definitely make JavaScript library implementation easier. Check  Google’s web development toolkit.<br />
Mozilla&#8217;s (Venkman) JavaScript engine has  built-in support for debugging, and thus can provide powerful tools for  JavaScript developers.</p>
<p>Check following links</p>
<p>if one closure is  buggy, then use more closures<br />
<a href="http://www.bazon.net/mishoo/articles.epl?art_id=824">http://www.bazon.net/mishoo/articles.epl?art_id=824</a></p>
<p>Memory Leaks<br />
<a href="http://talideon.com/weblog/2005/03/js-memory-leaks.cfm"></p>
<p>http://talideon.com/weblog/2005/03/js-memory-leaks.cfm</a></p>
<p>Javascript  library<br />
<a href="http://www.thingsthemselves.com/%7Ejeff/computing/jslib/">http://www.thingsthemselves.com/~jeff/computing/jslib/</a><br />
<a href="http://www.howtocreate.co.uk/jslibs/">http://www.howtocreate.co.uk/jslibs/</a></p>
<p>The  Event Object<br />
<a href="http://www.webdevelopersjournal.com/articles/jsevents3/jsevents3.html">http://www.webdevelopersjournal.com/articles/jsevents3/jsevents3.html</a></p>
<p>Obejcts<br />
<a href="http://developer.mozilla.org/">http://developer.mozilla.org/</a></p>
<p>Google  JavaScript APIs<br />
<a href="http://code.google.com/apis.html">http://code.google.com/apis.html</a></p>
<p>DISCLAIMER<br />
This  Blog includes links to other sites operated by third parties. These links are  provided as a convenience to you and as an additional avenue of access to the  information contained therein. I have not reviewed all of the information on  other sites and are not responsible for the content of any other sites or any  products or services that may be offered through other sites. If you are the  owner of any of these links and have any objection please do let me know I’ll  remove the link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techpitcher.com/sun-turns-javascript-into-java-google-turns-java-into-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

