<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for SomeDotCom</title>
	<atom:link href="http://somedot.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://somedot.com</link>
	<description>opininionated multimedia development</description>
	<lastBuildDate>Sat, 03 Apr 2010 18:05:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Sitemaps and Django by Christian</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-25</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Sat, 03 Apr 2010 18:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-25</guid>
		<description>Nice! Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>Nice! Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitemaps and Django by Christian</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-24</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Sat, 03 Apr 2010 18:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-24</guid>
		<description>Hey! Sorry it took me this long to reply, I neglected my site for a long time. But to answer your question, if you haven&#039;t figured it out since you asked, is an XSLT style sheet. The one on this site is generated by a WordPress plugin.</description>
		<content:encoded><![CDATA[<p>Hey! Sorry it took me this long to reply, I neglected my site for a long time. But to answer your question, if you haven&#8217;t figured it out since you asked, is an XSLT style sheet. The one on this site is generated by a WordPress plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitemaps and Django by Eloff</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-19</link>
		<dc:creator>Eloff</dc:creator>
		<pubDate>Tue, 02 Mar 2010 21:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-19</guid>
		<description>Thanks man, great idea. I used a tuple of dictionaries so I could customize things a little further.

&lt;code&gt;
from django.core.urlresolvers import reverse

class PagesSitemap(Sitemap):
    pages = (
        dict(name=&#039;home&#039;, priority=1),
    )
        
    def items(self):
        return range(len(self.pages))
            
    def location(self, i):
        page = self.pages[i]
        return page.get(&#039;uri&#039;) or reverse(page[&#039;name&#039;], **page.get(&#039;args&#039;, {}))
    
    def lastmod(self, i):
        page = self.pages[i]
        return page.get(&#039;modified&#039;)
    
    def priority(self, i):
        page = self.pages[i]
        return page.get(&#039;priority&#039;, 0.5)
    
    def changefreq(self, i):
        page = self.pages[i]
        return page.get(&#039;changefreq&#039;)
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks man, great idea. I used a tuple of dictionaries so I could customize things a little further.</p>
<p><code><br />
from django.core.urlresolvers import reverse</p>
<p>class PagesSitemap(Sitemap):<br />
    pages = (<br />
        dict(name='home', priority=1),<br />
    )</p>
<p>    def items(self):<br />
        return range(len(self.pages))</p>
<p>    def location(self, i):<br />
        page = self.pages[i]<br />
        return page.get('uri') or reverse(page['name'], **page.get('args', {}))</p>
<p>    def lastmod(self, i):<br />
        page = self.pages[i]<br />
        return page.get('modified')</p>
<p>    def priority(self, i):<br />
        page = self.pages[i]<br />
        return page.get('priority', 0.5)</p>
<p>    def changefreq(self, i):<br />
        page = self.pages[i]<br />
        return page.get('changefreq')<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big Buck Bunny is here! by Susan</title>
		<link>http://somedot.com/graphics/2008/05/big-bubk-bunny-released/#comment-17</link>
		<dc:creator>Susan</dc:creator>
		<pubDate>Tue, 08 Dec 2009 02:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/05/30/big-bubk-bunny-released/#comment-17</guid>
		<description>Awwwwww! Sooooooooooo cute!!!!!!!!!!!!</description>
		<content:encoded><![CDATA[<p>Awwwwww! Sooooooooooo cute!!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitemaps and Django by Will</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-14</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Thu, 30 Apr 2009 11:38:23 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-14</guid>
		<description>&lt;i&gt;tres&lt;/i&gt; useful buddy thanks</description>
		<content:encoded><![CDATA[<p><i>tres</i> useful buddy thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitemaps and Django by Ian</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-13</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 04 Apr 2009 17:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-13</guid>
		<description>The django documentation (usually great) isn&#039;t all it could be on this topic. This cleared things up for me. Thanks.</description>
		<content:encoded><![CDATA[<p>The django documentation (usually great) isn&#8217;t all it could be on this topic. This cleared things up for me. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitemaps and Django by adrianliem</title>
		<link>http://somedot.com/development/2008/03/django-sitemap/#comment-10</link>
		<dc:creator>adrianliem</dc:creator>
		<pubDate>Tue, 20 Jan 2009 04:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/20/django-sitemap/#comment-10</guid>
		<description>hiya :)
the one in your front page, http://somedot.com/sitemap.xml -- is that generated by wordpress?
i haven&#039;t play a lot with django
but just in case, do you have any clue how can that shiny display be produced with django? :) thanks in advance</description>
		<content:encoded><![CDATA[<p>hiya <img src='http://somedot.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
the one in your front page, <a href="http://somedot.com/sitemap.xml" rel="nofollow">http://somedot.com/sitemap.xml</a> &#8212; is that generated by wordpress?<br />
i haven&#8217;t play a lot with django<br />
but just in case, do you have any clue how can that shiny display be produced with django? <img src='http://somedot.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Y en español? by Carlos</title>
		<link>http://somedot.com/espanol/2008/03/y-en-espanol/#comment-4</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Thu, 27 Mar 2008 02:43:49 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/26/y-en-espanol/#comment-4</guid>
		<description>Hola...eres maravilloso ...te felicito por este espacio...ya disfrutaremos de él</description>
		<content:encoded><![CDATA[<p>Hola&#8230;eres maravilloso &#8230;te felicito por este espacio&#8230;ya disfrutaremos de él</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why opinionated? by christian</title>
		<link>http://somedot.com/development/2008/03/why-opinionated/#comment-3</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Sun, 23 Mar 2008 22:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/17/why-opinionated/#comment-3</guid>
		<description>Thanks for the offer! Let me know if you need help with Django and/or Python ;)</description>
		<content:encoded><![CDATA[<p>Thanks for the offer! Let me know if you need help with Django and/or Python <img src='http://somedot.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why opinionated? by Sebastian</title>
		<link>http://somedot.com/development/2008/03/why-opinionated/#comment-2</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Fri, 21 Mar 2008 15:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://somedot.com/2008/03/17/why-opinionated/#comment-2</guid>
		<description>Elitist? nah, the Ruby community is not elitist... it&#039;s just that it&#039;s mostly smart people busy doing cool things, but elitist? never :-)

Next time, ask me when you have a question on ruby or rails... there is plenty of help to be had, but not necessarily in the places you would look first.</description>
		<content:encoded><![CDATA[<p>Elitist? nah, the Ruby community is not elitist&#8230; it&#8217;s just that it&#8217;s mostly smart people busy doing cool things, but elitist? never <img src='http://somedot.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Next time, ask me when you have a question on ruby or rails&#8230; there is plenty of help to be had, but not necessarily in the places you would look first.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

