<?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 on: Building SEO optimised Django web applications</title>
	<atom:link href="http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/</link>
	<description>Building Amazing Webapps</description>
	<lastBuildDate>Sat, 13 Mar 2010 00:26:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Basil</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-2752</link>
		<dc:creator>Basil</dc:creator>
		<pubDate>Thu, 17 Sep 2009 10:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-2752</guid>
		<description>&lt;p&gt;Thanks for the great article! :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the great article! <img src='http://uswaretech.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-2057</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 15 Aug 2009 00:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-2057</guid>
		<description>&lt;p&gt;Florian, try django.http.HttpResponsePermanentRedirect. There are a few more in django.http that can be of use too.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Florian, try django.http.HttpResponsePermanentRedirect. There are a few more in django.http that can be of use too.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ml</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-1857</link>
		<dc:creator>ml</dc:creator>
		<pubDate>Sun, 21 Jun 2009 10:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-1857</guid>
		<description>&lt;p&gt;In &#039;save&#039; method (on &#039;Entry&#039; class) you can use &#039;slugify&#039; method from &#039;django.template.defaultfilters&#039;.
So, instead of:
self.slug = &#039;-&#039;.join(self.title.split())&lt;/p&gt;

&lt;p&gt;you can write like this:
self.slug = slugify(self.title)&lt;/p&gt;

&lt;p&gt;I think it&#039;s much more simplified and easy to use :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>In &#8217;save&#8217; method (on &#8216;Entry&#8217; class) you can use &#8217;slugify&#8217; method from &#8216;django.template.defaultfilters&#8217;.
So, instead of:
self.slug = &#8216;-&#8217;.join(self.title.split())</p>

<p>you can write like this:
self.slug = slugify(self.title)</p>

<p>I think it&#8217;s much more simplified and easy to use <img src='http://uswaretech.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: Florian</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-343</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Sat, 14 Mar 2009 07:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-343</guid>
		<description>&lt;p&gt;The redirect_to generic view (Django 1.1 alpha 1) now accepts an additional keyword argument permanent. If permanent is True, the view will emit an HTTP permanent redirect (status code 301). If False, the view will emit an HTTP temporary redirect (status code 302).&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://docs.djangoproject.com/en/dev/releases/1.1-alpha-1/Django&quot; rel=&quot;nofollow&quot;&gt;1.1 alpha 1 release notes&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The redirect_to generic view (Django 1.1 alpha 1) now accepts an additional keyword argument permanent. If permanent is True, the view will emit an HTTP permanent redirect (status code 301). If False, the view will emit an HTTP temporary redirect (status code 302).</p>

<p><a href="http://docs.djangoproject.com/en/dev/releases/1.1-alpha-1/Django" rel="nofollow">1.1 alpha 1 release notes</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Florian</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-55</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Fri, 30 Jan 2009 01:07:49 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-55</guid>
		<description>&lt;p&gt;Thanks for the great article!&lt;/p&gt;

&lt;p&gt;But where do you get HttpResponsePermananentRedirect from?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the great article!</p>

<p>But where do you get HttpResponsePermananentRedirect from?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Cornucopia &#187; Optimizing the new web application technologies</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-43</link>
		<dc:creator>Cornucopia &#187; Optimizing the new web application technologies</dc:creator>
		<pubDate>Mon, 24 Nov 2008 03:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-43</guid>
		<description>&lt;p&gt;[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Optimizing the new web application technologies &#124; Busby SEO Test</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-42</link>
		<dc:creator>Optimizing the new web application technologies &#124; Busby SEO Test</dc:creator>
		<pubDate>Sun, 23 Nov 2008 20:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-42</guid>
		<description>&lt;p&gt;[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Search Engine Optimization Tips and New web technologies &#124; Barcelona SEO</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-24</link>
		<dc:creator>Search Engine Optimization Tips and New web technologies &#124; Barcelona SEO</dc:creator>
		<pubDate>Wed, 05 Nov 2008 21:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-24</guid>
		<description>&lt;p&gt;[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: SEO and Django Web application development &#124; BruteForceSEO Review</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-23</link>
		<dc:creator>SEO and Django Web application development &#124; BruteForceSEO Review</dc:creator>
		<pubDate>Wed, 05 Nov 2008 12:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-23</guid>
		<description>&lt;p&gt;[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: SEO and Django Web application development &#124; Blogging Tips for Bloggers</title>
		<link>http://uswaretech.com/blog/2008/10/building-seo-optimised-django-web-applications/comment-page-1/#comment-20</link>
		<dc:creator>SEO and Django Web application development &#124; Blogging Tips for Bloggers</dc:creator>
		<pubDate>Tue, 04 Nov 2008 14:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://uswaretech.com/blog/?p=31#comment-20</guid>
		<description>&lt;p&gt;[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] For both AJAX and Django, getting a better code in place and structure is probably the best you can do to make sure the pages generated are SEO friendly. Here are some tips on making SEO friendly Django Web applications. [...]</p>]]></content:encoded>
	</item>
</channel>
</rss>
