<?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: Python on Rails: The bazzar</title>
	<atom:link href="http://www.larsen-b.com/Article/216.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com/Article/216.html</link>
	<description>Titanium Exposé</description>
	<lastBuildDate>Mon, 02 Jul 2018 13:54:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
	<item>
		<title>By: Manuzhai</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-449</link>
		<dc:creator>Manuzhai</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-449</guid>
		<description><![CDATA[&lt;p&gt;Have you looked closely at Django? It has a concept of apps, that reside within a project and are portable over to other projects. This would allow you to for example use a wiki app in many different projects (just change the templates as necessary).&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Have you looked closely at Django? It has a concept of apps, that reside within a project and are portable over to other projects. This would allow you to for example use a wiki app in many different projects (just change the templates as necessary).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Marshall</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-450</link>
		<dc:creator>Matthew Marshall</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-450</guid>
		<description><![CDATA[BTW, Django recently changed it&#039;s module api to something quite similar to SQLObject.&#160; Also, while SCGI is not yet supported, you can put it behind lighttpd with FastCGI.&#160; (I am doing that currently.)&lt;br /&gt;
&lt;br /&gt;
For me, the main thing django has going for it is the free admin interface.&#160; (Although, the URL mapping is pretty cool too.)&lt;br /&gt;
&lt;br /&gt;
MWM]]></description>
		<content:encoded><![CDATA[<p>BTW, Django recently changed it&#8217;s module api to something quite similar to SQLObject.&nbsp; Also, while SCGI is not yet supported, you can put it behind lighttpd with FastCGI.&nbsp; (I am doing that currently.)</p>
<p>For me, the main thing django has going for it is the free admin interface.&nbsp; (Although, the URL mapping is pretty cool too.)</p>
<p>MWM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Shell</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-451</link>
		<dc:creator>Jeff Shell</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-451</guid>
		<description><![CDATA[&lt;p&gt;What about Zope 3? It&#039;s more than ready for production, there are some nice finished applications written with it, and my company did quite a substantial application from scratch in about three weeks. Zope 3 is like all of the good aspects of the CMF / Plone, but without the bloat or need to be content specific. It can be made even lighter. But with zope.app, you do get a fairly complete framework, and a more flexible base to work from to build more specific frameworks with.&lt;/p&gt;
&lt;p&gt;Components are more pluggable and replaceable than in Zope 2, and it&#039;s easier to write reusable utilities and libraries and components than before. The &lt;a class=&quot;reference&quot; href=&quot;http://www.schooltool.org/schoolbell&quot;&gt;Schoolbell&lt;/a&gt; calendaring application (a complete Zope 3 app) has a &lt;a class=&quot;reference&quot; href=&quot;http://source.schooltool.org/viewcvs/trunk/schooltool/src/schooltool/relationship/&quot;&gt;Relationship package&lt;/a&gt; that can be used to specify complex inter-object relationships. A very handy package on its own. The &lt;a class=&quot;reference&quot; href=&quot;http://codespeak.net/z3/&quot;&gt;Zope 3 Base Project&lt;/a&gt; has a few interesting projects, including a SQLObject support lib for using SQLObject based objects in Zope 3, and there&#039;s &lt;a class=&quot;reference&quot; href=&quot;http://faassen.n--tree.net/blog/view/weblog/2005/09/09/0&quot;&gt;Hurry&lt;/a&gt; which provides some components writing easier catalog queries, doing simple workflow, and providing a file upload schema item and widget. On the high end of content management tool development, there&#039;s the Z3ECM project at &lt;a class=&quot;reference&quot; href=&quot;http://www.z3lab.org/&quot;&gt;http://www.z3lab.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Note that the name for the Zope 3 project, as it was incepted in the Zope development subsite, was &#039;Component Architecture&#039;&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>What about Zope 3? It&#8217;s more than ready for production, there are some nice finished applications written with it, and my company did quite a substantial application from scratch in about three weeks. Zope 3 is like all of the good aspects of the CMF / Plone, but without the bloat or need to be content specific. It can be made even lighter. But with zope.app, you do get a fairly complete framework, and a more flexible base to work from to build more specific frameworks with.</p>
<p>Components are more pluggable and replaceable than in Zope 2, and it&#8217;s easier to write reusable utilities and libraries and components than before. The <a class="reference" href="http://www.schooltool.org/schoolbell">Schoolbell</a> calendaring application (a complete Zope 3 app) has a <a class="reference" href="http://source.schooltool.org/viewcvs/trunk/schooltool/src/schooltool/relationship/">Relationship package</a> that can be used to specify complex inter-object relationships. A very handy package on its own. The <a class="reference" href="http://codespeak.net/z3/">Zope 3 Base Project</a> has a few interesting projects, including a SQLObject support lib for using SQLObject based objects in Zope 3, and there&#8217;s <a class="reference" href="http://faassen.n--tree.net/blog/view/weblog/2005/09/09/0">Hurry</a> which provides some components writing easier catalog queries, doing simple workflow, and providing a file upload schema item and widget. On the high end of content management tool development, there&#8217;s the Z3ECM project at <a class="reference" href="http://www.z3lab.org/">http://www.z3lab.org/</a></p>
<p>Note that the name for the Zope 3 project, as it was incepted in the Zope development subsite, was &#8216;Component Architecture&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-452</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-452</guid>
		<description><![CDATA[&lt;p&gt;There is SCGI support for Django : &lt;a class=&quot;reference&quot; href=&quot;https://simon.bofh.ms/cgi-bin/trac-django-projects.cgi/wiki/DjangoScgi&quot;&gt;https://simon.bofh.ms/cgi-bin/trac-django-projects.cgi/wiki/DjangoScgi&lt;/a&gt;&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>There is SCGI support for Django : <a class="reference" href="https://simon.bofh.ms/cgi-bin/trac-django-projects.cgi/wiki/DjangoScgi">https://simon.bofh.ms/cgi-bin/trac-django-projects.cgi/wiki/DjangoScgi</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sylvain Hellegouarch</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-453</link>
		<dc:creator>Sylvain Hellegouarch</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-453</guid>
		<description><![CDATA[&lt;p&gt;I&#039;m not sure to understand the all point of this article to be honest. Django has started quite a long time ago, even before some poeple in the Python community starts only talking about Rails. Evene though Django hit the public road last july it has been built before then.&lt;/p&gt;
&lt;p&gt;Anyway, so what all those frameworks offer the same as Rails. There are not 1000 different ways of building Web framework, are they?&lt;/p&gt;
&lt;p&gt;So what is the point of your article really?&lt;/p&gt;
&lt;p&gt;&quot;&quot;&quot;What we need now, is a application framework. Something we can use to build website not webapp.&quot;&quot;&quot;&lt;/p&gt;
&lt;p&gt;Uh?! I don&#039;t understand that either. Would you mind explaining it?&lt;/p&gt;
&lt;ul class=&quot;simple&quot;&gt;
&lt;li&gt;Sylvain&lt;/li&gt;
&lt;/ul&gt;
]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure to understand the all point of this article to be honest. Django has started quite a long time ago, even before some poeple in the Python community starts only talking about Rails. Evene though Django hit the public road last july it has been built before then.</p>
<p>Anyway, so what all those frameworks offer the same as Rails. There are not 1000 different ways of building Web framework, are they?</p>
<p>So what is the point of your article really?</p>
<p>&quot;&quot;&quot;What we need now, is a application framework. Something we can use to build website not webapp.&quot;&quot;&quot;</p>
<p>Uh?! I don&#8217;t understand that either. Would you mind explaining it?</p>
<ul class="simple">
<li>Sylvain</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>By: deelan</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-454</link>
		<dc:creator>deelan</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-454</guid>
		<description><![CDATA[&lt;p&gt;Just to clarify,&lt;/p&gt;
&lt;p&gt;Subway integrates FormEncode too, has autocompilation of Cheetah templates, partial templates and simple authorization/authentication facilities. We are also integrating Django-like filters with Cheetah. Subway aims to reduce boilerplate code as a mimimun -- and i think it&#039;s pretty good at that (compared to the rivals). Version 0.2 is finally coming into shape and will feature a stable API.
You can spot an example using MochiKit in the Subway SVN repos. Personally I have very high hopes for the MochiKit future.&lt;/p&gt;
&lt;p&gt;We are also seeking developers to join the project, please join us instead to start your own.  :)&lt;/p&gt;
&lt;p&gt;-- deelan.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Just to clarify,</p>
<p>Subway integrates FormEncode too, has autocompilation of Cheetah templates, partial templates and simple authorization/authentication facilities. We are also integrating Django-like filters with Cheetah. Subway aims to reduce boilerplate code as a mimimun &#8212; and i think it&#8217;s pretty good at that (compared to the rivals). Version 0.2 is finally coming into shape and will feature a stable API.<br />
You can spot an example using MochiKit in the Subway SVN repos. Personally I have very high hopes for the MochiKit future.</p>
<p>We are also seeking developers to join the project, please join us instead to start your own.  :)</p>
<p>&#8211; deelan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jkx</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-455</link>
		<dc:creator>Jkx</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-455</guid>
		<description><![CDATA[&lt;p&gt;Oh god, so much answer.&lt;/p&gt;
&lt;ul class=&quot;simple&quot;&gt;
&lt;li&gt;Manuzhai, you mean you can reuse your own code that&#039;s it. But does Django support project sharing ? I mean does it have a standard way to look at usership, or access role, and so many other aspect of a website. Perhaps, I loose something but I don&#039;t find this kind of stuff in the doc.&lt;/li&gt;
&lt;li&gt;Matthew, Phil, ok Django has a SCGI support that&#039;s a good news, but only a part of the problem.&lt;/li&gt;
&lt;li&gt;Jeff, I work in a Zope company for a while, and (beside I forgot a big part) I know quite well Zope. For me Zope 3 has nothing to deal with Rails, but it provide some good Component Arch. Most products I tested for Zope 3 are buggy and Zope 3 isn&#039;t stable enought to use it in company products. Not talking about the docs ..&lt;/li&gt;
&lt;li&gt;Sylvain, this is the main argument for Django: We wrote this for a long time now. Ok and ?&lt;/li&gt;
&lt;li&gt;Deelan, please take a chat with TurboGears. I really think you should merge this too projects. The only difference is the templating engine, and yes filter in cheetah will rock!&lt;/li&gt;
&lt;/ul&gt;
]]></description>
		<content:encoded><![CDATA[<p>Oh god, so much answer.</p>
<ul class="simple">
<li>Manuzhai, you mean you can reuse your own code that&#8217;s it. But does Django support project sharing ? I mean does it have a standard way to look at usership, or access role, and so many other aspect of a website. Perhaps, I loose something but I don&#8217;t find this kind of stuff in the doc.</li>
<li>Matthew, Phil, ok Django has a SCGI support that&#8217;s a good news, but only a part of the problem.</li>
<li>Jeff, I work in a Zope company for a while, and (beside I forgot a big part) I know quite well Zope. For me Zope 3 has nothing to deal with Rails, but it provide some good Component Arch. Most products I tested for Zope 3 are buggy and Zope 3 isn&#8217;t stable enought to use it in company products. Not talking about the docs ..</li>
<li>Sylvain, this is the main argument for Django: We wrote this for a long time now. Ok and ?</li>
<li>Deelan, please take a chat with TurboGears. I really think you should merge this too projects. The only difference is the templating engine, and yes filter in cheetah will rock!</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sylvain Hellegouarch</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-456</link>
		<dc:creator>Sylvain Hellegouarch</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-456</guid>
		<description><![CDATA[&lt;p&gt;Well that&#039;s my question too. I don&#039;t see the point of your article at all. I&#039;m sorry but I just don&#039;t get your point :/&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Well that&#8217;s my question too. I don&#8217;t see the point of your article at all. I&#8217;m sorry but I just don&#8217;t get your point :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-457</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-457</guid>
		<description><![CDATA[&lt;p&gt;If i can add a bit to the discussion, Django follows the loose-coupling principle, that means it has to have a minimum set of external dependencies, so as to ease the installation by the lambda developer.&lt;/p&gt;
&lt;p&gt;Though, now that Eggs are all around, i guess this is a bit less important, but heh, Django was designed long time before Eggs&lt;/p&gt;
&lt;p&gt;(Maintenant on sait qui de l&#039;oeuf ou de la poule etait le premier :)) )&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>If i can add a bit to the discussion, Django follows the loose-coupling principle, that means it has to have a minimum set of external dependencies, so as to ease the installation by the lambda developer.</p>
<p>Though, now that Eggs are all around, i guess this is a bit less important, but heh, Django was designed long time before Eggs</p>
<p>(Maintenant on sait qui de l&#8217;oeuf ou de la poule etait le premier :)) )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Boddie</title>
		<link>http://www.larsen-b.com/Article/216.html/comment-page-1#comment-458</link>
		<dc:creator>Paul Boddie</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-458</guid>
		<description><![CDATA[On the subject of deploying applications, precisely why I developed WebStack (and presumably why the WSGI people did their thing) was to avoid the &quot;it only runs on mod_python/Zope/FOTW&quot;. But it&#039;s been glaringly obvious to me for a long time that even framework authors want to start from nothing and provide some end-to-end solution, even if that means coming up very short at one end.]]></description>
		<content:encoded><![CDATA[<p>On the subject of deploying applications, precisely why I developed WebStack (and presumably why the WSGI people did their thing) was to avoid the &#8220;it only runs on mod_python/Zope/FOTW&#8221;. But it&#8217;s been glaringly obvious to me for a long time that even framework authors want to start from nothing and provide some end-to-end solution, even if that means coming up very short at one end.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
