<?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: The Pinax Tutorial #2: Developing the basic application and plugging it in Pinax</title>
	<atom:link href="http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/</link>
	<description>a blog about GIS, CMS, agile development and design patterns</description>
	<pubDate>Fri, 12 Mar 2010 07:07:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paolo Corti</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-76789</link>
		<dc:creator>Paolo Corti</dc:creator>
		<pubDate>Thu, 24 Dec 2009 17:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-76789</guid>
		<description>you are right, thanks ;-)</description>
		<content:encoded><![CDATA[<p>you are right, thanks <img src='http://www.paolocorti.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanya</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-76784</link>
		<dc:creator>Sanya</dc:creator>
		<pubDate>Thu, 24 Dec 2009 16:51:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-76784</guid>
		<description>Also in forms.py 'tags' should be removed from fields tuple since Book model does not have such field yet.</description>
		<content:encoded><![CDATA[<p>Also in forms.py &#8216;tags&#8217; should be removed from fields tuple since Book model does not have such field yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanya</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-75883</link>
		<dc:creator>Sanya</dc:creator>
		<pubDate>Wed, 23 Dec 2009 01:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-75883</guid>
		<description>Hi. First of all I'd like to thank you for your efforts. This tutorial
is really very helpful.

And I also would like to point out some typos I have noticed
1) in file models.py:

return path.join(path.dirname(self.coverart.url), folder, path.basename(self.coverart.path)).replace('\', '/')
should be replaced with
return path.join(path.dirname(self.coverart.url), folder, path.basename(self.coverart.path)).replace('\\', '/')

and the second occurrence of 
thumb.allow_tags = True 
should be replace with
fullpicture.allow_tags = True

2) in file bookstore/urls.py:
url(r'^(d+)/book/$', 'bookstore.views.book', name="describe_book"),
should be replaced with
url(r'^(\d+)/book/$', 'bookstore.views.book', name="describe_book"),

url(r'^user_books/(?Pw+)/$', 'bookstore.views.user_books', name="user_books"),
should be replaced with
url(r'^user_books/(?P\w+)/$', 'bookstore.views.user_books', name="user_books"),

url(r'^(d+)/update/$', 'bookstore.views.update_book', name="update_book"),
should be replaced with
url(r'^(\d+)/update/$', 'bookstore.views.update_book', name="update_book"),

url(r'^(d+)/delete/$', 'bookstore.views.delete_book', name="delete_book"),
should be replaced with
url(r'^(\d+)/delete/$', 'bookstore.views.delete_book', name="delete_book"),</description>
		<content:encoded><![CDATA[<p>Hi. First of all I&#8217;d like to thank you for your efforts. This tutorial<br />
is really very helpful.</p>
<p>And I also would like to point out some typos I have noticed<br />
1) in file models.py:</p>
<p>return path.join(path.dirname(self.coverart.url), folder, path.basename(self.coverart.path)).replace(&#8217;\', &#8216;/&#8217;)<br />
should be replaced with<br />
return path.join(path.dirname(self.coverart.url), folder, path.basename(self.coverart.path)).replace(&#8217;\\&#8217;, &#8216;/&#8217;)</p>
<p>and the second occurrence of<br />
thumb.allow_tags = True<br />
should be replace with<br />
fullpicture.allow_tags = True</p>
<p>2) in file bookstore/urls.py:<br />
url(r&#8217;^(d+)/book/$&#8217;, &#8216;bookstore.views.book&#8217;, name=&#8221;describe_book&#8221;),<br />
should be replaced with<br />
url(r&#8217;^(\d+)/book/$&#8217;, &#8216;bookstore.views.book&#8217;, name=&#8221;describe_book&#8221;),</p>
<p>url(r&#8217;^user_books/(?Pw+)/$&#8217;, &#8216;bookstore.views.user_books&#8217;, name=&#8221;user_books&#8221;),<br />
should be replaced with<br />
url(r&#8217;^user_books/(?P\w+)/$&#8217;, &#8216;bookstore.views.user_books&#8217;, name=&#8221;user_books&#8221;),</p>
<p>url(r&#8217;^(d+)/update/$&#8217;, &#8216;bookstore.views.update_book&#8217;, name=&#8221;update_book&#8221;),<br />
should be replaced with<br />
url(r&#8217;^(\d+)/update/$&#8217;, &#8216;bookstore.views.update_book&#8217;, name=&#8221;update_book&#8221;),</p>
<p>url(r&#8217;^(d+)/delete/$&#8217;, &#8216;bookstore.views.delete_book&#8217;, name=&#8221;delete_book&#8221;),<br />
should be replaced with<br />
url(r&#8217;^(\d+)/delete/$&#8217;, &#8216;bookstore.views.delete_book&#8217;, name=&#8221;delete_book&#8221;),</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiberiu Ichim</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-73676</link>
		<dc:creator>Tiberiu Ichim</dc:creator>
		<pubDate>Tue, 15 Dec 2009 17:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-73676</guid>
		<description>Also, good job! :-)</description>
		<content:encoded><![CDATA[<p>Also, good job! <img src='http://www.paolocorti.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiberiu Ichim</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-73675</link>
		<dc:creator>Tiberiu Ichim</dc:creator>
		<pubDate>Tue, 15 Dec 2009 17:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-73675</guid>
		<description>I'm trying to adapt this application to a Pinax site I'm doing, and I've noticed some problems with the code on github. First, some of the URLs are hardcoded into the templates (the /bookstore/ prefix), and some of the blocktrans tags display some of the problems that I've explained here: http://play.pixelblaster.ro/blog/archive/2009/11/30/a-dont-do-for-internationalizing-django-templates
(basically, don't split phrases into separate entities, keep them together because the translation might need to switch the position of entities).</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to adapt this application to a Pinax site I&#8217;m doing, and I&#8217;ve noticed some problems with the code on github. First, some of the URLs are hardcoded into the templates (the /bookstore/ prefix), and some of the blocktrans tags display some of the problems that I&#8217;ve explained here: <a href="http://play.pixelblaster.ro/blog/archive/2009/11/30/a-dont-do-for-internationalizing-django-templates" onclick="javascript:pageTracker._trackPageview('/outbound/comment/play.pixelblaster.ro');" rel="nofollow">http://play.pixelblaster.ro/blog/archive/2009/11/30/a-dont-do-for-internationalizing-django-templates</a><br />
(basically, don&#8217;t split phrases into separate entities, keep them together because the translation might need to switch the position of entities).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-70904</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Sat, 05 Dec 2009 08:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-70904</guid>
		<description>Great post! Looking I'm looking forward also to seeing the integration with localization. I'm trying to get my head around it right now, so I think it will be helpful.</description>
		<content:encoded><![CDATA[<p>Great post! Looking I&#8217;m looking forward also to seeing the integration with localization. I&#8217;m trying to get my head around it right now, so I think it will be helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Lee</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-69987</link>
		<dc:creator>Tim Lee</dc:creator>
		<pubDate>Tue, 01 Dec 2009 23:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-69987</guid>
		<description>Great Post! Thanks!

Looking forwards to the sequel :)</description>
		<content:encoded><![CDATA[<p>Great Post! Thanks!</p>
<p>Looking forwards to the sequel <img src='http://www.paolocorti.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-69753</link>
		<dc:creator>Paolo</dc:creator>
		<pubDate>Mon, 30 Nov 2009 17:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-69753</guid>
		<description>Fritz,
as far as I know the Pinax developers will start evaluating the possibility to run Pinax on GAE as soon as Django for non relational database will be released (and so Django will be able to run on GAE)
Refer to this: 
http://groups.google.com/group/pinax-users/browse_thread/thread/b67be1fb3d1dfd68/13835507d705c56a?lnk=gst&amp;q=google+app+engine#13835507d705c56a
and to this:
http://groups.google.com/group/django-developers/browse_thread/thread/fcf501d073ae33f
Of course the same concept is valid for other non relational DB like Amazon SimpleDb, MongoDb, CouchDb and Apache Cassandra.</description>
		<content:encoded><![CDATA[<p>Fritz,<br />
as far as I know the Pinax developers will start evaluating the possibility to run Pinax on GAE as soon as Django for non relational database will be released (and so Django will be able to run on GAE)<br />
Refer to this:<br />
<a href="http://groups.google.com/group/pinax-users/browse_thread/thread/b67be1fb3d1dfd68/13835507d705c56a?lnk=gst&amp;q=google+app+engine#13835507d705c56a" onclick="javascript:pageTracker._trackPageview('/outbound/comment/groups.google.com');" rel="nofollow">http://groups.google.com/group/pinax-users/browse_thread/thread/b67be1fb3d1dfd68/13835507d705c56a?lnk=gst&amp;q=google+app+engine#13835507d705c56a</a><br />
and to this:<br />
<a href="http://groups.google.com/group/django-developers/browse_thread/thread/fcf501d073ae33f" onclick="javascript:pageTracker._trackPageview('/outbound/comment/groups.google.com');" rel="nofollow">http://groups.google.com/group/django-developers/browse_thread/thread/fcf501d073ae33f</a><br />
Of course the same concept is valid for other non relational DB like Amazon SimpleDb, MongoDb, CouchDb and Apache Cassandra.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fritz</title>
		<link>http://www.paolocorti.net/2009/11/29/the-pinax-tutorial-2-developing-the-basic-application-and-plugging-it-in-pinax/comment-page-1/#comment-69727</link>
		<dc:creator>Fritz</dc:creator>
		<pubDate>Mon, 30 Nov 2009 14:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.paolocorti.net/?p=182#comment-69727</guid>
		<description>Wow, that is quite extensive!
Thank you so much.

I was wondering if you might have an idea if this would run easily on google app engine, from doing some reading it seems it would have to. Do you have any ideas on this?</description>
		<content:encoded><![CDATA[<p>Wow, that is quite extensive!<br />
Thank you so much.</p>
<p>I was wondering if you might have an idea if this would run easily on google app engine, from doing some reading it seems it would have to. Do you have any ideas on this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
