<?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>Chomper Stomping &#187; Uncategorized</title>
	<atom:link href="http://blog.chomperstomp.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chomperstomp.com</link>
	<description>jQuery/JavaScript/CSS 3/HTML 5, Java/PHP/Python/ActionScript, Git, Chrome/Firefox Extensions, Wordpress/Game/iPhone App Development and other random techie tidbits I&#039;ve collected</description>
	<lastBuildDate>Wed, 04 Jan 2012 16:25:52 +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>Diagonal Accordion with jQuery</title>
		<link>http://blog.chomperstomp.com/diagonal-accordion-with-jquery/</link>
		<comments>http://blog.chomperstomp.com/diagonal-accordion-with-jquery/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 01:11:24 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[accordian]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[diagonal]]></category>
		<category><![CDATA[diagonal-accordian]]></category>
		<category><![CDATA[diagonal-accordion]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/?p=439</guid>
		<description><![CDATA[diagonalAccordion is a jQuery plugin that allows for accordion functionality, but in a diagonal angle of your choice! I forked Charles Marshall&#8217;s diagonal-accordion- plugin (on github) which allowed for a 45 degree angle accordion and hacked it to allow for any angle. Use it like: $("#someElement").diagonalaccordion({ acc_width:500, acc_height:300, bar_size:45, speed:'slow', accordion:'.accordion', coverage:4, diagAdjust: 3 }); [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://github.com/cmcculloh/diagonal-accordion-">diagonalAccordion</a> is a jQuery plugin that allows for accordion functionality, but in a diagonal angle of your choice!</p>
<p>I forked Charles Marshall&#8217;s diagonal-accordion- plugin (on github) which allowed for a 45 degree angle accordion and hacked it to allow for any angle.</p>
<p>Use it like:</p>
<p><code>$("#someElement").diagonalaccordion({<br />
    acc_width:500,<br />
    acc_height:300,<br />
    bar_size:45,<br />
    speed:'slow',<br />
    accordion:'.accordion',<br />
    coverage:4,<br />
    diagAdjust: 3<br />
}); </code></p>
<p>Or even just:</p>
<p><code>$("#someElement").diagonalaccordion({<br />
    diagAdjust: 5<br />
}); </code></p>
<p>The only difference between using my plugin and his is the diagAdjust parameter. This parameter allows for incremental adjustments away from 45 degree angles. The bigger number you provide, the shallower the angle gets, until at number 11 it is effectively no angle. then after 11 it starts angling the other way.</p>
<p><a href="http://tinyjs.com/files/projects/diagonal-accordion/index.html">Here&#8217;s the official demo</a> for the original plugin. Like I said, mine works exactly the same way, it just has an extra param to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/diagonal-accordion-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making users confirm they want to leave the page</title>
		<link>http://blog.chomperstomp.com/making-users-confirm-they-want-to-leave-the-page/</link>
		<comments>http://blog.chomperstomp.com/making-users-confirm-they-want-to-leave-the-page/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 12:00:50 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/?p=364</guid>
		<description><![CDATA[Here is how to make a user confirm that they want to browse away from your page: &#60;script> window.onbeforeunload = askconfirm; function askconfirm(){ return "Using the back/forward/refresh buttons can have unexpected results"; } &#60;/script> Using jQuery, you can make it so the user only has to confirm if they are leaving the page for some [...]]]></description>
			<content:encoded><![CDATA[<p>Here is how to make a user confirm that they want to browse away from your page:</p>
<p><code>&lt;script></p>
<p>window.onbeforeunload = askconfirm;</p>
<p>function askconfirm(){<br />
	return "Using the back/forward/refresh buttons can have unexpected results";<br />
}</p>
<p>&lt;/script></code></p>
<p>Using jQuery, you can make it so the user only has to confirm if they are leaving the page for some reason other than clicking an &#8220;a&#8221; link or submitting a form:</p>
<p><code><br />
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"></p>
<p>&lt;html><br />
&lt;head></p>
<p>&lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /></p>
<p>&lt;script src="http://www.google.com/jsapi"></script><br />
&lt;script><br />
  google.load("jquery", "1");<br />
&lt;/script><br />
&lt;script></p>
<p>window.onbeforeunload = askconfirm;<br />
window.doAskConfirm = true;</p>
<p>function askconfirm(){<br />
	if(doAskConfirm){<br />
		return "Using the back/forward/refresh buttons can have unexpected results";<br />
	}<br />
}</p>
<p>&lt;/script><br />
&lt;/head><br />
&lt;body></p>
<p>&lt;a href="">test&lt;/a></p>
<p>&lt;form><br />
&lt;input type="submit" value="submit" /><br />
&lt;/form></p>
<p>&lt;/body><br />
&lt;script><br />
$(document).ready(function(){<br />
	$("a").click(function(){<br />
		window.doAskConfirm = false;<br />
	});<br />
	$("form").submit(function(){<br />
		window.doAskConfirm = false;<br />
	});<br />
});<br />
&lt;/script><br />
&lt;/html><br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/making-users-confirm-they-want-to-leave-the-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New H1N1 Tag Announced by w3</title>
		<link>http://blog.chomperstomp.com/new-h1n1-tag-announced-by-w3/</link>
		<comments>http://blog.chomperstomp.com/new-h1n1-tag-announced-by-w3/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:42:32 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/?p=347</guid>
		<description><![CDATA[Today the w3c announced the addition of the H1N1 tag to the HTML 5 standard. Apparently this is part of the new &#8220;semantic web&#8221;. You should use this tag when discussing the flu, or common worse-than-just-a-cold illnesses. I think this will especially help blind and vision impaired users because they can&#8217;t quickly scan a page [...]]]></description>
			<content:encoded><![CDATA[<p>Today the <a href="http://tinyurl.com/ygrk7ne">w3c</a> announced the addition of the H1N1 tag to the HTML 5 standard. Apparently this is part of the new &#8220;semantic web&#8221;. You should use this tag when discussing the flu, or common worse-than-just-a-cold illnesses. I think this will especially help blind and vision impaired users because they can&#8217;t quickly scan a page like we can and thus aren&#8217;t able to avoid potentially harmful content. They will be able to set their browsers to stay clear of the H1N1 content so they aren&#8217;t exposed to it. </p>
<p>People die or at least become ill every day from over-exposure to H1N1 content. Symptoms include constant temperature taking, obsessive washing of the hands, hyperventilating when someone sneezes nearby and the weird compulsion to sneeze into one&#8217;s elbow instead of one&#8217;s hand (making it absolutely impossible to wash off the germs that you sneeze out).</p>
<p>The w3 feels it will help protect people if all H1N1 content is quarantined. It will help contain the spread of this content throughout the web, and give users a way to better deal with this content. The w3 can be hard to follow sometimes, so I will sum up their recommendation below:</p>
<hr />
<style>
.theCodes{
font-family: monospace;
color: orangered;
}
</style>
<p>4.4.12 The <span class="theCodes">H1N1</span> Element</p>
<div style="background: #0C479D none repeat scroll 0 0 !important;border: thin solid black !important;color: white !important;margin: 8px 0 20px !important;padding: 0.5em !important;font-family: sans-serif !important;display: block !important;width: 500px !important;height: 20px !important;font-size:14px;"><b>Status:</b> <i>Working Draft</i></div>
<p>The <span class="theCodes">h1n1</span> element is a heading.</p>
<p>The first element of heading content in an element of sectioning content represents the heading for that section. Sections pertaining to and related to over-exposed and over-hyped disease and illness related topics should be quarantined by the h1n1 tag so as to allow users to deal with the content in a way of their choosing.</p>
<p>The level attribute, if present, must be a valid integer giving the fear inducing level of the content. The higher the level, the greater danger to users the content represents. User generated content should be treated as level 10 by default. News media content should be treated as level 6 or higher. Medical websites are at least a level 3. Scientific journals, since no one reads them and no one can understand them, are eligible for level 1 ranking.</p>
<p>For example, the following is correct:</p>
<blockquote><p>
&lt;h1n1 level=&#8221;10&#8243;><br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;h1>OMG THE SWINE FLU IS GOING TO KILL US ALL&lt;/h1><br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;p>My brother&#8217;s sisters mom has a daughter who is in daycare and they had to shut down the whole day care because everyone was DIEING from swine flu. The swine flu will kill you because it turns you into a PIG!!!!  YOU GET IT FROM PIGS AND YOU SHOULDN&#8217;T EAT PORK EVAR!&lt;/p><br />
&lt;/h1n1>
</p></blockquote>
<hr />
<p><a href="http://tinyurl.com/2g9mqh">Here is a link to the full w3c recommendation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/new-h1n1-tag-announced-by-w3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sprite Button Style Reset</title>
		<link>http://blog.chomperstomp.com/sprite-button-style-reset/</link>
		<comments>http://blog.chomperstomp.com/sprite-button-style-reset/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:06:35 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css button]]></category>
		<category><![CDATA[CSS Sprite]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[image sprite]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[reset styles]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[Styles]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/sprite-button-style-reset/</guid>
		<description><![CDATA[CSS Style to clear Input type button styles in order to use a CSS Sprite as the image for the button. button{ text-indent: -999px; overflow: hidden; display: block; line-height: 99; border: none; padding: 0; } This is for my own personal reference. Maybe someday I&#8217;ll make a full blown blog post on this&#8230; For now, [...]]]></description>
			<content:encoded><![CDATA[<p>CSS Style to clear Input type button styles in order to use a CSS Sprite as the image for the button.</p>
<p>button{<br />
text-indent: -999px;<br />
overflow: hidden;<br />
display: block;<br />
line-height: 99;<br />
border: none;<br />
padding: 0;<br />
}</p>
<p>This is for my own personal reference. Maybe someday I&#8217;ll make a full blown blog post on this&#8230; For now, I&#8217;ll update this as I need to because I&#8217;m sure I&#8217;m forgetting something&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/sprite-button-style-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Subversion Client (SCPlugin) Installation</title>
		<link>http://blog.chomperstomp.com/mac-subversion-client-scplugin-installation/</link>
		<comments>http://blog.chomperstomp.com/mac-subversion-client-scplugin-installation/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 21:18:07 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Subversion Client]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/mac-subversion-client-scplugin-installation/</guid>
		<description><![CDATA[Installing SCPlugin (Subversion Client) View more documents from Christopher McCulloh.]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_2452160"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/cmcculloh/installing-scplugin-subversion-client" title="Installing SCPlugin (Subversion Client)">Installing SCPlugin (Subversion Client)</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=installinsubversionclient-091108150307-phpapp02&#038;stripped_title=installing-scplugin-subversion-client" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=installinsubversionclient-091108150307-phpapp02&#038;stripped_title=installing-scplugin-subversion-client" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/cmcculloh">Christopher McCulloh</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/mac-subversion-client-scplugin-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone programming</title>
		<link>http://blog.chomperstomp.com/iphone-programming/</link>
		<comments>http://blog.chomperstomp.com/iphone-programming/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 22:46:43 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Course]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/iphone-programming/</guid>
		<description><![CDATA[I&#8217;m working on a mobile computing course for a local college (which explains the lack of posts recently). It&#8217;s going to be an introduction to Objective-C and iPhone SDK followed by an introduction to the PhoneGap library. Check it out! I&#8217;m posting lectures etc as I finish them. Come spring the whole thing could be [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a mobile computing course for a local college (which explains the lack of posts recently). It&#8217;s going to be an introduction to Objective-C and iPhone SDK followed by an introduction to the PhoneGap library.</p>
<p><a href="http://n300.chomperstomp.com">Check it out</a>! I&#8217;m posting lectures etc as I finish them. Come spring the whole thing could be locked down behind a password wall and only available to students, but for now, feel free to let me know what you think&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/iphone-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preg_*</title>
		<link>http://blog.chomperstomp.com/preg_/</link>
		<comments>http://blog.chomperstomp.com/preg_/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 14:47:09 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/?p=144</guid>
		<description><![CDATA[Regular expressions are fun! (repeat 5x, or until you believe it) I&#8217;m working on a webbot, and right now I need it to drop all the HTML and just leave me with the text. So I wrote this regex: /&#60;.*&#62;/ (explanation: start match at &#8220;&#60;&#8221; look for any character &#8220;.&#8221; any number of times &#8220;*&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Regular expressions are fun! (repeat 5x, or until you believe it)</p>
<p>I&#8217;m working on a webbot, and right now I need it to drop all the HTML and just leave me with the text. So I wrote this regex:</p>
<p>/&lt;.*&gt;/</p>
<p>(explanation: start match at &#8220;&lt;&#8221; look for any character &#8220;.&#8221; any number of times &#8220;*&#8221; and stop when you come to &#8220;&gt;&#8221; (but really, it goes all the way to the very last &#8220;&gt;&#8221; it finds and stops).</p>
<p>Of course, it then matched everything from the first &lt; all the way to the last &gt;, dropping all text that was properly encapsulated by HTML tags.</p>
<p>So, next I wrote this:</p>
<p>/&lt;[a-zA-Z\t "=0-9_\-\\/]*&gt;/</p>
<p>(explanation: start at &#8220;&lt;&#8221; find any character I could think of except for &gt; &#8220;[a-zA-Z\t "=0-9_\-\\/]&#8221; any number of times &#8220;*&#8221; and then stop when you come to &#8220;&gt;&#8221; (stops at the first &gt;))</p>
<p>Wow&#8230; that&#8217;s&#8230; insanity&#8230; I probably even missed something. It did, however, only drop the HTML tags themselves. However, it&#8217;s nasty looking.</p>
<p>I then realized I could just write this:</p>
<p>/&lt;[^&gt;]*&gt;/</p>
<p>(explanation: start at &#8220;&lt;&#8221; find any character except &gt; &#8220;[^&gt;]&#8221; any number of times &#8220;*&#8221; and stop as soon as you come to &#8220;&gt;&#8221;)</p>
<p>Yeah, it looks like some sort of ascii art of &#8220;The Cheat&#8221; or something, but it very elegantly finds the beginning and ending of a tag. See, regex <em>is</em> fun!</p>
<p>Here is the final code btw:</p>
<p>$htmlSearch = &#8216;/&lt;[^&gt;]*&gt;/&#8217;;<br />
$cleanLine = preg_replace($htmlSearch, &#8220;&#8221;, $line);</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/preg_/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>experts-exchange looks like a cheap hooker</title>
		<link>http://blog.chomperstomp.com/experts-exchange-is-a-cheap-hooker/</link>
		<comments>http://blog.chomperstomp.com/experts-exchange-is-a-cheap-hooker/#comments</comments>
		<pubDate>Fri, 16 May 2008 14:46:40 +0000</pubDate>
		<dc:creator>Christopher McCulloh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[experts-exchange]]></category>
		<category><![CDATA[firefox extensions]]></category>

		<guid isPermaLink="false">http://blog.chomperstomp.com/?p=118</guid>
		<description><![CDATA[You know what I hate? experts-exhange.com. Why? Because I get all excited when I type a question into Google, and then see the answer right there in the search results, and click on it, and then -bam!- I&#8217;m experts-exchanged! (That is, I&#8217;m taken to a web page with my question clearly displayed, and then a [...]]]></description>
			<content:encoded><![CDATA[<p>You know what I hate? experts-exhange.com.</p>
<p>Why? Because I get all excited when I type a question into Google, and then see the answer right there in the search results, and click on it, and then -bam!- I&#8217;m experts-exchanged! (That is, I&#8217;m taken to a web page with my question clearly displayed, and then a gray area that says, &#8220;to see the answer pay $50/sell us your unborn children/renounce your religion/vote democrat/eat tomatoes/some other completely unacceptable thing that you don&#8217;t want to do but can think of to put here for them to have asked you to do&#8221;)</p>
<p>It&#8217;s like&#8230; you could call it&#8230; Let&#8217;s say you&#8217;re a teenage boy on prom-night, and your going in for your first&#8230; kiss&#8230; and all the sudden the girl&#8217;s dad busts in the room and throws a burlap sack over his daughter and carries her out into the hall and then comes back in and demands $50 for a subscription to continue. You got experts-exchanged sucka!!!!</p>
<p>I&#8217;m looking for a simple answer, not looking to get married to a website. Just give me the answer, and then if I find you useful enough to donate I will. Then you have earned my respect, and made me excited to support your service.</p>
<p>Gargamel! It makes me angry!</p>
<p>So, do I pony up and pay the pimp? Or do I go find a site that wants me for me and not for my money? I&#8217;m not going to go to a whore. Instead I&#8217;ll go in search of a mutual relationship, and if I&#8217;m satisfied I&#8217;ll make an honest site out of her and donate.</p>
<p>Today I went in for the kiss one more time only to have a hand shoved in my face with a simultaneous reach around for my wallet. Experts-exchanged! NO! NO MORE HOOKER SITES!!!! What am I going to do about it? KILL THEM!!!! Er&#8230; well&#8230; just&#8230; not really, I&#8217;m just going to make them disappear.</p>
<p>I downloaded the <a href="http://www.customizegoogle.com/">customize-google</a> browser extension for Firefox and set a filter to weed out anything related to experts-echange.com. Now I will never have to live in fear of being experts-exchanged again!</p>
<p>Here&#8217;s a screen-shot of me not ever having to see that awful dirty prostitute in my search results again:</p>
<p><a href="http://blog.chomperstomp.com/wp-content/uploads/2008/05/experts-exchange.png"><img class="alignnone size-medium wp-image-120" title="experts-exchange" src="http://blog.chomperstomp.com/wp-content/uploads/2008/05/experts-exchange-300x240.png" alt="" width="300" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chomperstomp.com/experts-exchange-is-a-cheap-hooker/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

