<?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>CocoaHeads Belgium &#187; Resources</title>
	<atom:link href="http://cocoaheads.be/wordpress/category/resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://cocoaheads.be/wordpress</link>
	<description>Home of the Belgian CocoaHeads Chapter</description>
	<lastBuildDate>Sun, 29 Apr 2012 07:16:13 +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>Making you code easier to maintain using Objective-C Categories</title>
		<link>http://cocoaheads.be/wordpress/2010/12/making-you-code-easier-to-maintain-using-objective-c-categories/</link>
		<comments>http://cocoaheads.be/wordpress/2010/12/making-you-code-easier-to-maintain-using-objective-c-categories/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 14:06:27 +0000</pubDate>
		<dc:creator>Stefaan Lesage</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Categories]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[CocoaTouch]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iOS Development]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIColor]]></category>
		<category><![CDATA[UITableView]]></category>
		<category><![CDATA[UITableViewCell]]></category>
		<category><![CDATA[UITableViewController]]></category>

		<guid isPermaLink="false">http://cocoaheads.be/wordpress/?p=490</guid>
		<description><![CDATA[Well, as you all might know by now, I'm trying to take my first steps in iOS development. And if you read my previous post, you have already noticed that I was playing with some color schemes. After a while though I ended up settting my colors in all different kinds of places. When I wanted to change one color, I noticed I had to modify my code in 10 or more places. Sure, there must be an easier way to write more maintainalbe code, and Categories seem to be helping quite a bit.]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>This is a repost of my <a href="http://bit.ly/dFX9EK">original article</a> which I posted on my own website.  But since it is related to iOS development, I thought it might be interesting for the Cocoaheads Belgium folks as well.</p>
<h3>Colors Everywhere</h3>
<p>Well, after my previous post I continued doing some more work on my UI and trying to create my own Style for UITableViews and UITableViewCells. I ended up using the same colors over and over again in all different places in my application.  In the end I had code in my UITTableViewController which set the Color for the Background and the navigation bar :</p>
<p>
<pre><code>- (void)viewDidLoad
{
    [super viewDidLoad];

    // Uncomment the following line to display an Edit button in the navigation bar
    // for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
    [[self navigationController] navigationBar].tintColor = [UIColor brownColor];
    UIImage *img = [UIImage imageNamed:@"BG_Pink"];
    [[self tableView] setBackgroundColor:[UIColor colorWithPatternImage:img]];
}
</code></pre>
</p>
<p>This was all working out quite nicely &#8230;</p>
<h3>Using the same color scheme in other Views</h3>
<div id="attachment_496" class="wp-caption alignright" style="width: 210px"><a href="http://cocoaheads.be/wordpress/wp-content/uploads/2010/12/Input_ColorScheme.png"><img src="http://cocoaheads.be/wordpress/wp-content/uploads/2010/12/Input_ColorScheme-200x300.png" alt="Data Entry View with ColorScheme" title="Data Entry View with ColorScheme" width="200" height="300" class="size-medium wp-image-496" /></a><p class="wp-caption-text">Data Entry View with ColorScheme</p></div>
<p>Of course, my application consits of a few different UITableViews and I even added a data entry View and a detail view. As you can see, the data entry view is using the same background color for the UITableView and the UITableViewCells are using the same color as my other UITableView as well.</p>
<p>At some point, I wanted to change the color scheme I was using (it was more pinkish at the start), and use something more Orange or brown like.  Sadly this required me to change the color in every spot where I was using it. When I tested it on my phone, it looked horrible, since I forgot to change a few colors.</p>
<p>Since I&#8217;m still developing some basic ideas for the app, and the color scheme might change a few times during the Development cycle, I started thinking. There surely must be an easier way to handle this, which wouldn&#8217;t require me to change the colors in 10 different places.</p>
<p>Of course, I could subclass UIColor and add my own colors to it, but I wanted to try a different approach</p>
<h3>The Categories Approach</h3>
<p>During the iOS bootcamp I took at Big Nerd Ranch Europe a while back, we touched on the subject of Categories. Categories allow you to extend a class without the need to Subclass it. Using Categories I could quickly add a few methods to UIColor whithout the need to create a new Subclass.</p>
<h3>Creating a Category in UIColor</h3>
<p>Creating a new category is actually quite easy.  In my case, I wanted a category on UIColor so I could extend it.  I created a new Header and Implementation file and called it <em>UIColor+MyApp.h</em> and <em>UIColor+MyApp.c</em></p>
<h4>The Header File</h4>
<p>In the Header file <em>UIColor+MyApp.h</em> I added the following code :</p>
<p>
<pre><code>
//
//  UIColor+MyApp.h
//
//  Created by Stefaan Lesage on 11/11/10.
//  Copyright 2010 Devia. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface UIColor (MyApp) 

+ (UIColor *)myTableViewBackgroundColor;
+ (UIColor *)myTableCellBackgroundColor;

@end
</code></pre>
</p>
<p>This simply declares a category MyApp on UIColor, and defines 2 new methods on it. <em>myTableViewBackgroundColor</em> which will return the Default color which should be used as the background for my UITableViews, and <em>myTableCellBackgroundColor</em> which defines the default color which should be used as the background for my UITableViewCells (and in some other places in my app).</p>
<h4>The Implementation</h4>
<p>In the Implementation file <em>UIColor+MyApp.m</em> I added the following code :</p>
<p>
<pre><code>
//
//  UIColor+MyApp.m
//  Phocation
//
//  Created by Stefaan Lesage on 11/11/10.
//  Copyright 2010 Devia. All rights reserved.
//

#import "UIColor+MyApp.h"

@implementation UIColor (MyApp)

+ (UIColor *)myTableViewBackgroundColor
{
    UIImage *img = [UIImage imageNamed:@"BG_Pink"];
    return [UIColor colorWithPatternImage:img];
}

+ (UIColor *)myTableCellBackgroundColor
{
    return [UIColor colorWithRed:255/255.0 green:240/255.0 blue:255/255.0 alpha:100];
}

@end
</code></pre>
</p>
<p>Well the implementation is pretty straightforward. For the <em>myTableViewBackgroundColor</em>, I simply return a UIColor based on the pattern in my previous post. The <em>myTableCellBackgroundColor</em> then returns the light pink / purple color which gets used as the background for my UITableViewCells.</p>
<h3>Using the Category</h3>
<p>Using the Category is now pretty Straight Forward. In my Detail View for example, I have a reference to a UITextField called nameTextField and to the tableView beneath it. So in my viewDidLoad I have the following code :</p>
<p>
<pre><code>
- (void)viewDidLoad
{
    [super viewDidLoad];

    /* Load our HeaderView if Necessary */
    [[self view] setBackgroundColor:[UIColor myTableViewBackgroundColor]];
    [[self tableView] setBackgroundColor:[UIColor myTableViewBackgroundColor]];
    [nameTextField setBackgroundColor:[UIColor myTableCellBackgroundColor]];
}
</code></pre>
</p>
<p>Quite simple, isn&#8217;t it ?</p>
<h3>But what are the advantages ?</h3>
<p>For me, it makes my code a little more readable (that is of course a more personal opinion), but what&#8217;s even better is that my code is a lot easier to maintain. If for some reason I want to change my color scheme to use another pattern or another color for the UITableViewCells, I only need to update the code in one sport. Simply modify the Implementation found in UIColor+MyApp.c, build and it&#8217;s done !</p>
<p>Once I found the advantages of this approach, I even added more methods to my UIColor+MyApp category. It now also contains methods which return the color I will be using for the UINavigationBar tine, colors I will be using for different texts in my application, &#8230;</p>
<h3>Feedback</h3>
<p>As with my previous post, there might be better ways to achieve the same thing. If you have a more appropriate approach or solution, feel free to let me know &#8230; I&#8217;m eager to learn <img src='http://cocoaheads.be/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://cocoaheads.be/wordpress/2010/12/making-you-code-easier-to-maintain-using-objective-c-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use a custom background image in your grouped UITableView</title>
		<link>http://cocoaheads.be/wordpress/2010/11/how-to-use-a-custom-background-image-in-your-grouped-uitableview/</link>
		<comments>http://cocoaheads.be/wordpress/2010/11/how-to-use-a-custom-background-image-in-your-grouped-uitableview/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 14:21:32 +0000</pubDate>
		<dc:creator>Stefaan Lesage</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[CocoaTouch]]></category>
		<category><![CDATA[Custom Background]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iOS Development]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIColor]]></category>
		<category><![CDATA[UITableView]]></category>
		<category><![CDATA[UITableViewCell]]></category>
		<category><![CDATA[UITableViewController]]></category>

		<guid isPermaLink="false">http://cocoaheads.be/wordpress/?p=475</guid>
		<description><![CDATA[For those of you who didn't know it ... a few weeks ago I went to the iOS Bootcamp organized by the folks at Big Nerd Ranch Europe. The course was exactly what I needed to get me started on my own app. Some pieces of the Puzzle came together quite nicely during the course, but ... I wanted more.]]></description>
			<content:encoded><![CDATA[<h4>Introduction</h4>
<p>This is a repost of my <a href="http://bit.ly/hAUp8n">original article</a> which I posted on my own website.  But since it is related to iOS development, I thought it might be interesting for the Cocoaheads Belgium folks as well.</p>
<div id="attachment_473" class="wp-caption alignright" style="width: 210px"><a href="http://cocoaheads.be/wordpress/wp-content/uploads/2010/11/Default_Grouped_TableView.png"><img src="http://cocoaheads.be/wordpress/wp-content/uploads/2010/11/Default_Grouped_TableView-200x300.png" alt="The default grouped UITableView" title="Default_Grouped_TableView" width="200" height="300" class="size-medium wp-image-473" /></a><p class="wp-caption-text">The default grouped UITableView</p></div>
<h4>The default Grouped UITableView looks nice but &#8230;</h4>
<p>Well, you can use the UITableView in it&#8217;s Plain mode, but also in a Grouped mode.  The Grouped mode uses some kind of pattern as the background for the UITableView.  It looks quite nice and is made up of alternating light and darker blue-grayish lines.</p>
<h4>I wanted someting a little more &#8216;Special&#8217; &#8230;</h4>
<p>Although the default look isn&#8217;t all that bad &#8230; I wanted to have something &#8216;special&#8217; for my application.  So I was wondering if there was some way to change the color used in that pattern.  Since I didn&#8217;t know the answer myself, I sent out a tweet. I was hoping someone would pick it up and maybe let me know where I could find some more information on this topic.</p>
<h4>The feedback I got</h4>
<p>I did receive some feedback to my tweet: &#8216;<a href="https://twitter.com/StefaanLesage/status/2335617765613568" title="Is there an easy way to create your own UIColor which looks like the 'Group Table View Color' but with another color scheme ? #iphonedev">Is there an easy way to create your own UIColor which looks like the &#8216;Group Table View Color&#8217; but with another color scheme ? #iphonedev</a>. One of the answers was from <a href="http://blog.amarkulo.com" title="Amar Kulo">Amar Kulo</a> who suggested to supply me with some Photoshop files I could modify.</p>
<p>A few moments later, Amar Kulo even provided me with a complete answer and <a href="http://blog.amarkulo.com/custom-colored-grouped-uitableview-background-image-in-photoshop" title="wrote a blog post about it">wrote a blog post about it</a> to help me out. It is actually pretty easy, so I thought i would share it with the world as well.</p>
<h4>The Trick</h4>
<p>It is actually quite easy to get your own custom background.  You simply have to use a custom background image.  Amar provides a few samples in his blogpost.  The only thing you need to do is open up your favorite Image Editor (in my case Pixelmator), change the colors to you liking and create the necessary versions for your application.  </p>
<h4>The Code</h4>
<p>Once you added the resources to your project, you can simply start using them as the background for your Grouped UITableView.  In my case, it was simple a matter of setting the background color in the ViewDidLoad of my UITableViewController :</p>
<p><code>
<pre>- (void)viewDidLoad
{
    [super viewDidLoad];

    // Uncomment the following line to display an Edit button in the navigation
    // bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
	UIImage *img = [UIImage imageNamed:@"BG_Pink"];
	[[self tableView] setBackgroundColor:[UIColor colorWithPatternImage:img]];
}
</pre>
<p></code></p>
<h4>Feedback</h4>
<div id="attachment_474" class="wp-caption alignright" style="width: 231px"><a href="http://cocoaheads.be/wordpress/wp-content/uploads/2010/11/Result.png"><img src="http://cocoaheads.be/wordpress/wp-content/uploads/2010/11/Result-221x300.png" alt="I ended up with this Bakcground and Color Scheme" title="Result" width="221" height="300" class="size-medium wp-image-474" /></a><p class="wp-caption-text">I ended up with this Bakcground and Color Scheme</p></div>
<p>Well &#8230; This might not be the best way to do it, so if you have any suggestions, feel free to let me know.</p>
<p>Personally, I had to experiment a bit with quite a few different colors before I got something which did looked OK to me, so feel free to experiment as well, and let me know what you come up with</p>
<p>Next time I&#8217;ll be delving a little deeper into some more things I did with my UITableView and UITableViewCell &#8230; but for now &#8230; feel free to post a comment and have a look at the result :</p>
]]></content:encoded>
			<wfw:commentRss>http://cocoaheads.be/wordpress/2010/11/how-to-use-a-custom-background-image-in-your-grouped-uitableview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get better code with the clang static analyzer</title>
		<link>http://cocoaheads.be/wordpress/2009/11/get-better-code-with-the-clang-static-analyzer/</link>
		<comments>http://cocoaheads.be/wordpress/2009/11/get-better-code-with-the-clang-static-analyzer/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 10:22:40 +0000</pubDate>
		<dc:creator>cgodefroy</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[clang]]></category>
		<category><![CDATA[meeting notes]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://cocoaheads.be/wordpress/?p=209</guid>
		<description><![CDATA[Presentation made on monday, november 23 about the CLang static analyzer]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, my screencast recording didn&#8217;t work too well on monday night. I played with the monitor once too much, I guess. But the slides are <a href="http://cocoaheads.be/wordpress/wp-content/uploads/2009/11/Clang_en.key_.zip">here</a>.</p>
<p>Please go to <a href="http://github.com/cgodefroy/CLang-static-Analyzer-cases">http://github.com/cgodefroy/CLang-static-Analyzer-cases</a> for the source code of demos.  I tried to add comments to explain a few things.  If you have more code examples, fork it and send me a pull request (never tried it might be fun).</p>
<p>If you want more information on my iPhone app 321Run, please have a look at the <a href="http://321run.com">321Run website</a>.  Feel free to play around with the application and show it to your friends (there is a free and apaid versions).  Getting feedback from Belgian users would be great, so please go ahead, download the app and give it a spin. It is a nice app for beginners and regular runners. </p>
<p>I am working on version 2.0 and am looking for some testers who would commit to run at least once a week for one month;-) Of course while using <a href="http://321run.com">321Run</a>.</p>
<p>What else? Hopefully Stefaan will be able to put online the video he succeeded to record.</p>
]]></content:encoded>
			<wfw:commentRss>http://cocoaheads.be/wordpress/2009/11/get-better-code-with-the-clang-static-analyzer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free and Paid iPhone TabBar and ToolBar Icons</title>
		<link>http://cocoaheads.be/wordpress/2009/09/free-and-paid-iphone-tabbar-and-toolbar-icons/</link>
		<comments>http://cocoaheads.be/wordpress/2009/09/free-and-paid-iphone-tabbar-and-toolbar-icons/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 11:21:55 +0000</pubDate>
		<dc:creator>Stefaan Lesage</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tabbar]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[UITabBarController]]></category>
		<category><![CDATA[UITabbarItem]]></category>
		<category><![CDATA[UIToolbar]]></category>

		<guid isPermaLink="false">http://cocoaheads.be/wordpress/?p=62</guid>
		<description><![CDATA[A while back, I was looking for some Icons I could use in a TabBar and ToolBar for a little iPhone project I was working on.  Since I'm more of a programmer than a designer, I decided to have a look around the internet to see if I could find anything that suits my needs ...]]></description>
			<content:encoded><![CDATA[<h4>Free</h4>
<p>Some generous folks are providing icons free of charge, so I decided I would start with 2 free Icons sets</p>
<h5>Glyphish : 120 great icons for great apps</h5>
<p>My initial search drove me to the <a href="http://www.kickstarter.com/projects/jpwain/awesome-icons-for-your-iphone-apps">Icons for your iPhone apps</a> project on Kickstarter.  The icons by <a href="http://www.kickstarter.com/profile/jpwain">Joseph Wain</a> looked awesome, so I decided to back the project.  If he could raise $500 in donations the icons would be released for use in any application !</p>
<p>Meanwhile his set of 120 beautifully designed iconst for iPhone applications is available on the <a href="http://glyphish.com/">Glyphish website</a>.  The Icons are designed and optimised for use on toolbars and tab bars, but they can also be used in other applications, websitesa and lots more.</p>
<p>What&#8217;s even better is that the icons by <a href="http://www.penandthink.com/">Joseph Wain</a> are shared under the <a href="http://creativecommons.org/licenses/by/3.0/us/">Creative Commons Attribution</a> License.</p>
<p><div class="wp-caption alignnone" style="width: 506px"><a href="http://glyphish.com/"><img alt="Glyphish Icon Set" src="http://glyphish.com/images/icondemo.png" title="Glyphish Icon Set" width="496"/></a><p class="wp-caption-text">Glyphish Icon Set</p></div>
<p>If you use his icons in your next kille iPhone application, make sure to send him a message about it.  Some of the applications which use his icons are :</p>
<ul>
<li><a href="http://www.sophiestication.com/blog/groceries-20/">Groceries 2.0 by Syphiestication</a></li>
<li><a href="http://birdbrainapp.com/">Birdbrain</a></li>
<li><a href="http://harvest-app.com/">Harvest</a> by Sean Murphy</li>
<li><a href="http://www.igaragesaleapp.com/">iGrarageSale</a> by Performant Design</li>
<li>and lots more &#8230;</li>
</ul>
<h5>PixelPress : Free iPhone Toolbar Icons</h5>
<p>Another great iPhone Icons set is the one created by the folks at <a href="http://www.pixelpressicons.com/?p=108">PixelPress</a>.  Again a comprehensive set of 50 icons which can be used in your Toolbars and NavBars.  The set is available for anyone to use in any kind of iPhone applications (free or commercial) and are released under the <a href="http://creativecommons.org/licenses/by/2.5/ca/">Creative Commons Attribution 2.5 Canada license</a>.<br />
<div class="wp-caption alignnone" style="width: 470px"><img alt="PixelPress Free iPhone Toolbar Icons" src="http://www.pixelpressicons.com/images/P-freeiphone.png" title="PixelPress Free iPhone Toolbar Icons" width="460" height="481" /><p class="wp-caption-text">PixelPress Free iPhone Toolbar Icons</p></div></p>
<p>If you use these icons, make sure you send a note to the folks at PixelPress as well.</p>
<h4>Paid</h4>
<p>There are also a few great Icons sets which aren&#8217;t free, but still quite cheap ! I can&#8217;t imagine I would be able to create a similar set of icons for that price !</p>
<h5>PixelPress : Whitespace Stock Icons for iPhone Developers</h5>
<p>Back in July PixelPress released a <a href="http://www.pixelpressicons.com/?page_id=118">Big set of icons</a> which are available in the most popular iPhone toolbar and tab bar sizes : 30&#215;30 and 20&#215;30 pixels.  The Icon collection is also avaiable in vector Photoshop PSD format for scaling and sizing to y our own needs.
<div class="wp-caption alignnone" style="width: 510px"><a href="http://www.pixelpressicons.com/?page_id=118"><img alt="PixelPress WhiteSpace Stock Icons" src="http://www.pixelpressicons.com/images/V-30xpreview.png" title="PixelPress WhiteSpace Stock Icons" width="500" height="3588" /></a><p class="wp-caption-text">PixelPress WhiteSpace Stock Icons</p></div>
<p>Both collections include the icons in two tones: black and white both with alpha channel.  The Icon set includes all of the basic icons you need, and many icons for niches like finance, GPS, multimedia and even gaming</p>
<p>The Icons set is priced at $69 for the Pixel collection and $175 for the Vector collection.  What&#8217;s even better is that it includes updates made to the Icon set ! Back in August a new set of 25 icons was added to the collecting, and apparently a new update will be made this month !</p>
<p>If you ask me, $69 for a collection of 277 well designed icons is &#8230; well almost Free !</p>
<h5>Eddit : Shop / iPhone UI Icon Set</h5>
<p>Another set of icons is available on the Eddit website.  Their <a href="http://www.eddit.com/shop/iphone_ui_icon_set/">iPhone UI Icon Set</a> consists of 160 PNG icons in 2 sizes, plus 4 free ibkube servuce icons for a total price of $69</p>
<div class="wp-caption alignnone" style="width: 620px"><a href="http://www.eddit.com/shop/iphone_ui_icon_set/"><img alt="eddit : iPhone UI Icon Set" src="http://www.eddit.com/shop/iphone_ui_icon_set/product_shot.png" title="eddit : iPhone UI Icon Set" width="469" height="1242" /></a><p class="wp-caption-text">eddit : iPhone UI Icon Set</p></div>
<h4>Closing Words</h4>
<p>This is by no means a complete list of all Free and Paid icons available on the internet, but just a few of the Icons sets I found while looking for a few good icons.  If you know of any other Icons sets which are worth mentioning, please add a comment to this post, and we will make sure they get included in the article.</p>
]]></content:encoded>
			<wfw:commentRss>http://cocoaheads.be/wordpress/2009/09/free-and-paid-iphone-tabbar-and-toolbar-icons/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

