<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for 110j</title>
	<atom:link href="http://110j.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://110j.wordpress.com</link>
	<description>When people talk, listen completely. Most people never listen. (Ernest Hemingway)</description>
	<lastBuildDate>Sun, 29 Nov 2009 16:19:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Type safe JPA queries by Phil</title>
		<link>http://110j.wordpress.com/2009/11/29/type-safe-jpa-queries/#comment-427</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Sun, 29 Nov 2009 16:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=384#comment-427</guid>
		<description>Nice - thanks for the heads up ;-)</description>
		<content:encoded><![CDATA[<p>Nice &#8211; thanks for the heads up ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on django template tag for active CSS class by Omer Haderi</title>
		<link>http://110j.wordpress.com/2009/01/25/django-template-tag-for-active-class/#comment-425</link>
		<dc:creator>Omer Haderi</dc:creator>
		<pubDate>Thu, 26 Nov 2009 06:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=198#comment-425</guid>
		<description>Hi,

you have a typo in your def do_feedback(request): if &lt;strong&gt;request.metho&lt;/strong&gt;==&#039;POST&#039;: should be &lt;strong&gt;request.method&lt;/strong&gt;

try that maybe that&#039;s the problem :)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>you have a typo in your def do_feedback(request): if <strong>request.metho</strong>==&#8217;POST&#8217;: should be <strong>request.method</strong></p>
<p>try that maybe that&#8217;s the problem :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on django template tag for active CSS class by Rico</title>
		<link>http://110j.wordpress.com/2009/01/25/django-template-tag-for-active-class/#comment-424</link>
		<dc:creator>Rico</dc:creator>
		<pubDate>Wed, 25 Nov 2009 21:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=198#comment-424</guid>
		<description>Hi,
very nice implementation indeed. It works pretty well when the request.method=&quot;GET&quot;, but when it comes to &quot;POST&quot;, I got some errors and the most relevant one is
VariableDoesNotExist: Failed lookup for key [request] in u&quot;[{u ...

I have the following in my url.py and views.py
&lt;code&gt;
#url.py
...
url(r&#039;^feedback/$&#039;, show_feedback, name=&#039;feedback_url_name&#039;), 
url(r&#039;^thanks/$&#039;, do_thanks, name=&#039;thanks_url_name&#039;),
...

#view.py
def do_feedback(request):
    if request.metho==&#039;POST&#039;:
        #do stuff with the POST data
        #...
        return HttpResponseRedirect(&#039;/thanks/&#039;)
    else:
        return render_to_response( &#039;feedback.html&#039;, {}, context_instance=RequestContext(request) )


def do_thanks(request):
    return render_to_response( &#039;thanks.html&#039;, {}, context_instance=RequestContext(request) )
&lt;/code&gt;

Do you know what might cause the problem? Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
very nice implementation indeed. It works pretty well when the request.method=&#8221;GET&#8221;, but when it comes to &#8220;POST&#8221;, I got some errors and the most relevant one is<br />
VariableDoesNotExist: Failed lookup for key [request] in u&#8221;[{u &#8230;</p>
<p>I have the following in my url.py and views.py<br />
<code><br />
#url.py<br />
...<br />
url(r'^feedback/$', show_feedback, name='feedback_url_name'),<br />
url(r'^thanks/$', do_thanks, name='thanks_url_name'),<br />
...</p>
<p>#view.py<br />
def do_feedback(request):<br />
    if request.metho=='POST':<br />
        #do stuff with the POST data<br />
        #...<br />
        return HttpResponseRedirect('/thanks/')<br />
    else:<br />
        return render_to_response( 'feedback.html', {}, context_instance=RequestContext(request) )</p>
<p>def do_thanks(request):<br />
    return render_to_response( 'thanks.html', {}, context_instance=RequestContext(request) )<br />
</code></p>
<p>Do you know what might cause the problem? Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on URL Binding in Stripes by The Stripes framework &#171; 110j</title>
		<link>http://110j.wordpress.com/2009/11/14/url-binding-in-stripes/#comment-423</link>
		<dc:creator>The Stripes framework &#171; 110j</dc:creator>
		<pubDate>Sat, 14 Nov 2009 21:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=342#comment-423</guid>
		<description>[...] URL Binding Built in Validation Custom Validation Type Conversion Formatting Layouts Using Freemarker Localization Exception Handling Interceptors URL Customization Ajax Integration Framework Extension Framework Customization Testing Dependency Injection (Giuce/Spring) JPA Integration Security and Encryption Cache-ing [...]</description>
		<content:encoded><![CDATA[<p>[...] URL Binding Built in Validation Custom Validation Type Conversion Formatting Layouts Using Freemarker Localization Exception Handling Interceptors URL Customization Ajax Integration Framework Extension Framework Customization Testing Dependency Injection (Giuce/Spring) JPA Integration Security and Encryption Cache-ing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up logging mechanism in Django by John</title>
		<link>http://110j.wordpress.com/2009/06/27/setting-up-logging-mechanism-in-django/#comment-405</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 06 Nov 2009 13:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=277#comment-405</guid>
		<description>Thanks, this helped me out.</description>
		<content:encoded><![CDATA[<p>Thanks, this helped me out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Stripes framework by Omer Haderi</title>
		<link>http://110j.wordpress.com/2009/10/03/the-stripes-framework/#comment-131</link>
		<dc:creator>Omer Haderi</dc:creator>
		<pubDate>Sun, 04 Oct 2009 08:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=310#comment-131</guid>
		<description>hello Freddy,

well... I think we should thank you for the great job you have done with Stripes and the Book. 
Unfortunately I discovered Stripes only this summer and I am really surprised that it&#039;s not mainstream. 
From now on it will be the framework of my choice :) and maybe I can find the time to also contribute!

Best,
Omer</description>
		<content:encoded><![CDATA[<p>hello Freddy,</p>
<p>well&#8230; I think we should thank you for the great job you have done with Stripes and the Book.<br />
Unfortunately I discovered Stripes only this summer and I am really surprised that it&#8217;s not mainstream.<br />
From now on it will be the framework of my choice :) and maybe I can find the time to also contribute!</p>
<p>Best,<br />
Omer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Stripes framework by Frederic Daoud</title>
		<link>http://110j.wordpress.com/2009/10/03/the-stripes-framework/#comment-130</link>
		<dc:creator>Frederic Daoud</dc:creator>
		<pubDate>Sun, 04 Oct 2009 04:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=310#comment-130</guid>
		<description>Hi Omer,

Thank you for the great post and the nice comments about the book! I am really glad that you liked the book and that you are enjoying using Stripes.

Cheers,
Freddy</description>
		<content:encoded><![CDATA[<p>Hi Omer,</p>
<p>Thank you for the great post and the nice comments about the book! I am really glad that you liked the book and that you are enjoying using Stripes.</p>
<p>Cheers,<br />
Freddy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Stripes &amp; Google App Engine by The Stripes framework &#171; 110j</title>
		<link>http://110j.wordpress.com/2009/09/19/getting-started-with-stripes-google-app-engine/#comment-126</link>
		<dc:creator>The Stripes framework &#171; 110j</dc:creator>
		<pubDate>Sat, 03 Oct 2009 00:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=298#comment-126</guid>
		<description>[...] would like to start playing with Stripes and google app engine have a look at the following links: http://110j.wordpress.com/2009/09/19/getting-started-with-stripes-google-app-engine/ [...]</description>
		<content:encoded><![CDATA[<p>[...] would like to start playing with Stripes and google app engine have a look at the following links: <a href="http://110j.wordpress.com/2009/09/19/getting-started-with-stripes-google-app-engine/" rel="nofollow">http://110j.wordpress.com/2009/09/19/getting-started-with-stripes-google-app-engine/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Stripes &amp; Google App Engine by Redoing Guestbook example with Stripes &#171; 110j</title>
		<link>http://110j.wordpress.com/2009/09/19/getting-started-with-stripes-google-app-engine/#comment-113</link>
		<dc:creator>Redoing Guestbook example with Stripes &#171; 110j</dc:creator>
		<pubDate>Sun, 20 Sep 2009 17:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=298#comment-113</guid>
		<description>[...] a simple example that stores, retrieves and renders entities in google app engine. After the first tutorial on how to deploy Stripes in google app engine I decided to re-write this example using the Stripes [...]</description>
		<content:encoded><![CDATA[<p>[...] a simple example that stores, retrieves and renders entities in google app engine. After the first tutorial on how to deploy Stripes in google app engine I decided to re-write this example using the Stripes [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up logging mechanism in Django by flash</title>
		<link>http://110j.wordpress.com/2009/06/27/setting-up-logging-mechanism-in-django/#comment-108</link>
		<dc:creator>flash</dc:creator>
		<pubDate>Tue, 07 Jul 2009 20:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://110j.wordpress.com/?p=277#comment-108</guid>
		<description>Cool!</description>
		<content:encoded><![CDATA[<p>Cool!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
