<?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 Mere Mortals</title>
	<atom:link href="http://blog.stannard.net.au/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stannard.net.au</link>
	<description></description>
	<lastBuildDate>Sun, 08 Jan 2012 15:53:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on Creating namespaces in JavaScript by Como criar namespace ou package em javascript &#124; Zen Development</title>
		<link>http://blog.stannard.net.au/2011/01/14/creating-namespaces-in-javascript/comment-page-1/#comment-1626</link>
		<dc:creator>Como criar namespace ou package em javascript &#124; Zen Development</dc:creator>
		<pubDate>Sun, 08 Jan 2012 15:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=322#comment-1626</guid>
		<description>[...] Essa solução serve para vários arquivos ou trechos de código com namespace. A solução com apenas 1 arquivo JS pode ser como feito no post creating namespace. [...]</description>
		<content:encoded><![CDATA[<p>[...] Essa solução serve para vários arquivos ou trechos de código com namespace. A solução com apenas 1 arquivo JS pode ser como feito no post creating namespace. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating namespaces in JavaScript by Sr. Oshiro</title>
		<link>http://blog.stannard.net.au/2011/01/14/creating-namespaces-in-javascript/comment-page-1/#comment-1625</link>
		<dc:creator>Sr. Oshiro</dc:creator>
		<pubDate>Sun, 08 Jan 2012 08:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=322#comment-1625</guid>
		<description>Nice article!

I make some improvement to make namespace. The code usage is look like this:
&lt;pre lang=&quot;javascript&quot;&gt;
// before
function MyClass(){
    this.myMethod = function(){
        alert(&#039;Hello world!&#039;);
    }
}
&lt;/pre&gt;
&lt;pre lang=&quot;javascript&quot;&gt;
namespace(&#039;my.package1&#039;, function(){
    // the same class
    function MyClass(){
        this.myMethod = function(){
            alert(&#039;Hello world!&#039;);
        }
    }

    // turn public MyClass
    return { MyClass: MyClass };
});
&lt;/pre&gt;

I put the source code in github: 
https://github.com/fabiooshiro/namespace-js</description>
		<content:encoded><![CDATA[<p>Nice article!</p>
<p>I make some improvement to make namespace. The code usage is look like this:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// before</span>
<span style="color: #003366; font-weight: bold;">function</span> MyClass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">myMethod</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Hello world!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">namespace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'my.package1'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #006600; font-style: italic;">// the same class</span>
    <span style="color: #003366; font-weight: bold;">function</span> MyClass<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">myMethod</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
            <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Hello world!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// turn public MyClass</span>
    <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #009900;">&#123;</span> MyClass<span style="color: #339933;">:</span> MyClass <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I put the source code in github:<br />
<a href="https://github.com/fabiooshiro/namespace-js" rel="nofollow">https://github.com/fabiooshiro/namespace-js</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating namespaces in JavaScript by Phi Le</title>
		<link>http://blog.stannard.net.au/2011/01/14/creating-namespaces-in-javascript/comment-page-1/#comment-1624</link>
		<dc:creator>Phi Le</dc:creator>
		<pubDate>Mon, 02 Jan 2012 15:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=322#comment-1624</guid>
		<description>Thanks for putting this out there, it was easy to understand!</description>
		<content:encoded><![CDATA[<p>Thanks for putting this out there, it was easy to understand!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating namespaces in JavaScript by Stefan</title>
		<link>http://blog.stannard.net.au/2011/01/14/creating-namespaces-in-javascript/comment-page-1/#comment-1623</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Tue, 06 Dec 2011 15:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=322#comment-1623</guid>
		<description>This article was very helpful!</description>
		<content:encoded><![CDATA[<p>This article was very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Django with Apache and mod_wsgi on Ubuntu 10.04 by Kevan Stannard</title>
		<link>http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/comment-page-1/#comment-1622</link>
		<dc:creator>Kevan Stannard</dc:creator>
		<pubDate>Thu, 01 Dec 2011 10:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=200#comment-1622</guid>
		<description>Hi Dave, I&#039;m not an expert in production deployment so don&#039;t want to give you any misleading info. Probably best to post this question the Django user group.

https://groups.google.com/forum/#!forum/django-users

All the best with your project.</description>
		<content:encoded><![CDATA[<p>Hi Dave, I&#8217;m not an expert in production deployment so don&#8217;t want to give you any misleading info. Probably best to post this question the Django user group.</p>
<p><a href="https://groups.google.com/forum/#" rel="nofollow">https://groups.google.com/forum/#</a>!forum/django-users</p>
<p>All the best with your project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Django with Apache and mod_wsgi on Ubuntu 10.04 by Dave</title>
		<link>http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/comment-page-1/#comment-1621</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 01 Dec 2011 06:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=200#comment-1621</guid>
		<description>This is a great resource, many thanks Kevan. Everything followed to the tee and worked immediately.
One thing I must ask though : I&#039;m somewhat of a newbie in this whole arena of Django and WSGI (although have been working with WAMP/LAMP for nigh on 15 years). I&#039;ve been given a django project which is currently being run under django&#039;s own HTTP service (currently running via a console command as &lt;cite&gt;python manage.py runserver my_IP_Address:8000&lt;/cite&gt;) but  I understand that to take that and then host it in a &#039;production&#039; environment I should be using Apache2 and MOD-WSGI. 
Is there an easy way of taking your notes eloquently written here and then applying them to a django project already coded, assuming the project has been written using normal framework filenames and structure?</description>
		<content:encoded><![CDATA[<p>This is a great resource, many thanks Kevan. Everything followed to the tee and worked immediately.<br />
One thing I must ask though : I&#8217;m somewhat of a newbie in this whole arena of Django and WSGI (although have been working with WAMP/LAMP for nigh on 15 years). I&#8217;ve been given a django project which is currently being run under django&#8217;s own HTTP service (currently running via a console command as <cite>python manage.py runserver my_IP_Address:8000</cite>) but  I understand that to take that and then host it in a &#8216;production&#8217; environment I should be using Apache2 and MOD-WSGI.<br />
Is there an easy way of taking your notes eloquently written here and then applying them to a django project already coded, assuming the project has been written using normal framework filenames and structure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Django with Apache and mod_wsgi on Ubuntu 10.04 by Installing Django on Ubuntu 10.04 LTS</title>
		<link>http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/comment-page-1/#comment-1620</link>
		<dc:creator>Installing Django on Ubuntu 10.04 LTS</dc:creator>
		<pubDate>Tue, 22 Nov 2011 18:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=200#comment-1620</guid>
		<description>[...] Mostly this article came from below, but I added to it: http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/     Django, Programming, [...]</description>
		<content:encoded><![CDATA[<p>[...] Mostly this article came from below, but I added to it: <a href="http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/" rel="nofollow">http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/</a>     Django, Programming, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Django with Apache and mod_wsgi on Ubuntu 10.04 by Kevan Stannard</title>
		<link>http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/comment-page-1/#comment-1619</link>
		<dc:creator>Kevan Stannard</dc:creator>
		<pubDate>Tue, 22 Nov 2011 08:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=200#comment-1619</guid>
		<description>Just received an email from Dave Parizek on this entry. Copying his message here in case it helps others. Many thanks Dave.

Hi:

In your article here:

http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/

you need to tell people to remove any default files in

/etc/apache2/sites-enabled

I could not get wsgi test to work until I noticed a default file in sites-enabled was setting a different document root than I wanted.

Thanks!</description>
		<content:encoded><![CDATA[<p>Just received an email from Dave Parizek on this entry. Copying his message here in case it helps others. Many thanks Dave.</p>
<p>Hi:</p>
<p>In your article here:</p>
<p><a href="http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/" rel="nofollow">http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/</a></p>
<p>you need to tell people to remove any default files in</p>
<p>/etc/apache2/sites-enabled</p>
<p>I could not get wsgi test to work until I noticed a default file in sites-enabled was setting a different document root than I wanted.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Django with Apache and mod_wsgi on Ubuntu 10.04 by Aydan</title>
		<link>http://blog.stannard.net.au/2010/12/11/installing-django-with-apache-and-mod_wsgi-on-ubuntu-10-04/comment-page-1/#comment-1618</link>
		<dc:creator>Aydan</dc:creator>
		<pubDate>Thu, 22 Sep 2011 14:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stannard.net.au/?p=200#comment-1618</guid>
		<description>I think this is the best Django+mod_wsgi tutoriol.

Hint: For ubuntu &quot;sudo django-admin.py startproject hello&quot; int work
Use &quot;sudo django-admin startproject hello&quot; ;)</description>
		<content:encoded><![CDATA[<p>I think this is the best Django+mod_wsgi tutoriol.</p>
<p>Hint: For ubuntu &#8220;sudo django-admin.py startproject hello&#8221; int work<br />
Use &#8220;sudo django-admin startproject hello&#8221; <img src='http://blog.stannard.net.au/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Oriented Pagination in ColdFusion by Kevan Stannard</title>
		<link>http://blog.stannard.net.au/2007/11/02/object-oriented-pagination-in-coldfusion/comment-page-1/#comment-1613</link>
		<dc:creator>Kevan Stannard</dc:creator>
		<pubDate>Tue, 13 Sep 2011 10:10:53 +0000</pubDate>
		<guid isPermaLink="false">#comment-1613</guid>
		<description>Hi Thangapandyan

It looks like there is a typo in the getPage function. I&#039;ve fixed it in the post. Rather than this:

&lt;code&gt;
&lt;cfset variables.page = arguments.page&gt;
&lt;cfset var personData = ...&gt;
&lt;/code&gt;

it should have read:

&lt;code&gt;
&lt;cfset var personData = 0&gt;
&lt;cfset variables.page = arguments.page&gt;
&lt;cfset personData = ...&gt;
&lt;/code&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Thangapandyan</p>
<p>It looks like there is a typo in the getPage function. I&#8217;ve fixed it in the post. Rather than this:</p>
<p><code><br />
&lt;cfset variables.page = arguments.page&gt;<br />
&lt;cfset var personData = ...&gt;<br />
</code></p>
<p>it should have read:</p>
<p><code><br />
&lt;cfset var personData = 0&gt;<br />
&lt;cfset variables.page = arguments.page&gt;<br />
&lt;cfset personData = ...&gt;<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

