<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Domnodes</title>
	<link>http://www.domnodes.org/wp</link>
	<description>Javascript, Dom scripting, CSS</description>
	<pubDate>Sat, 29 May 2010 21:14:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>free stock photos : rgbstock.com</title>
		<link>http://www.domnodes.org/wp/?p=12</link>
		<comments>http://www.domnodes.org/wp/?p=12#comments</comments>
		<pubDate>Sat, 29 May 2010 21:08:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[photos]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[graphic]]></category>

		<category><![CDATA[high]]></category>

		<category><![CDATA[illustrations]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[quality]]></category>

		<category><![CDATA[rgbstock]]></category>

		<category><![CDATA[stock]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=12</guid>
		<description><![CDATA[http://www.RGBStock.com a new community driven and truly independent free micro-stock sharing site hits the ground running!
A group of photographers and illustrators with a mutual passion for sharing their work free of charge founded RGBStock.com and launched the site since January 4 2010 as an alternative to recent management takeovers and policy changes at sxc.hu.
The response [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.RGBStock.com">http://www.RGBStock.com</a> a new community driven and truly independent free micro-stock sharing site hits the ground running!</p>
<p>A group of photographers and illustrators with a mutual passion for sharing their work free of charge founded RGBStock.com and launched the site since January 4 2010 as an alternative to recent management takeovers and policy changes at sxc.hu.</p>
<p>The response is overwhelming and within a month hundredth of enthusiastic photographers and graphic artists joined and started uploading their highly appreciated existing portfolios as well as new and unique files.</p>
<p>With over 39.000 high quality images on board the time is here to proudly present what our friendly and generous community has to offer to anyone who is interested in finding the most comprehensive image resources for their needs. The best thing is they’re all FREE!<br />
The experienced RGBStock.com team makes sure that all uploads are pre-checked on usability and quality before adding them to the collection. This means a lot of time saving for people in a hurry since all files meet up to new and improved quality standards.</p>
<p>Whether you need an image for your website, school project, to decorate your house, find a wallpaper for your desktop or make a personal greeting card, you will find it here. Professionals will love the quality of the free images for use on book covers, cds, leaflets, posters, or power point presentations. All files are free to use within the RGBStock.com license.</p>
<p>The price is right, the quality high, so what are you waiting for? There is no catch. The only thing our artists would love to get in return is feedback on how a file is used to complete our concept of free sharing.</p>
<p>And for all those budding photographers and artists, RGBStock.com is the perfect place to refine your skills, and learn about what is required to become successful in the stock image industry today. Displayed work will give you exposure to some of the biggest names in the advertising world. Get in on the ground floor, because this site is going to be BIG!</p>
<p>Don’t just take our word for it. Go and get the picture yourself!<br />
Please visit or contact us at: <a href="http://www.RGBStock.com">www.rgbstock.com</a> to learn why we make a difference.</p>
<p>Note for the editor.<br />
Please feel free to contact me for more information </p>
<p><a href="http://www.RGBStock.com">http://www.rgbstock.com</a></p>
<p>Please take a look at some <a href="http://www.RGBStock.com/random">random</a> images from RGBStock.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=12</wfw:commentRss>
		</item>
		<item>
		<title>Internet Explorer 8 crashes on querySelectorAll?</title>
		<link>http://www.domnodes.org/wp/?p=11</link>
		<comments>http://www.domnodes.org/wp/?p=11#comments</comments>
		<pubDate>Thu, 23 Apr 2009 18:39:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[browsers]]></category>

		<category><![CDATA[domscripting]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[crash]]></category>

		<category><![CDATA[Ie]]></category>

		<category><![CDATA[IE8]]></category>

		<category><![CDATA[Internet Explorer 8]]></category>

		<category><![CDATA[querySelectorAll]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=11</guid>
		<description><![CDATA[Internet Explorer 8 on Windows XP crashes on querySelectorAll? 
Go to the IE8 crash page
In IE8, Microsoft Internet Explorer 8, a new and convenient method has been introduced by the name &#8216;querySelectorAll&#8217; By using this method you can find DOM elements based on  CSS class names. Useful? Oh yeah, this could be very useful. But [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Internet Explorer 8 on Windows XP crashes on querySelectorAll? </strong></p>
<p><a href="/ie8/ie8test.html" target="_blank" title="ie8 test page. watch out: crashes browser">Go to the IE8 crash page</a></p>
<p>In IE8, Microsoft Internet Explorer 8, a new and convenient method has been introduced by the name &#8216;querySelectorAll&#8217; By using this method you can find DOM elements based on  CSS class names. Useful? Oh yeah, this could be very useful. But there seems to be an serious problem. Please take a look.</p>
<p><strong>Browser crash </strong><br />
We found an possible problem by using some Javascript. It is possible to crash the browser by using querySelectorAll. We can do this with three lines of Javascript code.</p>
<p>We call the document.querySelectorAll. As result we get a so called static Node List. I have no idea what a static Node List is, but I guess it is a kind of object.<br />
Or is it an array? For instance this static Node List has a length property. So it is some native thing. Half Array , half Object.</p>
<p>Now we try to do a little loop through the elements of this node list. That is all. The browser crashes instantly. Or to be more correct: the tab pane crashes. The browser doesn&#8217;t actually crash. This seems a serious error. I don&#8217;t know how serious. Is it only an annoying feature ore something more serious?</p>
<p><strong>Example code </strong></p>
<pre style="padding: 10px; background-color: #e3e3e3; font-size: 12px">// Get the static Node List
var questions = document.querySelectorAll ( ".W4);

// Let's crash IE8
for (var el in questions)
	break;</pre>
<p>We have an working example file. Please note that your IE8 browser could crash when you visit this example page. So be careful please.<br />
<a href="/ie8/ie8test.html" target="_blank" title="ie8 test page. watch out: crashes browser">Go to the IE8 crash page</a></p>
<p>We tested this issue on three different machines, all Windows XP and IE8.  Please test this on your machine and let us know what you find. This code doesn&#8217;t do any harm as far as we know, it only crashes the browser.</p>
<p>James Hopkins of <a href="http://idreamincode.co.uk/ie8-bugs">http://idreamincode.co.uk/</a> has confirmed this bug and has filed it on the Microsoft feedback pages  <a href="https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=441236" target="_blank">right here</a>.</p>
<p>Be sure to run IE8 on Windows XP. That is the fatal combination. IE8 on Windows Vista won&#8217;t crash.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>Sizzle</title>
		<link>http://www.domnodes.org/wp/?p=10</link>
		<comments>http://www.domnodes.org/wp/?p=10#comments</comments>
		<pubDate>Tue, 03 Feb 2009 20:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[domscripting]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=10</guid>
		<description><![CDATA[Today I dived into sizzle. At last I have to say, because I knew of it existence but never got the time to look into it. Sizzle the new css selector class of John Resig. (http://sizzlejs.com/) It is a small an well made peace of javascript. And it works fine. I am trying to combine [...]]]></description>
			<content:encoded><![CDATA[<p>Today I dived into sizzle. At last I have to say, because I knew of it existence but never got the time to look into it. Sizzle the new css selector class of John Resig. (<a href="http://www.sizzlejs.com/" target="_blank">http://sizzlejs.com/</a>) It is a small an well made peace of javascript. And it works fine. I am trying to combine it with my own little framework, domnodes and there is still some work to do.</p>
<p>Sizzle seems to be pretty fast, I read the test bestween mootoolsand Sizzle on <a href="http://mootools.net/mootools_vs_sizzle/">http://mootools.net/mootools_vs_sizzle/</a> and for me the results  are almost equal.</p>
<p>My own little domnodes file looks tiny compared to Sizzle though, so I am not sure what to do, Embrace Sizzle or look for Mootools to extract their CSS selector code.<br />
First try Sizzle , that is what I am going to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>jQuery sortable portal</title>
		<link>http://www.domnodes.org/wp/?p=9</link>
		<comments>http://www.domnodes.org/wp/?p=9#comments</comments>
		<pubDate>Mon, 01 Dec 2008 21:53:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[browsers]]></category>

		<category><![CDATA[domscripting]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=9</guid>
		<description><![CDATA[Based on a great example on the jquery site I have built my own example of a sortable portal. Please look at the original demo  http://ui.jquery.com/repository/real-world/layout/
I have to say I did not do much tweaking on the javascript code. I did mainly some HTML and CSS code change and I have changeed some little [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.domnodes.org/portal.php"><img src="httP://www.domnodes.org/pcss/portal/img/p1.png" vspace="5" width="300" align="left" border="1" height="191" hspace="5" /></a>Based on a great example on the jquery site I have built my own example of a sortable portal. Please look at the original demo  <a href="http://ui.jquery.com/repository/real-world/layout/" class="moz-txt-link-freetext">http://ui.jquery.com/repository/real-world/layout/</a></p>
<p>I have to say I did not do much tweaking on the javascript code. I did mainly some HTML and CSS code change and I have changeed some little Javascript effects. That is all.</p>
<p>This is my first attempt in jQuery to acualy build some application. I have been reading for more than a yaer in the source code  and  jQuery looks pretty clean and straight forward, so I am plesantly supprised. The documentation is also very good. My compliments to John Resig and all the others.</p>
<p>I used also a round corners plugin. In this case I have been using the jQuery corner plug in from methvin.com<br />
(<a href="http://methvin.com/jquery/jq-corner.html" class="moz-txt-link-freetext">http://methvin.com/jquery/jq-corner.html</a>). This plug in does the job and adds some extra DIV elements to create well formed curves.</p>
<p>Well, anyway this is the demo [<a href="http://www.domnodes.org/portal.php" title="portal">http://www.domnodes.org/portal.php</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>FireBug 1.2 final release</title>
		<link>http://www.domnodes.org/wp/?p=8</link>
		<comments>http://www.domnodes.org/wp/?p=8#comments</comments>
		<pubDate>Wed, 27 Aug 2008 20:40:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[browsers]]></category>

		<category><![CDATA[domscripting]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=8</guid>
		<description><![CDATA[At last there has been the release of FireBug 1.2.
After some weeks of almost endless beta updates we have the new Firebug version.
and it is a good and stable version. I hardly can&#8217;t believe I used to work without this tool.
I use FireBug everyday, I cant miss it anymore. I am so glad I don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>At last there has been the release of FireBug 1.2.<br />
After some weeks of almost endless beta updates we have the new Firebug version.<br />
and it is a good and stable version. I hardly can&#8217;t believe I used to work without this tool.</p>
<p>I use FireBug everyday, I cant miss it anymore. I am so glad I don&#8217;t have to use the bulky Visual Interdev Javascript debugger anymore.</p>
<p>The good news is this version doesn&#8217;t have the little annoying bug anymore <a href="http://www.domnodes.org/wp/?p=7">I&#8217;ve wrote about</a>.<br />
I just want to say thank you to all of the developers from FireBug who did this great job.</p>
<p>please visit: <a href="http://www.getfirebug.com" title="getfirebug.com">getfirebug.com</a> to download this great tool</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>Firebug bug</title>
		<link>http://www.domnodes.org/wp/?p=7</link>
		<comments>http://www.domnodes.org/wp/?p=7#comments</comments>
		<pubDate>Fri, 06 Jun 2008 19:05:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=7</guid>
		<description><![CDATA[Maybe I found an small bug in Firebug 1.2
It is about the inspect tab in Firebug. I  can not use the inspect tab any more when I try to inspect a HTML page with  some specific CSS. Unfortunately the site getfirebug.com is down for day&#8217;s now, so I can not write a bug [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Maybe I found an small bug in Firebug 1.2<br />
</strong>It is about the inspect tab in Firebug. I  can not use the inspect tab any more when I try to inspect a HTML page with  some specific CSS. Unfortunately the site getfirebug.com is down for day&#8217;s now, so I can not write a bug report at the moment.</p>
<p>I am using a DIV tag and the CSS declaration is quite  simple:</p>
<pre style="border: 1px solid #474747; padding: 5px; background-color: #e3e3e3">
DIV  {
  position:relative;
  width:100%;
  text-align:left;
  overflow:auto;
  cursor:default;
}</pre>
<p>Now  I start Firebug, and load the page in Firefox. I try to inspect the page by  clicking on the Inspect tab. The inspect tab <strong>looses focus</strong> immediately. This is  the bug. I sould behave normaly and draw a thin line around the chosen DOM element.</p>
<p>You can see this behavior on my test page over here:</p>
<p><a href="http://www.domnodes.org/test.html" title="test" target="_blank">www.domnodes.org/test.html (<strong>this is the page with the error</strong>)<br />
</a></p>
<p>I am using:<br />
Firefox 3 RC 3 and Firefox 3<br />
Firebug 1.2.0b3 Windows XP</p>
<p>The  problem is one line of CSS<br />
<strong>overflow:auto;</strong></p>
<p>Removing this line fixes the  problem. See the second test file: this is exactly the same page oly without the CSS line I mentioned :</p>
<p><a href="http://www.domnodes.org/test2.html" title="test2" target="_blank">www.domnodes.org/test2.html (<strong>this is the page without the error</strong>)<br />
</a></p>
<p>I think this is weird FireBug behavior. I hope this  report is somehow useful for you.</p>
<p>You have to check this out in Firefox 3 and Firebug 1.2. In older configurations there are no problems and you can not see the bug. My next post will be a post about the same subject and with a browser crash. So it get worse. Sorry for that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>Kings of Code part 2</title>
		<link>http://www.domnodes.org/wp/?p=6</link>
		<comments>http://www.domnodes.org/wp/?p=6#comments</comments>
		<pubDate>Wed, 28 May 2008 19:49:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=6</guid>
		<description><![CDATA[We have seen and heard some very interesting speakers on the Kings of Code conference in Amsterdam.
First of all there was Nate Koechley. He is a front end engineer from Yahoo! and he is working on YUI.  Everything he told I knew already, but he did a very good and convincing gig. He had one [...]]]></description>
			<content:encoded><![CDATA[<p>We have seen and heard some very interesting speakers on the <a href="http://www.kingsofcode.nl" title="koc" target="_blank">Kings of Code</a> conference in Amsterdam.</p>
<p>First of all there was <a href="http://nate.koechley.com/blog/" title="Nate Koeckley" target="_blank">Nate Koechley. </a>He is a front end engineer from Yahoo! and he is working on <a href="http://developer.yahoo.com/yui/" title="YUI" target="_blank">YUI</a>.  Everything he told I knew already, but he did a very good and convincing gig. He had one little new item: <a href="http://stevesouders.com/" title="Steve Souders" target="_blank">Steve Souders</a>, the founder of YSLOW has moved to Google. That is number two in a relative short frame of time. Dustin Diaz went to google too.<br />
I wonder how many developers will leave Yahoo! when, and if, Microsoft will take over.</p>
<p><a href="http://ejohn.org/" title="John Resig" target="_blank">John Resig</a> talked about the major javascript libraries. We know tehm all, dont we? Prototype, YUI, Jquery and Dojo. which one is the best? I don&#8217;t know. They are all quite good I guess. But I don&#8217;t use them. I am doing it the hard way. Why? Because I like it. :Do it you self&#8221;</p>
<p><a href="http://www.quirksmode.org" title="ppk" target="_blank">Peter Paul  Koch</a> told his story about event handlers and event delegation. Event delegation is hot at the moment. There is only one problem: some events won&#8217;t bubble up (or propagate).<br />
Iwrote some code to do some delegation myself, and called it: javascript style sheet. I will have to digg in again and I hope to publish some of it this summer. (Stay tuned)</p>
<p>In the company I work for I keep on saying &#8220;Please use <a href="http://www.getfirebug.com" title="get firebug" target="_blank">Firebug</a>&#8220;, and most of my co-workers answer something like &#8220;Euh huh, use what?&#8221;</p>
<p>Nate Koechley asked the audience of Kings of Code &#8220;Who uses Firebug&#8221; and everyone raised his (or her) hand. That was great. I am not alone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>Kings of code</title>
		<link>http://www.domnodes.org/wp/?p=5</link>
		<comments>http://www.domnodes.org/wp/?p=5#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:50:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[domscripting]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=5</guid>
		<description><![CDATA[I am really excited. My friend Lennie and I are going to Amsterdam. I&#8217;ve been many time in that city so that&#8217;s is no reason for excitement. But we are going to see and hear some real javascript hot shots. John Resig, Nat Koechley and others are speaking on may 27 on the King  [...]]]></description>
			<content:encoded><![CDATA[<p>I am really excited. My friend Lennie and I are going to Amsterdam. I&#8217;ve been many time in that city so that&#8217;s is no reason for excitement. But we are going to see and hear some real javascript hot shots. John Resig, Nat Koechley and others are speaking on may 27 on the King  of Code gathering in Amsterdam.</p>
<p>I am really interested in there opinion of modern javascript  development. Of cause we all know Resig form his work for <a href="http://www.jquery.com">jquery</a> and for  his book &#8216;Pro javascript techniques&#8217;. Seeing and hearing him in real life is something different.</p>
<p>There will be also  other speakers. What do you think of PHPcake? One of my co-workers is very enthusiastic about this frame work so I would like to hear about it a little more.</p>
<p>The King of code site is in the Dutch language: <a href="http://www.kingsofcode.nl/" title="kings of code">http://www.kingsofcode.nl/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>CSS naked day</title>
		<link>http://www.domnodes.org/wp/?p=4</link>
		<comments>http://www.domnodes.org/wp/?p=4#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[browsers]]></category>

		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=4</guid>
		<description><![CDATA[CSS naked day
April 9 it is the third CSS naked day. At least it is according Dustin Diaz, an Californian based front end engineer.
On this day we have to remove all CSS from our web site and strip all the design.
The idea behind this event is to promote Web Standards. Plain and simple. This includes [...]]]></description>
			<content:encoded><![CDATA[<p>CSS naked day<br />
April 9 it is the third CSS naked day. At least it is according <a href="http://www.dustindiaz.com/" title="dustin diaz">Dustin Diaz</a>, an Californian based front end engineer.<br />
On this day we have to remove all CSS from our web site and strip all the design.</p>
<p>The idea behind this event is to promote Web Standards. Plain and simple. This includes proper use of (x)html, semantic markup, a good hierarchy structure, and of course, a good &#8216;ol play on words. It&#8217;s time to show off your &lt;body&gt;.</p>
<p>Diaz provides us even a small and simple PHP script to automate the removal of CSS for this day.<br />
Please visit his <a href="http://naked.dustindiaz.com/" title="CSS naked day">website</a> and read all about the naked day, and join the party!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
		<item>
		<title>Dutch Frontiers Live at the YUI-theater</title>
		<link>http://www.domnodes.org/wp/?p=3</link>
		<comments>http://www.domnodes.org/wp/?p=3#comments</comments>
		<pubDate>Fri, 28 Mar 2008 19:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[YUI]]></category>

		<category><![CDATA[domscripting]]></category>

		<category><![CDATA[Fronteers]]></category>

		<category><![CDATA[Frontiers]]></category>

		<guid isPermaLink="false">http://www.domnodes.org/wp/?p=3</guid>
		<description><![CDATA[The founder of the Dutch frontend  engineers community, &#8216;Fronteers&#8217;, Peter-Paul Koch (PPK), has addressed the developers from Yahoo! at the YUI theater. More important for us: there is  some excellent video footage of the presentation. Hear (and see) Koch in  action. It is allways a pleasure to look at him en see [...]]]></description>
			<content:encoded><![CDATA[<p>The founder of the Dutch frontend  engineers community, &#8216;Fronteers&#8217;, Peter-Paul Koch (PPK), has addressed the developers from Yahoo! at the YUI theater. More important for us: there is  some excellent video footage of the presentation. Hear (and see) Koch in  action. It is allways a pleasure to look at him en see his enthusiastic  style. Please also visit the web site of the Fronteers (in Dutch) <a href="http://www.fronteers.nl/">www.fronteers.nl</a></p>
<p>Please  see the video <a href="http://yuiblog.com/blog/2007/10/22/video-ppk/">over here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.domnodes.org/wp/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
	</channel>
</rss>
