<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Django Days</title>
	
	<link>http://djangodays.com</link>
	<description>A growing collection of all things Django</description>
	<lastBuildDate>Tue, 20 Apr 2010 05:58:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DjangoDays" /><feedburner:info uri="djangodays" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>WYSIWYG editor in Django Admin</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/Vaxz2CyV9no/</link>
		<comments>http://djangodays.com/2009/05/14/wysiwyg-editor-in-django-admin/#comments</comments>
		<pubDate>Thu, 14 May 2009 11:02:57 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Django Admin]]></category>
		<category><![CDATA[wysiwyg]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=107</guid>
		<description><![CDATA[As awesome as the standard Django admin might be, sometimes you want the textfields to have a little bit more functionality. This is quite simple to achieve. We&#8217;ll use WYMeditor in this case, but it should be equally easy with TinyMCE, FCKeditor or any other WYSIWYG editor out there.

First download jQuery and put it in [...]]]></description>
			<content:encoded><![CDATA[<p>As awesome as the standard Django admin might be, sometimes you want the textfields to have a little bit more functionality. This is quite simple to achieve. We&#8217;ll use <a href="http://www.wymeditor.org/" target="_blank">WYMeditor</a> in this case, but it should be equally easy with <a href="http://tinymce.moxiecode.com/" target="_blank">TinyMCE</a>, <a href="http://www.fckeditor.net/" target="_blank">FCKeditor</a> or any other <a href="http://www.google.com/search?q=javascript+WYSIWYG+editors" target="_blank">WYSIWYG editor out there</a>.</p>
<ol>
<li>First download <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js" target="_blank">jQuery</a> and put it in your MEDIA_ROOT or use Google&#8217;s AJAX  Libraries API:<code>http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js</code></li>
<li>Next, download WYMeditor and put it in your MEDIA_ROOT</li>
<li>Create a JavaScript file &#8220;fancyedit.js&#8221; with the following Javascript code:<code>// fancyedit.js<br />
$(document).ready(function() {<br />
&nbsp;&nbsp;$("#id_FIELDNAME").wymeditor({ // "FIELDNAME" is the name of the field you want to give the wysiwyg features<br />
&nbsp;&nbsp;&nbsp;&nbsp;updateSelector: "input:submit",<br />
&nbsp;&nbsp;&nbsp;&nbsp;updateEvent: "click"<br />
&nbsp;&nbsp;});<br />
});</code></li>
<li>Now we have to make sure that the correct JavaScript is loaded when a model has a rich text editor field:<code>import settings<br />
media = settings.MEDIA_URL<br />
class FooAdmin(admin.ModelAdmin):<br />
&nbsp;&nbsp;class Media:<br />
&nbsp;&nbsp;&nbsp;&nbsp;js = ('http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', media+'/js/wymeditor/jquery.wymeditor.js', media+'/js/editor.js')</code></li>
</ol>
<p>That should be it!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/Vaxz2CyV9no" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2009/05/14/wysiwyg-editor-in-django-admin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://djangodays.com/2009/05/14/wysiwyg-editor-in-django-admin/</feedburner:origLink></item>
		<item>
		<title>Django foreign key default value example</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/ApIYgDYttaI/</link>
		<comments>http://djangodays.com/2009/05/11/django-foreign-key-default-value-example/#comments</comments>
		<pubDate>Mon, 11 May 2009 19:06:24 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[code examples]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=97</guid>
		<description><![CDATA[Here&#8217;s an example of how to set a default value for a models.ForeignKey field:
class Foo(models.Model):
&#160;&#160;&#160;&#160;a = models.CharField(max_length=10)
def get_foo():
&#160;&#160;&#160;&#160;return Foo.objects.get(id=1)
class Bar(models.Model):
&#160;&#160;&#160;&#160;b = models.CharField(max_length=10)
&#160;&#160;&#160;&#160;a = models.ForeignKey(Foo, default=get_foo)
Hope this helps someone (I&#8217;ve been looking for this quite some time&#8230;). If anyone know a better/neater way, please let us know in the comments!!
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an example of how to set a default value for a models.ForeignKey field:</p>
<p><code>class Foo(models.Model):<br />
&nbsp;&nbsp;&nbsp;&nbsp;a = models.CharField(max_length=10)<br />
<br/>def get_foo():<br />
&nbsp;&nbsp;&nbsp;&nbsp;return Foo.objects.get(id=1)<br />
<br/>class Bar(models.Model):<br />
&nbsp;&nbsp;&nbsp;&nbsp;b = models.CharField(max_length=10)<br />
&nbsp;&nbsp;&nbsp;&nbsp;a = models.ForeignKey(Foo, default=get_foo)</code></p>
<p>Hope this helps someone (I&#8217;ve been looking for this quite some time&#8230;). If anyone know a better/neater way, please let us know in the comments!!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/ApIYgDYttaI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2009/05/11/django-foreign-key-default-value-example/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://djangodays.com/2009/05/11/django-foreign-key-default-value-example/</feedburner:origLink></item>
		<item>
		<title>GeoDjango: getting a random point within a multipolygon</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/kUzg6rdWzfE/</link>
		<comments>http://djangodays.com/2009/03/04/geodjango-getting-a-random-point-within-a-multipolygon/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 11:05:22 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[GeoDjango]]></category>
		<category><![CDATA[Multipolygon]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=90</guid>
		<description><![CDATA[While fooling around with the awesome GeoDjango framework, I was looking for a way to generate a random point within a multipolygon.
Justin Bronn (djangopeople.net/jbronn/), the lead developer of GeoDjango was kind enough to point me in the right direction. I thought I share the concept here as it might be helpful to someone:
Define the function:

def [...]]]></description>
			<content:encoded><![CDATA[<p>While fooling around with the awesome <a href="http://geodjango.org/">GeoDjango</a> framework, I was looking for a way to generate a random point within a multipolygon.</p>
<p>Justin Bronn (<a href="http://djangopeople.net/jbronn/">djangopeople.net/jbronn/</a>), the lead developer of GeoDjango was kind enough to point me in the right direction. I thought I share the concept here as it might be helpful to someone:</p>
<p>Define the function:<br />
<code><br />
def get_random_point(extent):<br />
&nbsp;&nbsp;&nbsp;xrange = extent[2] - extent[0]<br />
&nbsp;&nbsp;&nbsp;yrange = extent[3] - extent[1]<br />
&nbsp;&nbsp;&nbsp;randx = xrange * random.random() + extent[0]<br />
&nbsp;&nbsp;&nbsp;randy = yrange * random.random() + extent[1]<br />
&nbsp;&nbsp;&nbsp;return Point(randx, randy)<br />
</code><br />
And then:<br />
<code><br />
extent = mpoly.extent<br />
pnt = get_random_point(extent)<br />
while not mpoly.contains(pnt):<br />
&nbsp;&nbsp;&nbsp;pnt = get_randomPoint(extent)<br />
</code><br />
Let me know what you think or if you&#8217;ve got any improvements!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/kUzg6rdWzfE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2009/03/04/geodjango-getting-a-random-point-within-a-multipolygon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://djangodays.com/2009/03/04/geodjango-getting-a-random-point-within-a-multipolygon/</feedburner:origLink></item>
		<item>
		<title>Great speech by Clay Shirky on Love, Internet Style</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/fE8Ad-SE-DM/</link>
		<comments>http://djangodays.com/2008/12/12/great-speech-by-clay-shirky-on-love-internet-style/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 15:04:06 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[open source]]></category>
		<category><![CDATA[community support]]></category>
		<category><![CDATA[software support]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=88</guid>
		<description><![CDATA[Here&#8217;s a great speech by Clay Shirky on community support for software development versus corporate/commercial support:

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great speech by Clay Shirky on community support for software development versus corporate/commercial support:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Xe1TZaElTAs&amp;hl=nl&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Xe1TZaElTAs&amp;hl=nl&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/fE8Ad-SE-DM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/12/12/great-speech-by-clay-shirky-on-love-internet-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/12/12/great-speech-by-clay-shirky-on-love-internet-style/</feedburner:origLink></item>
		<item>
		<title>Using non-ascii in Django templates</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/1jhJpiP9d8U/</link>
		<comments>http://djangodays.com/2008/11/10/using-non-ascii-in-django-templates/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 09:59:20 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Ask the readers]]></category>
		<category><![CDATA[non-ascii]]></category>
		<category><![CDATA[question]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=82</guid>
		<description><![CDATA[I hope some reader can help me uit here&#8230;
We were trying to use non Ascii characters (like ♥ for example) in the Django templates, but couldn&#8217;t get it to work.
We worked around this by using a template variable ( {{ nonAsciiHeart }} for example) and then put the following in the view:
nonAsciiHeart = '\xe2\x99\xa5'
return render('example_template.html', [...]]]></description>
			<content:encoded><![CDATA[<p>I hope some reader can help me uit here&#8230;</p>
<p>We were trying to use non Ascii characters (like ♥ for example) in the Django templates, but couldn&#8217;t get it to work.</p>
<p>We worked around this by using a template variable ( {{ nonAsciiHeart }} for example) and then put the following in the view:</p>
<p><code>nonAsciiHeart = '\xe2\x99\xa5'<br />
return render('example_template.html', {'nonAsciiHeart': nonAsciiHeart})</code></p>
<p>There must be a better way to do this. Does anyone know how? Please share it in the comments!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/1jhJpiP9d8U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/11/10/using-non-ascii-in-django-templates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/11/10/using-non-ascii-in-django-templates/</feedburner:origLink></item>
		<item>
		<title>Update: New Django app: FutureTweets.com</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/uSYMwaeBl6w/</link>
		<comments>http://djangodays.com/2008/10/28/new-django-app-futuretweetscom/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 16:25:26 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Django Project]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=61</guid>
		<description><![CDATA[At SolidFlux we&#8217;ve been working on a fun new Django project called FutureTweets. It&#8217;s a basic Twitter application that allows Twitter users to schedule their updates.
By using FutureTweets, you&#8217;ll always have an alibi! You can also schedule reccuring updates daily, weekly, monthly or yearly (handy for sending birthday Tweets  ). Please use the comments [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://futuretweets.com"><img class="alignnone size-medium wp-image-71" title="FutureTweets" src="http://djangodays.com/wp-content/uploads/2008/10/futuretweets_logo.png" alt="" width="275" height="47" /></a>At SolidFlux we&#8217;ve been working on a fun new Django project called <a href="http://futuretweets.com">FutureTweets</a>. It&#8217;s a basic Twitter application that allows Twitter users to schedule their updates.<br />
By using FutureTweets, you&#8217;ll always have an alibi! You can also schedule reccuring updates daily, weekly, monthly or yearly (handy for sending birthday Tweets <img src='http://djangodays.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ). Please use the comments to let us know what you think of the site.</p>
<p><span style="text-decoration: line-through;">Currently, we&#8217;re in so called private beta. If you want to give it a try, please follow <a href="http://twitter.com/gumbah">@gumbah</a> and send a DM with your IP address or send an email to beta@futuretweets.com.</span></p>
<p>We just went live&#8230; We still want your feedback though!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/uSYMwaeBl6w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/10/28/new-django-app-futuretweetscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/10/28/new-django-app-futuretweetscom/</feedburner:origLink></item>
		<item>
		<title>Change site layout by user preference</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/PohHK78K4Gw/</link>
		<comments>http://djangodays.com/2008/10/28/change-site-layout-by-user-preference/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:06:14 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Pluggables]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=77</guid>
		<description><![CDATA[I found a nice Django pluggable app: Django userskins by Will Larson of http://lethain.com.
Similar to Twitter, it provides functionality that allows your users to set preferences about how your site looks to them. Quite handy if you ask me!
Read all about it here.
]]></description>
			<content:encoded><![CDATA[<p>I found a nice Django pluggable app: Django userskins by Will Larson of http://lethain.com.</p>
<p>Similar to Twitter, it provides functionality that allows your users to set preferences about how your site looks to them. Quite handy if you ask me!</p>
<p>Read all about it <a href="http://lethain.com/entry/2008/oct/27/customize-site-style-by-user-with-django-userskins/">here</a>.</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/PohHK78K4Gw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/10/28/change-site-layout-by-user-preference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/10/28/change-site-layout-by-user-preference/</feedburner:origLink></item>
		<item>
		<title>More on debugging Django</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/AC374p3fH8I/</link>
		<comments>http://djangodays.com/2008/10/08/more-on-debugging-django/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 13:59:21 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[debugging]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=46</guid>
		<description><![CDATA[The other day, I read about another interesting way of debugging Django Apps:
If you use the following statement in you code:
import pdb; pdb.set_trace()
You can debug you app by running the server with the python command
manage.py runserver -p 8888
Then, after you visit the page where the set_trace() function is called, the server will break the code [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, I read about another interesting way of debugging Django Apps:</p>
<p>If you use the following statement in you code:<br />
<code>import pdb; pdb.set_trace()</code></p>
<p>You can debug you app by running the server with the python command<br />
<code>manage.py runserver -p 8888</code></p>
<p>Then, after you visit the page where the set_trace() function is called, the server will break the code execution. If you then go to your terminal window, it will show you a prompt, at which you can go throught your code and variables.</p>
<p>Pretty good stuff!!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/AC374p3fH8I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/10/08/more-on-debugging-django/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/10/08/more-on-debugging-django/</feedburner:origLink></item>
		<item>
		<title>restrict access to Django site from all IP’s on Webfaction</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/23E-fvAaG-0/</link>
		<comments>http://djangodays.com/2008/10/07/restrict-access-to-django-site-from-all-ips-on-webfaction/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 13:28:36 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Django hosting]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Django tip]]></category>
		<category><![CDATA[ip filter]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=48</guid>
		<description><![CDATA[For this one project I wanted to deny all access to the site except for a certain IP address. I knew it could be done by using the mod_authz_host Apache Module (more info here), but I couldn&#8217;t get it to work on a Webfaction shared hosting account.
After exchanging some mails with the Webfaction support team [...]]]></description>
			<content:encoded><![CDATA[<p>For this one project I wanted to deny all access to the site except for a certain IP address. I knew it could be done by using the mod_authz_host Apache Module (more info <a href="http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html">here</a>), but I couldn&#8217;t get it to work on a <a href="http://www.webfaction.com/?affiliate=solidflux">Webfaction</a> shared hosting account.</p>
<p>After exchanging some mails with the Webfaction support team (which is absolutely awesome by the way: very helpfull and best response time i&#8217;ve seen!) I got it working! Thought I&#8217;d share the problem and the solution and might help save someone some frustration.</p>
<h3>The problem:</h3>
<p>I could not access the site when I tried the following in my httpd.conf:<br />
(xxx.xxx.xxx.xxx being the IP I wanted to grant access to)</p>
<p><code>&hellip;<br />
&lt;Location "/"&gt;<br />
    Order Deny,Allow<br />
    Deny from all<br />
    Allow from xxx.xxx.xxx.xxx<br />
&hellip;</code></p>
<p>I found the following line in my error_log:<br />
<code>[Fri Oct 03 06:10:47 2008] [error] [client 127.0.0.1] client denied by server configuration<br />
</code></p>
<p>This made something clear to me: Webfaction uses the apache2 webserver on a custom port, and the main webserver forwards the request through to the Django site. This works great but the problem here is that all the requests appear to be from 127.0.0.1 so I can&#8217;t exclude any ip&#8217;s in the httpd.conf file.</p>
<h3>The solution</h3>
<p>The solution is to use the Apache setenvif_module module to check for which ip the request was forwarded. Here&#8217;s part of an example httpd.conf file:<br />
<code>. . .<br />
LoadModule authz_host_module modules/mod_authz_host.so<br />
LoadModule setenvif_module modules/mod_setenvif.so<br />
&hellip;<br />
&lt;Location "/"&gt;</p>
<p>    # add a line like the following for each IP that you want to allow<br />
    SetEnvIf X-Forwarded-For "^xxx\.xxx\.xxx\.xxx$" allowed_ip</p>
<p>    Order Deny,Allow<br />
    Deny from all<br />
    Allow from env=allowed_ip<br />
&hellip;</code></p>
<p>If you got any questions about this, please use the comments below. If you&#8217;re looking for a good Django host for a reasonable price check out <a href="http://www.webfaction.com/?affiliate=solidflux">Webfaction </a>!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/23E-fvAaG-0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/10/07/restrict-access-to-django-site-from-all-ips-on-webfaction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/10/07/restrict-access-to-django-site-from-all-ips-on-webfaction/</feedburner:origLink></item>
		<item>
		<title>Python 2.6 released!</title>
		<link>http://feedproxy.google.com/~r/DjangoDays/~3/JPiVhkdVqqg/</link>
		<comments>http://djangodays.com/2008/10/02/python-26-released/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 08:50:57 +0000</pubDate>
		<dc:creator>Joost</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://djangodays.com/?p=44</guid>
		<description><![CDATA[Awesome news: Python released new production ready version 2.6 yesterday!
Check out: http://www.python.org/download/releases/2.6/
We&#8217;ll keep you posted on what the consequences are for Django!
]]></description>
			<content:encoded><![CDATA[<p>Awesome news: Python released new production ready version 2.6 yesterday!</p>
<p>Check out: <a href="http://www.python.org/download/releases/2.6/">http://www.python.org/download/releases/2.6/</a></p>
<p>We&#8217;ll keep you posted on what the consequences are for Django!</p>
<img src="http://feeds.feedburner.com/~r/DjangoDays/~4/JPiVhkdVqqg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://djangodays.com/2008/10/02/python-26-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://djangodays.com/2008/10/02/python-26-released/</feedburner:origLink></item>
	</channel>
</rss>

