<?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"
	>

<channel>
	<title>Clicker</title>
	<atom:link href="http://www.onemogin.com/clicker/feed" rel="self" type="application/rss+xml" />
	<link>http://www.onemogin.com/clicker</link>
	<description>Make some clickin' charts.</description>
	<pubDate>Fri, 18 Jul 2008 23:03:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Clicker 2.0 And You</title>
		<link>http://www.onemogin.com/clicker/42-clicker-20-and-you.html</link>
		<comments>http://www.onemogin.com/clicker/42-clicker-20-and-you.html#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:03:39 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/?p=42</guid>
		<description><![CDATA[Today I released version 1.99_01 to the CPAN.  Version 2.0 is substantially different &#8212; API wise &#8212; from 1.x.  I&#8217;ll cover a few of the ways here.

No More Simple
Firstly, I removed Chart::Clicker::Simple because the core module is more simple than Simple.pm was.  Here&#8217;s an example of the new API.


use Chart::Clicker;
use Chart::Clicker::Data::Series;
use Chart::Clicker::Data::DataSet;
use [...]]]></description>
			<content:encoded><![CDATA[<p>Today I released version 1.99_01 to <a href="http://www.cpan.org">the CPAN</a>.  Version 2.0 is substantially different &mdash; API wise &mdash; from 1.x.  I&#8217;ll cover a few of the ways here.</p>

<p><h3>No More Simple</h3>
<p>Firstly, I removed Chart::Clicker::Simple because the core module is more simple than Simple.pm was.  Here&#8217;s an example of the new API.</p></p>


<div class="wp_syntax"><div class="code"><pre class="perl"><span style="color: #000000; font-weight: bold;">use</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Data</span><span style="color: #339933;">::</span><span style="color: #006600;">Series</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Data</span><span style="color: #339933;">::</span><span style="color: #006600;">DataSet</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Renderer</span><span style="color: #339933;">::</span><span style="color: #006600;">Point</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$cc</span> <span style="color: #339933;">=</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$series</span> <span style="color: #339933;">=</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Data</span><span style="color: #339933;">::</span><span style="color: #006600;">Series</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #009900;">&#40;</span>
    <span style="color: #000066;">keys</span>    <span style="color: #339933;">=&gt;</span> <span style="color: #009900;">&#91;</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">6</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">7</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">8</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">9</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span> <span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
    <span style="color: #000066;">values</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #009900;">&#91;</span> <span style="color: #cc66cc;">42</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">25</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">86</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">23</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">19</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">103</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">12</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">54</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">9</span> <span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$ds</span> <span style="color: #339933;">=</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Data</span><span style="color: #339933;">::</span><span style="color: #006600;">DataSet</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #009900;">&#40;</span>series <span style="color: #339933;">=&gt;</span> <span style="color: #009900;">&#91;</span> <span style="color: #0000ff;">$series</span> <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #0000ff;">$cc</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">add_to_datasets</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$ds</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #0000ff;">$cc</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">prepare</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #0000ff;">$cc</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">draw</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #0000ff;">$cc</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">write</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'/Users/gphat/foo.png'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


<h3>Contexts</h3>

<p><p>Aside from the <em>&agrave; la carte</em> creation of charts, the major complication in Clicker&#8217;s API has always been the handling of multiple axes.  My solution to this has been the introduction of contexts.  A context is a domain axis, a range axis and a renderer.  By default there is a single context called &#8216;default&#8217;.  All datasets added to a chart are associated with the default context unless you specify otherwise, like so:</p></p>


<div class="wp_syntax"><div class="code"><pre class="perl"><span style="color: #0000ff;">$dataset</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">context</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">'sales'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


<p>You can create new contexts easily.</p>


<div class="wp_syntax"><div class="code"><pre class="perl"><span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$ctx</span> <span style="color: #339933;">=</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Context</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span><span style="color: #009900;">&#40;</span>
	name <span style="color: #339933;">=&gt;</span> <span style="color: #ff0000;">'sales'</span><span style="color: #339933;">,</span>
	renderer <span style="color: #339933;">=&gt;</span> Chart<span style="color: #339933;">::</span><span style="color: #006600;">Clicker</span><span style="color: #339933;">::</span><span style="color: #006600;">Renderer</span><span style="color: #339933;">::</span><span style="color: #006600;">Area</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">new</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #0000ff;">$clicker</span><span style="color: #339933;">-&gt;</span><span style="color: #006600;">add_to_contexts</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$ctx</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


<p>Each context will be charted on unique axes and with whatever renderer it is set to.  The upcoming cookbook will details advanced ways to change this behavior, but the default will over most people&#8217;s use cases.</p>

<p><h3>Layout</h3>
<p>Clicker previously required you to &#8216;add&#8217; all the components of the chart manually.  No longer!  In removing Simple.pm I had Clicker simply add a set of default components.  I&#8217;ll be working on a Cookbook for various customizations soon.</p>
<h3>Under The Hood</h3>
<p>The first major contribution to the 2.0 codebase was a patch from <a href="http://search.cpan.org/~ash/">Ash Berlin</a> that used Cairo&#8217;s clipping to replace the multiple-surface method that I had been using the past.</p>
<p>During <a href="http://conferences.mongueurs.net/yn2008/">YAPC::NA</a> I added PDF and PostScript support and had a discussions with <a href="http://search.cpan.org/~groditi/">Guillermo</a> and <a href="http://search.cpan.org/~stevan/">Stevan</a> that pushed me to create a new stack underneath Clicker to facilitate some future features.  I detailed these modules in <a href="http://www.onemogin.com/blog/582-pixels-and-painting-my-recent-cpan-releases.html">a post on my personal blog</a>.</p>
<p>In addition to the above Clicker is now <a href="http://www.iinteractive.com/moose">Moose</a> through-and-through, making extensive use of <a href="http://search.cpan.org/dist/MooseX-AttributeHelpers/">MooseX::AttributeHelpers</a>.</p>
<h3>2.0</h3>
<p>I intend to release 2.0 soon, but there are still a few small bugs and missing features I want to complete.  I also want to get started on the aforementioned Cookbook so that users can easily find out how to do advanced rendering.  Stay tuned!</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/42-clicker-20-and-you.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 2.0 Examples</title>
		<link>http://www.onemogin.com/clicker/40-version-20-examples.html</link>
		<comments>http://www.onemogin.com/clicker/40-version-20-examples.html#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:22:41 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/40-version-20-examples.html</guid>
		<description><![CDATA[As a test tonight I generated new example images for the examples page. I found quite a few bugs to fix and ultimately generated some nice examples to drool over.
]]></description>
			<content:encoded><![CDATA[<p>As a test tonight I generated new example images for the <a href="http://www.onemogin.com/clicker/examples">examples page</a>. I found quite a few bugs to fix and ultimately generated some nice examples to drool over.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/40-version-20-examples.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.4.0</title>
		<link>http://www.onemogin.com/clicker/39-version-140.html</link>
		<comments>http://www.onemogin.com/clicker/39-version-140.html#comments</comments>
		<pubDate>Sat, 20 Oct 2007 22:38:12 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/39-version-140.html</guid>
		<description><![CDATA[I&#8217;ve mentioned all the cool stuff in posts already, but here&#8217;s the list:


 Add &#8216;baseline&#8217; attribute to Axis, Bar uses this to know when to draw &#8216;up&#8217; or &#8216;down&#8217;.
 Fix incorrect coloring of text on customized axes.
 Add ticklabels to axes and expose it in Simple.
 Make axes and labels cope with letters that drop [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned all the cool stuff in posts already, but here&#8217;s the list:</p>

<p><ul>
 <li>Add &#8216;baseline&#8217; attribute to Axis, Bar uses this to know when to draw &#8216;up&#8217; or &#8216;down&#8217;.</li>
 <li>Fix incorrect coloring of text on customized axes.</li>
 <li>Add tick<em>labels to axes and expose it in Simple.</li>
 <li>Make axes and labels cope with letters that drop below the baseline.</li>
 <li>Mooseify renderer options into attributes (options method is no longer used)</li>
 <li>Fix warnings in tests.</li>
 <li>Line renderer shapes default to filled, shape</em>stroke provides method for setting a stroke.</li>
</ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/39-version-140.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>More Bar Renderer Improvements</title>
		<link>http://www.onemogin.com/clicker/38-more-bar-renderer-improvements.html</link>
		<comments>http://www.onemogin.com/clicker/38-more-bar-renderer-improvements.html#comments</comments>
		<pubDate>Mon, 15 Oct 2007 23:35:14 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/38-more-bar-renderer-improvements.html</guid>
		<description><![CDATA[The Bar renderer has always been the red-headed stepchild of Clicker, but lately I&#8217;ve been paying it a lot more attention.  Tonight I&#8217;ve added the ability to set the baseline of an Axis (at say, 0) so that Renderers can choose to display values differently if they fall above or below the baseline.  [...]]]></description>
			<content:encoded><![CDATA[<p>The Bar renderer has always been the red-headed stepchild of Clicker, but lately I&#8217;ve been paying it a lot more attention.  Tonight I&#8217;ve added the ability to set the baseline of an Axis (at say, 0) so that Renderers can choose to display values differently if they fall above or below the baseline.  Here&#8217;s the results for the Bar renderer:</p>

<p><img src="http://www.onemogin.com/clicker/images/base-test.png">
<p>I need to update the StackedBar renderer and get the axes ticks to take the baseline into effect before I can release the feature.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/38-more-bar-renderer-improvements.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.3.0</title>
		<link>http://www.onemogin.com/clicker/37-version-130.html</link>
		<comments>http://www.onemogin.com/clicker/37-version-130.html#comments</comments>
		<pubDate>Mon, 15 Oct 2007 20:39:13 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/37-version-130.html</guid>
		<description><![CDATA[Some fixes came out of my time at PPW over the weekend.  I also finally figured out how to do &#8216;real&#8217; svg output!


 Sort of fix broken bar renderer
 Add hideaxes and hidegrid to Simple
 StackedBar Renderer
 Fix busted min/max of 0 on ranges
 Real SVG support

]]></description>
			<content:encoded><![CDATA[<p>Some fixes came out of my time at <a href="htttp://pghpw.org">PPW</a> over the weekend.  I also finally figured out how to do &#8216;real&#8217; svg output!</p>

<p><ul>
 <li>Sort of fix broken bar renderer</li>
 <li>Add hide<em>axes and hide</em>grid to Simple</li>
 <li>StackedBar Renderer</li>
 <li>Fix busted min/max of 0 on ranges</li>
 <li>Real SVG support</li>
</ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/37-version-130.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Officially Stacked</title>
		<link>http://www.onemogin.com/clicker/36-officially-stacked.html</link>
		<comments>http://www.onemogin.com/clicker/36-officially-stacked.html#comments</comments>
		<pubDate>Wed, 10 Oct 2007 03:43:39 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/36-officially-stacked.html</guid>
		<description><![CDATA[In the pending release:


It wasn&#8217;t so hard once I realized I was calling cairo&#8217;s rectangle function all wrong&#8230;
]]></description>
			<content:encoded><![CDATA[<p>In the pending release:</p>

<p><img src="http://www.onemogin.com/clicker/images/test-stacked.png">
<p>It wasn&#8217;t so hard once I realized I was calling cairo&#8217;s rectangle function all wrong&#8230;</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/36-officially-stacked.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.2.2</title>
		<link>http://www.onemogin.com/clicker/35-version-122.html</link>
		<comments>http://www.onemogin.com/clicker/35-version-122.html#comments</comments>
		<pubDate>Sat, 06 Oct 2007 19:48:12 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/35-version-122.html</guid>
		<description><![CDATA[A flurry of releases have brought us to 1.2.2.  The single largest change has been the conversion to Moose.  What originally began as an excuse to play with Moose turned into a desire to convert the whole of Clicker.  Thannks to Stevan and friends for a great package.

The other excitiing feature is [...]]]></description>
			<content:encoded><![CDATA[<p>A flurry of releases have brought us to 1.2.2.  The single largest change has been the conversion to <a href="http://search.cpan.org/perldoc?Moose">Moose</a>.  What originally began as an excuse to play with Moose turned into a desire to convert the whole of Clicker.  Thannks to Stevan and friends for a great package.</p>

<p><p>The other excitiing feature is the addition of a Pie renderer:</p>
<img src="http://www.onemogin.com/clicker/images/test-pie.png">
<p>1.2.2 fixed a few bugs that reared there heads after the Moose change.  I&#8217;ve got a few changes that will give me a 1.2.3 in the near future.</p>
<p>Happy Charting!</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/35-version-122.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.1.8</title>
		<link>http://www.onemogin.com/clicker/34-version-118.html</link>
		<comments>http://www.onemogin.com/clicker/34-version-118.html#comments</comments>
		<pubDate>Sat, 01 Sep 2007 16:09:38 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/34-version-118.html</guid>
		<description><![CDATA[It&#8217;s been a long time.  I shouldn&#8217;t of left you.  Without some dope code to chart to.

I skipped a couple of releases here, so we&#8217;ll cover them first.  


Version 1.1.6 removed some Mac OS X files from the tarball.
Version 1.1.7 added a time_zone to Axis::DateTime via help from Johannes Hoerburger.


Version 1.1.8 began [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time.  I shouldn&#8217;t of left you.  Without some dope code to chart to.</p>

<p>I skipped a couple of releases here, so we&#8217;ll cover them first.  </p>

<ul>
<li>Version 1.1.6 removed some Mac OS X files from the tarball.</li>
<li>Version 1.1.7 added a time_zone to Axis::DateTime via help from Johannes Hoerburger.</li>
</ul>

<p>Version 1.1.8 began with a small bugfix from Johannes again, fixing a misnamed accessor.  The hacking bug got me an in addition to that fix I made some speed improvments and added Shape support to the Line renderer.</p>

<p><img src="/clicker/images/line-shape.png" alt="Line with Shapes!" /></p>

<p>I&#8217;ve just uploaded it to CPAN, happy charting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/34-version-118.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.1.5</title>
		<link>http://www.onemogin.com/clicker/33-version-115.html</link>
		<comments>http://www.onemogin.com/clicker/33-version-115.html#comments</comments>
		<pubDate>Sat, 24 Feb 2007 18:56:05 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/33-version-115.html</guid>
		<description><![CDATA[Daniel Kasak noticed that bar charts with a single datapoint in the Series caused problems.  I straightened it out and threw it up on CPAN.  Happy Charting!
]]></description>
			<content:encoded><![CDATA[<p>Daniel Kasak noticed that bar charts with a single datapoint in the Series caused problems.  I straightened it out and threw it up on CPAN.  Happy Charting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/33-version-115.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Version 1.1.4</title>
		<link>http://www.onemogin.com/clicker/32-version-114.html</link>
		<comments>http://www.onemogin.com/clicker/32-version-114.html#comments</comments>
		<pubDate>Thu, 04 Jan 2007 03:57:28 +0000</pubDate>
		<dc:creator>gphat</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.onemogin.com/clicker/32-version-114.html</guid>
		<description><![CDATA[A small bug in ColorAllocator reported by Johannes Hoerburger prompted me to work on a few odds and ends.  Most notably the introduction if the Chart::Clicker::Simple class which significantly lowers the cost of admission for creating a chart with Clicker.  It should hit CPAN in the next few hours.
]]></description>
			<content:encoded><![CDATA[<p>A small bug in ColorAllocator reported by Johannes Hoerburger prompted me to work on a few odds and ends.  Most notably the introduction if the Chart::Clicker::Simple class which significantly lowers the cost of admission for creating a chart with Clicker.  It should hit CPAN in the next few hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemogin.com/clicker/32-version-114.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
