<?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: Javascript object literal namespacing</title>
	<atom:link href="http://www.brainonfire.net/blog/javascript-object-literal-namespace/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/</link>
	<description>Tim McCormack, distilled</description>
	<lastBuildDate>Sun, 28 Feb 2010 04:01:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: paul</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-17835</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Mon, 19 Nov 2007 22:17:09 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-17835</guid>
		<description>in regard to eduardo lundgren&#039;s problem. here is my solution to making instances of objects/classes

&lt;pre class=&quot;code&quot; lang=&quot;javascript&quot;&gt;var RequestsList = function(){
	var RequestsL = {
		changed: false,
		list:[],
		add: function(player){
			RequestsL.list.push(player);
			changed = true;
		},
		print: function(){
			output(RequestsL.list);
		}
	};
	return RequestsL;
};


var requests = new RequestsList();
var requests2 = new RequestsList();&lt;/pre&gt;

i hope that this helps people who want to use object literal notation.</description>
		<content:encoded><![CDATA[<p>in regard to eduardo lundgren's problem. here is my solution to making instances of objects/classes</p>
<pre class="code" lang="javascript">var RequestsList = function(){
	var RequestsL = {
		changed: false,
		list:[],
		add: function(player){
			RequestsL.list.push(player);
			changed = true;
		},
		print: function(){
			output(RequestsL.list);
		}
	};
	return RequestsL;
};

var requests = new RequestsList();
var requests2 = new RequestsList();</pre>
<p>i hope that this helps people who want to use object literal notation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaCoder</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-1141</link>
		<dc:creator>DaCoder</dc:creator>
		<pubDate>Thu, 21 Sep 2006 23:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-1141</guid>
		<description>Eduardo,
Ajile might be what you&#039;re looking for. Take a look at http://ajile.iskitz.com/

Look at the Examples section and the API &amp; FAQs section for details.</description>
		<content:encoded><![CDATA[<p>Eduardo,<br />
Ajile might be what you're looking for. Take a look at <a href="http://ajile.iskitz.com/" rel="nofollow">http://ajile.iskitz.com/</a></p>
<p>Look at the Examples section and the API &amp; FAQs section for details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DerekAllard.com &#187; Blog Archive &#187; Javascript object literal namespacing</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-735</link>
		<dc:creator>DerekAllard.com &#187; Blog Archive &#187; Javascript object literal namespacing</dc:creator>
		<pubDate>Tue, 29 Aug 2006 12:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-735</guid>
		<description>[...] Tim McCormack has an excellent summary of Javascript object literal namespacing. [...]</description>
		<content:encoded><![CDATA[<p>[...] Tim McCormack has an excellent summary of Javascript object literal namespacing. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim McCormack</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-505</link>
		<dc:creator>Tim McCormack</dc:creator>
		<pubDate>Sun, 06 Aug 2006 17:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-505</guid>
		<description>Hmm, I haven&#039;t considered how to use namespaces to organize classes -- I&#039;ve ony used it to organize functions and constants.</description>
		<content:encoded><![CDATA[<p>Hmm, I haven't considered how to use namespaces to organize classes -- I've ony used it to organize functions and constants.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eduardo lundgren</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-501</link>
		<dc:creator>eduardo lundgren</dc:creator>
		<pubDate>Sun, 06 Aug 2006 04:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-501</guid>
		<description>how can iÃ‚Â´ll create objects, using namespaces , like this..

obj1 = new MyStuff(myParam);
obj2 = new MyStuff(myParam2);

because my application will can called undefined times... and i dont seeing how it can be possible with namespaces...</description>
		<content:encoded><![CDATA[<p>how can iÃ‚Â´ll create objects, using namespaces , like this..</p>
<p>obj1 = new MyStuff(myParam);<br />
obj2 = new MyStuff(myParam2);</p>
<p>because my application will can called undefined times... and i dont seeing how it can be possible with namespaces...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim McCormack</title>
		<link>http://www.brainonfire.net/blog/javascript-object-literal-namespace/comment-page-1/#comment-492</link>
		<dc:creator>Tim McCormack</dc:creator>
		<pubDate>Fri, 04 Aug 2006 16:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://brainonfire.net/2006/07/06/javascript-object-literal-namespace/#comment-492</guid>
		<description>Gianni has written an excellent guide to clean, modern JS authorship -- check it out.</description>
		<content:encoded><![CDATA[<p>Gianni has written an excellent guide to clean, modern JS authorship -- check it out.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
