<?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 for David Fischer dot Name</title>
	<atom:link href="http://www.davidfischer.name/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidfischer.name</link>
	<description>Some Things to Some People</description>
	<lastBuildDate>Mon, 08 Mar 2010 18:05:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Updates March 2010 Edition by David</title>
		<link>http://www.davidfischer.name/2010/03/updates-march-2010-edition/comment-page-1/#comment-145</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=436#comment-145</guid>
		<description>&lt;a href=&quot;#comment-144&quot; rel=&quot;nofollow&quot;&gt;@shermann &lt;/a&gt; 
Launchpad seems like it will work and I don&#039;t see any reason why I can&#039;t learn Bazaar. At first I thought that a wiki might be useful, but I sort of like the idea of keeping that information in the &lt;code&gt;docs/&lt;/code&gt; directory of the source code. This way I can enforce that updates to the codeline come with corresponding updates to the documentation. The way the Django project handles this is truly admirable.</description>
		<content:encoded><![CDATA[<p><a href="#comment-144" rel="nofollow">@shermann </a><br />
Launchpad seems like it will work and I don&#8217;t see any reason why I can&#8217;t learn Bazaar. At first I thought that a wiki might be useful, but I sort of like the idea of keeping that information in the <code>docs/</code> directory of the source code. This way I can enforce that updates to the codeline come with corresponding updates to the documentation. The way the Django project handles this is truly admirable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updates March 2010 Edition by shermann</title>
		<link>http://www.davidfischer.name/2010/03/updates-march-2010-edition/comment-page-1/#comment-144</link>
		<dc:creator>shermann</dc:creator>
		<pubDate>Mon, 08 Mar 2010 08:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=436#comment-144</guid>
		<description>Hi David,

first, thx for your work on this project...after I found it on the interwebs, I&#039;m now using it for some important code in our company.
second, why not use launchpad? sourcecode housing via bzr, bugtracker, team management etc.
and it fits in the pythonic environment of Ubuntu/Launchpad and Django ;) and it gives you a mailinglist (or more) for free, too.
third, it&#039;s a good idea to push this project to a wider audience and to let people actively contribute to your project :)

Keep up the good work,

Stephan aka \sh</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>first, thx for your work on this project&#8230;after I found it on the interwebs, I&#8217;m now using it for some important code in our company.<br />
second, why not use launchpad? sourcecode housing via bzr, bugtracker, team management etc.<br />
and it fits in the pythonic environment of Ubuntu/Launchpad and Django <img src='http://www.davidfischer.name/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  and it gives you a mailinglist (or more) for free, too.<br />
third, it&#8217;s a good idea to push this project to a wider audience and to let people actively contribute to your project <img src='http://www.davidfischer.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Keep up the good work,</p>
<p>Stephan aka \sh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django Scripting and the Crontab by David</title>
		<link>http://www.davidfischer.name/2010/02/django-scripting-and-the-crontab-2/comment-page-1/#comment-143</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 03 Mar 2010 01:13:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=400#comment-143</guid>
		<description>If you override the &lt;code&gt;__init__&lt;/code&gt; method of BaseCommand, you must still call the BaseCommand constructor. When Django attempts to output an error (raised by CommandError) to the screen, it attempts to style it. Errors will be printed in bold red text or something similar based on your terminal settings.

If you see an error like this:
&lt;code&gt;AttributeError: &#039;Command&#039; object has no attribute &#039;style&#039;&lt;/code&gt;

You need the following in your Command constructor:
&lt;pre&gt;&lt;code class=&#039;python&#039;&gt;class Command(BaseCommand):
    def __init__(self):
        # Call the BaseCommand constructor
        super(Command, self).__init__()

        # ...

    def handle(self, *app_labels, **options):
        pass&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>If you override the <code>__init__</code> method of BaseCommand, you must still call the BaseCommand constructor. When Django attempts to output an error (raised by CommandError) to the screen, it attempts to style it. Errors will be printed in bold red text or something similar based on your terminal settings.</p>
<p>If you see an error like this:<br />
<code>AttributeError: 'Command' object has no attribute 'style'</code></p>
<p>You need the following in your Command constructor:</p>
<pre><code class='python'>class Command(BaseCommand):
    def __init__(self):
        # Call the BaseCommand constructor
        super(Command, self).__init__()

        # ...

    def handle(self, *app_labels, **options):
        pass</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Django for Intranet Applications by David</title>
		<link>http://www.davidfischer.name/2009/10/using-django-for-intranet-applications/comment-page-1/#comment-142</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 24 Feb 2010 18:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=295#comment-142</guid>
		<description>&lt;a href=&quot;#comment-141&quot; rel=&quot;nofollow&quot;&gt;@Steven Elliott &lt;/a&gt; 
About what functionality are you concerned? At work, we use Django for moderate traffic (~500 total intranet users), somewhat intensive applications without many problems. In general, I choose Django for nearly every web based project where that decision is left up to me. The applications you described seem pretty straight forward and Django should be able to handle them unless you are doing something crazy.

However, there are cases where Python may not be the best language choice to get the job done or Django may not be the best fit and in those cases you have to consider other options. We have an upcoming code analysis project that will rely heavily on MSSql Server (and other databases) and I have some reservations. Although &lt;a href=&quot;http://code.google.com/p/pyodbc&quot; rel=&quot;nofollow&quot;&gt;pyodbc&lt;/a&gt; is pretty solid for database access from Linux to MSSql, &lt;a href=&quot;http://code.google.com/p/django-pyodbc/&quot; rel=&quot;nofollow&quot;&gt;django-pyodbc&lt;/a&gt; has raised some concerns due to lack of support. We are considering using Python with &lt;a href=&quot;http://www.sqlalchemy.org/&quot; rel=&quot;nofollow&quot;&gt;SQLAlchemy&lt;/a&gt;/&lt;a href=&quot;http://elixir.ematia.de&quot; rel=&quot;nofollow&quot;&gt;Elixir&lt;/a&gt; (with and without Django) as well as Java. This application will have a database with billions of records and will do code analysis on tens of millions of files. However, my concerns aren&#039;t with Django&#039;s ability to handle that data but rather with support for the database packages we&#039;ll be using.</description>
		<content:encoded><![CDATA[<p><a href="#comment-141" rel="nofollow">@Steven Elliott </a><br />
About what functionality are you concerned? At work, we use Django for moderate traffic (~500 total intranet users), somewhat intensive applications without many problems. In general, I choose Django for nearly every web based project where that decision is left up to me. The applications you described seem pretty straight forward and Django should be able to handle them unless you are doing something crazy.</p>
<p>However, there are cases where Python may not be the best language choice to get the job done or Django may not be the best fit and in those cases you have to consider other options. We have an upcoming code analysis project that will rely heavily on MSSql Server (and other databases) and I have some reservations. Although <a href="http://code.google.com/p/pyodbc" rel="nofollow">pyodbc</a> is pretty solid for database access from Linux to MSSql, <a href="http://code.google.com/p/django-pyodbc/" rel="nofollow">django-pyodbc</a> has raised some concerns due to lack of support. We are considering using Python with <a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a>/<a href="http://elixir.ematia.de" rel="nofollow">Elixir</a> (with and without Django) as well as Java. This application will have a database with billions of records and will do code analysis on tens of millions of files. However, my concerns aren&#8217;t with Django&#8217;s ability to handle that data but rather with support for the database packages we&#8217;ll be using.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Django for Intranet Applications by Steven Elliott</title>
		<link>http://www.davidfischer.name/2009/10/using-django-for-intranet-applications/comment-page-1/#comment-141</link>
		<dc:creator>Steven Elliott</dc:creator>
		<pubDate>Wed, 24 Feb 2010 04:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=295#comment-141</guid>
		<description>Interesting post. Sorry I&#039;m a bit late in responding but I&#039;ve just recently started looking at django as an alternative for some intranet-type applications. Part of my requirements include: paid time off tracking, micro-blogging, policy and memo delivery, organization news, inventory management, bug tracking/feature request software. 

I initially looked at Rails for this but I find Ruby very obtuse and Rails to be very confusing (for me). Do you feel that Django can handle &quot;enterprisey&quot; applications. Most of everything youbsee out there is a news site or social networking site. You don&#039;t see a lot of django apps that do a lot of processing and what not.</description>
		<content:encoded><![CDATA[<p>Interesting post. Sorry I&#8217;m a bit late in responding but I&#8217;ve just recently started looking at django as an alternative for some intranet-type applications. Part of my requirements include: paid time off tracking, micro-blogging, policy and memo delivery, organization news, inventory management, bug tracking/feature request software. </p>
<p>I initially looked at Rails for this but I find Ruby very obtuse and Rails to be very confusing (for me). Do you feel that Django can handle &#8220;enterprisey&#8221; applications. Most of everything youbsee out there is a news site or social networking site. You don&#8217;t see a lot of django apps that do a lot of processing and what not.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
