<?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: Intro to Django &#8211; Building a To-Do List</title>
	<atom:link href="http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:51:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Leon Waldman</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-97431</link>
		<dc:creator>Leon Waldman</dc:creator>
		<pubDate>Wed, 26 Aug 2009 22:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-97431</guid>
		<description>I get this error.

under /core/views.py add:

def index():
    pass</description>
		<content:encoded><![CDATA[<p>I get this error.</p>
<p>under /core/views.py add:</p>
<p>def index():<br />
    pass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon Waldman</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-97423</link>
		<dc:creator>Leon Waldman</dc:creator>
		<pubDate>Wed, 26 Aug 2009 22:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-97423</guid>
		<description>- It is clean. The code layout was done with readability in mind.
- It is closer to the OS.
- It is infinitely more modular.
- Easy to deploy, and... scale.
- Short learning curve.
- OO frow the ground...
- etc...</description>
		<content:encoded><![CDATA[<p>- It is clean. The code layout was done with readability in mind.<br />
- It is closer to the OS.<br />
- It is infinitely more modular.<br />
- Easy to deploy, and&#8230; scale.<br />
- Short learning curve.<br />
- OO frow the ground&#8230;<br />
- etc&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon Waldman</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-97415</link>
		<dc:creator>Leon Waldman</dc:creator>
		<pubDate>Wed, 26 Aug 2009 22:21:12 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-97415</guid>
		<description>Amazing!

This should be the on the django website.

Is exactly what I was looking for! :)))

Thanks.</description>
		<content:encoded><![CDATA[<p>Amazing!</p>
<p>This should be the on the django website.</p>
<p>Is exactly what I was looking for! <img src='http://net.tutsplus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ))</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: magidu</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-92864</link>
		<dc:creator>magidu</dc:creator>
		<pubDate>Mon, 17 Aug 2009 19:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-92864</guid>
		<description>I have this error, after adding admin.site.register(todo) #Register the model with the admin 
and start the server.

TemplateSyntaxError at /admin/

Caught an exception while rendering: Tried index in module todo.core.views. Error was: &#039;module&#039; object has no attribute &#039;index&#039;

Original Traceback (most recent call last):
  File &quot;/Library/Python/2.5/site-packages/django/template/debug.py&quot;, line 71, in render_node
    result = node.render(context)
  File &quot;/Library/Python/2.5/site-packages/django/template/defaulttags.py&quot;, line 370, in render
    url = reverse(self.view_name, args=args, kwargs=kwargs, current_app=context.current_app)
  File &quot;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&quot;, line 341, in reverse
    *args, **kwargs)))
  File &quot;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&quot;, line 275, in reverse
    possibilities = self.reverse_dict.getlist(lookup_view)
  File &quot;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&quot;, line 195, in _get_reverse_dict
    self._populate()
  File &quot;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&quot;, line 187, in _populate
    lookups.appendlist(pattern.callback, (bits, p_pattern))
  File &quot;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&quot;, line 137, in _get_callback
    raise ViewDoesNotExist, &quot;Tried %s in module %s. Error was: %s&quot; % (func_name, mod_name, str(e))
ViewDoesNotExist: Tried index in module todo.core.views. Error was: &#039;module&#039; object has no attribute &#039;index&#039;

Request Method: 	GET
Request URL: 	http://localhost:9090/admin/
Exception Type: 	TemplateSyntaxError
Exception Value: 	

Caught an exception while rendering: Tried index in module todo.core.views. Error was: &#039;module&#039; object has no attribute &#039;index&#039;
-------------------

What did I do wrong?

best regards,

magi.</description>
		<content:encoded><![CDATA[<p>I have this error, after adding admin.site.register(todo) #Register the model with the admin<br />
and start the server.</p>
<p>TemplateSyntaxError at /admin/</p>
<p>Caught an exception while rendering: Tried index in module todo.core.views. Error was: &#8216;module&#8217; object has no attribute &#8216;index&#8217;</p>
<p>Original Traceback (most recent call last):<br />
  File &#8220;/Library/Python/2.5/site-packages/django/template/debug.py&#8221;, line 71, in render_node<br />
    result = node.render(context)<br />
  File &#8220;/Library/Python/2.5/site-packages/django/template/defaulttags.py&#8221;, line 370, in render<br />
    url = reverse(self.view_name, args=args, kwargs=kwargs, current_app=context.current_app)<br />
  File &#8220;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&#8221;, line 341, in reverse<br />
    *args, **kwargs)))<br />
  File &#8220;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&#8221;, line 275, in reverse<br />
    possibilities = self.reverse_dict.getlist(lookup_view)<br />
  File &#8220;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&#8221;, line 195, in _get_reverse_dict<br />
    self._populate()<br />
  File &#8220;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&#8221;, line 187, in _populate<br />
    lookups.appendlist(pattern.callback, (bits, p_pattern))<br />
  File &#8220;/Library/Python/2.5/site-packages/django/core/urlresolvers.py&#8221;, line 137, in _get_callback<br />
    raise ViewDoesNotExist, &#8220;Tried %s in module %s. Error was: %s&#8221; % (func_name, mod_name, str(e))<br />
ViewDoesNotExist: Tried index in module todo.core.views. Error was: &#8216;module&#8217; object has no attribute &#8216;index&#8217;</p>
<p>Request Method: 	GET<br />
Request URL: 	<a href="http://localhost:9090/admin/" rel="nofollow">http://localhost:9090/admin/</a><br />
Exception Type: 	TemplateSyntaxError<br />
Exception Value: 	</p>
<p>Caught an exception while rendering: Tried index in module todo.core.views. Error was: &#8216;module&#8217; object has no attribute &#8216;index&#8217;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>What did I do wrong?</p>
<p>best regards,</p>
<p>magi.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-71062</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Thu, 11 Jun 2009 19:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-71062</guid>
		<description>Webfaction hosting makes it ridiculously simple. I came up with a method of publishing my site changes with a double-click: http://www.nerdydork.com/one-click-django-project-publishing.html</description>
		<content:encoded><![CDATA[<p>Webfaction hosting makes it ridiculously simple. I came up with a method of publishing my site changes with a double-click: <a href="http://www.nerdydork.com/one-click-django-project-publishing.html" rel="nofollow">http://www.nerdydork.com/one-click-django-project-publishing.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: T. Stone</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-66556</link>
		<dc:creator>T. Stone</dc:creator>
		<pubDate>Fri, 22 May 2009 04:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-66556</guid>
		<description>Nice tut.  I got most of it working, but couldn&#039;t get the admin interface working right.  What version of Django was this written with?</description>
		<content:encoded><![CDATA[<p>Nice tut.  I got most of it working, but couldn&#8217;t get the admin interface working right.  What version of Django was this written with?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amara Emerson</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-54477</link>
		<dc:creator>Amara Emerson</dc:creator>
		<pubDate>Sun, 12 Apr 2009 21:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-54477</guid>
		<description>@Kevin Quillen
Python is an older and actually much more established than PHP, but in a different area. PHP was designed specifically for the web, while Python is a general language. If you take the time to learn python, (not from Dive Into Python, an awful, awful book) then you&#039;ll notice that it&#039;s extremely easy to use. The syntax is clear and conducive to well written code, and coupled with Django it can significantly improve the time taken to get results out of the door because of the good design principles that Django encourages.

If you use Symfony or other framework for PHP, then fine there&#039;s nothing wrong with that. I like PHP because of it&#039;s resemblance to C/C++ because I originally learnt those languages. But there are some glaring deficiencies which become highlighted when you try to use it for web applications.

Don&#039;t get so defensive about PHP, no one&#039;s saying that PHP is useless. It just has certain weaknesses which make python a more viable language and platform for certain applications.

As for rails, I&#039;m still not entirely convinced. Ruby + Rails is definitely harder to learn than Python and Django because it&#039;s inherently more implicit. There are a _lot_ more conventions which need to be learned in order to use them effectively. My view on RoR however is not authoritative, just my personal experience.</description>
		<content:encoded><![CDATA[<p>@Kevin Quillen<br />
Python is an older and actually much more established than PHP, but in a different area. PHP was designed specifically for the web, while Python is a general language. If you take the time to learn python, (not from Dive Into Python, an awful, awful book) then you&#8217;ll notice that it&#8217;s extremely easy to use. The syntax is clear and conducive to well written code, and coupled with Django it can significantly improve the time taken to get results out of the door because of the good design principles that Django encourages.</p>
<p>If you use Symfony or other framework for PHP, then fine there&#8217;s nothing wrong with that. I like PHP because of it&#8217;s resemblance to C/C++ because I originally learnt those languages. But there are some glaring deficiencies which become highlighted when you try to use it for web applications.</p>
<p>Don&#8217;t get so defensive about PHP, no one&#8217;s saying that PHP is useless. It just has certain weaknesses which make python a more viable language and platform for certain applications.</p>
<p>As for rails, I&#8217;m still not entirely convinced. Ruby + Rails is definitely harder to learn than Python and Django because it&#8217;s inherently more implicit. There are a _lot_ more conventions which need to be learned in order to use them effectively. My view on RoR however is not authoritative, just my personal experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dartdog</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-53231</link>
		<dc:creator>Dartdog</dc:creator>
		<pubDate>Wed, 08 Apr 2009 14:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-53231</guid>
		<description>Great Tutorial, I think it will help me get over a few humps, as I try to get going with Google  App Engine.

I agree that if you could update the tutorial for Google app engine you would get overwhelmed with traffic,, I&#039;ve been working for days to get to a simple blog example using the Google App engine patch.. Since it combines so many differences none of the tutorial info really works.

There are no tutorials for getting a basic blog engine up and going using Django on Google app engine and only two &quot;examples&quot; as of now, one in Chinese and one which leaves out all the css/js so neither is a great starting point.</description>
		<content:encoded><![CDATA[<p>Great Tutorial, I think it will help me get over a few humps, as I try to get going with Google  App Engine.</p>
<p>I agree that if you could update the tutorial for Google app engine you would get overwhelmed with traffic,, I&#8217;ve been working for days to get to a simple blog example using the Google App engine patch.. Since it combines so many differences none of the tutorial info really works.</p>
<p>There are no tutorials for getting a basic blog engine up and going using Django on Google app engine and only two &#8220;examples&#8221; as of now, one in Chinese and one which leaves out all the css/js so neither is a great starting point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neron-fx</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-39229</link>
		<dc:creator>neron-fx</dc:creator>
		<pubDate>Mon, 02 Mar 2009 17:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-39229</guid>
		<description>Same old s**t, diffent day. People have been arguing about which programming language is best for years! Its getting so old people!

Why not broaden your horizons rather than sticking with what you know? I know PHP, Ruby on Rails, Python (w Django), C# .NET and a bit of Java. 

I can tell you now that all these languages have their pros and cons and I like each for my own reasons! Use whatever is applicable to the job!

Companies dont hire developers versed in only 1 language these days! They expect you have to have a much broader knowledge! So all you &quot;I only use PHP or I only use Python&quot; people out there, you are only shooting yourselves in the foot!

On a side note! Good tut for newcomers to Django! Well done!</description>
		<content:encoded><![CDATA[<p>Same old s**t, diffent day. People have been arguing about which programming language is best for years! Its getting so old people!</p>
<p>Why not broaden your horizons rather than sticking with what you know? I know PHP, Ruby on Rails, Python (w Django), C# .NET and a bit of Java. </p>
<p>I can tell you now that all these languages have their pros and cons and I like each for my own reasons! Use whatever is applicable to the job!</p>
<p>Companies dont hire developers versed in only 1 language these days! They expect you have to have a much broader knowledge! So all you &#8220;I only use PHP or I only use Python&#8221; people out there, you are only shooting yourselves in the foot!</p>
<p>On a side note! Good tut for newcomers to Django! Well done!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pelchile</title>
		<link>http://net.tutsplus.com/tutorials/other/intro-to-django-building-a-to-do-list/#comment-35327</link>
		<dc:creator>Pelchile</dc:creator>
		<pubDate>Wed, 11 Feb 2009 21:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://nettuts.com/?p=2871#comment-35327</guid>
		<description>What are the server specific operations that require someone to jump to Perl that could not be accomplished with PHP?

I mean I&#039;m sure there are, just curious as to what they are and why writing code in Perl would be necessary to access them.</description>
		<content:encoded><![CDATA[<p>What are the server specific operations that require someone to jump to Perl that could not be accomplished with PHP?</p>
<p>I mean I&#8217;m sure there are, just curious as to what they are and why writing code in Perl would be necessary to access them.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.007 seconds using memcached
Content Delivery Network via 

Served from: psdtutsplus.com @ 2009-11-21 15:49:34 -->