<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>DojoCampus</title>
	<atom:link href="http://dojocampus.org/content/feed/" rel="self" type="application/rss+xml" />
	<link>http://dojocampus.org/content</link>
	<description>The definitive resource for all things Dojo: past, present, future.</description>
	<pubDate>Wed, 23 Jul 2008 16:22:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9;DojoCampusFolks </copyright>
		<managingEditor>nonken@dojotoolkit.org (DojoCampusFolks)</managingEditor>
		<webMaster>nonken@dojotoolkit.org(DojoCampusFolks)</webMaster>
		<category></category>
		<ttl>1440</ttl>
		<itunes:keywords>Dojo Toolkit, Dojo, Ajax, JavaScript, Web 2.0</itunes:keywords>
		<itunes:subtitle>Everything Dojo from the people making Dojo</itunes:subtitle>
		<itunes:summary>Dojo Toolkit Developers share their insights on anything JavaScript, Dojo, or Ajax.  </itunes:summary>
		<itunes:author>DojoCampusFolks</itunes:author>
		<itunes:category text="Technology">
  <itunes:category text="Tech News"/>
</itunes:category>
<itunes:category text="Technology">
  <itunes:category text="Software How-To"/>
</itunes:category>
<itunes:category text="Technology">
  <itunes:category text="Podcasting"/>
</itunes:category>
		<itunes:owner>
			<itunes:name>DojoCampusFolks</itunes:name>
			<itunes:email>nonken@dojotoolkit.org</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://dojocampus.org/images/podcast/logo300.png" />
		<image>
			<url>http://dojocampus.org/images/podcast/logo144.png</url>
			<title>DojoCampus</title>
			<link>http://dojocampus.org/content</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Variable Properties</title>
		<link>http://dojocampus.org/content/2008/07/17/variable-properties/</link>
		<comments>http://dojocampus.org/content/2008/07/17/variable-properties/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:09:20 +0000</pubDate>
		<dc:creator>dante</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[dojo.style]]></category>

		<category><![CDATA[Objects]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=155</guid>
		<description><![CDATA[The shortest cookie ever: How to assign properties from variable hashes, or: Why dotted notation rocks.

In JS, we have objects:
&#160;
var foo = &#123;
	name:&#34;person&#34;,
	age:42,
	height:&#34;tall&#34;
&#125;;
&#160;
We can access the values contained with foo via dotted notation:
&#160;
console.log&#40;foo.name, foo.age, foo.height == &#34;tall&#34;&#41;;
&#62;&#62;&#62; person, 42, true
&#160;
 We can access the dotted values with brackets:
&#160;
var name = foo&#91;&#34;name&#34;&#93;;
console.log&#40;name&#41;;
&#62;&#62; person
&#160;
But a lot of [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/17/variable-properties/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Submitting dijit.Editor&#8217;s content in a form</title>
		<link>http://dojocampus.org/content/2008/07/16/submitting-dijiteditors-content-in-a-form/</link>
		<comments>http://dojocampus.org/content/2008/07/16/submitting-dijiteditors-content-in-a-form/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 14:30:23 +0000</pubDate>
		<dc:creator>trutwijd</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[dijit.Editor]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=153</guid>
		<description><![CDATA[Here's a simple HOWTO to submit your editor content inside a form tag.  There are other ways to do this, but this is what I do.

1. Make sure your form tag has an id attribute - in my example I will assume this to be "my_form"
2. Create a hidden input field, make sure it [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/16/submitting-dijiteditors-content-in-a-form/feed/</wfw:commentRss>
		</item>
		<item>
		<title>dojo.hitch and scope - more romance</title>
		<link>http://dojocampus.org/content/2008/07/15/dojohitch-and-scope-again/</link>
		<comments>http://dojocampus.org/content/2008/07/15/dojohitch-and-scope-again/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 11:34:22 +0000</pubDate>
		<dc:creator>sfoster</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[closure]]></category>

		<category><![CDATA[dojo.hitch]]></category>

		<category><![CDATA[Scope]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=154</guid>
		<description><![CDATA[Scope in javascript is one of those topics that won't go away. It continues to trip people up again and again, despite numerous articles including a great cookie right here on dojo campus. In this cookie, I'm going to sneak up on dojo.hitch from a different angle by re-visiting some of the basics of how [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/15/dojohitch-and-scope-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title></title>
		<link>http://dojocampus.org/content/2008/07/10/152/</link>
		<comments>http://dojocampus.org/content/2008/07/10/152/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 19:42:34 +0000</pubDate>
		<dc:creator>dante</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[Dojo Dev Day]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=152</guid>
		<description><![CDATA[Dojo just announced the details of their next developer/community Day in Boston, MA during the upcoming Ajax Experience. The full details are available on the Dojo Toolkit website. 
Hope to see you there!
(Also, there is a tentative "dot release" DDD:4.5 at OSCON in Portland, OR ... though no real details exist. It will likely simply [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/10/152/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Love is in the AIR</title>
		<link>http://dojocampus.org/content/2008/07/09/love-is-in-the-air/</link>
		<comments>http://dojocampus.org/content/2008/07/09/love-is-in-the-air/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 15:34:36 +0000</pubDate>
		<dc:creator>nonken</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=151</guid>
		<description><![CDATA[SitePen Inc. has released their incredible Dojo Toolbox, an Adobe AIR powered application you can use at those times when you don't have internet, when you're too lazy to use the internet or when you just want to use an amazing piece of dojo code including an api viewer, a dojo build tool and a [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/09/love-is-in-the-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dates to remember</title>
		<link>http://dojocampus.org/content/2008/07/03/dates-to-remember/</link>
		<comments>http://dojocampus.org/content/2008/07/03/dates-to-remember/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 14:18:52 +0000</pubDate>
		<dc:creator>peller</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[dojo.date]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=150</guid>
		<description><![CDATA[Dealing with dates in software can be trickier than it seems.  The web and Javascript add to the challenge.  Because your code is on the web, users are likely to execute it in a variety of platforms in different locales and time zones, and Javascript isn't always helpful abstracting these issues in development.  Javascript has [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/07/03/dates-to-remember/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Making Browser Sense &#8230; dojo.isBrowser?</title>
		<link>http://dojocampus.org/content/2008/06/26/browser-sense/</link>
		<comments>http://dojocampus.org/content/2008/06/26/browser-sense/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 12:20:51 +0000</pubDate>
		<dc:creator>gtducati</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[Browser Detection]]></category>

		<category><![CDATA[Dojo]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=145</guid>
		<description><![CDATA[Every now and then, you're going to run into a problem with a particular browser (I'm sure you know what I'm talking about), and so you need your JavaScript to adjust accordingly. Browser detection is the answer and here's a short cookie on how you can do it using Dojo.
There are a few browsers that [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/06/26/browser-sense/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Extending dojo.dnd with a creator function</title>
		<link>http://dojocampus.org/content/2008/06/24/extending-dojodnd-with-a-creator-function/</link>
		<comments>http://dojocampus.org/content/2008/06/24/extending-dojodnd-with-a-creator-function/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 09:53:34 +0000</pubDate>
		<dc:creator>jbalogh</dc:creator>
		
		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[Intermediate]]></category>

		<category><![CDATA[dojo.dnd]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=144</guid>
		<description><![CDATA[Following the Dojo philosophy of "build with, not on", dojo.dnd provides a terrific API for getting the right behaviour for your app, with plenty of extension points and monkeypatching opportunities.  Making a creator function for dojo.dnd.Container is the most obvious way to customize dojo.dnd, because it gets called anytime a container or avatar wants [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/06/24/extending-dojodnd-with-a-creator-function/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Separating Content from Presentation the Dojo Way</title>
		<link>http://dojocampus.org/content/2008/06/18/separating-content-from-presentation-ajax/</link>
		<comments>http://dojocampus.org/content/2008/06/18/separating-content-from-presentation-ajax/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 11:19:35 +0000</pubDate>
		<dc:creator>gtducati</dc:creator>
		
		<category><![CDATA[Beginners]]></category>

		<category><![CDATA[Dojo Cookies]]></category>

		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[dijit.layout.AccordionContainer]]></category>

		<category><![CDATA[dijit.layout.AccordionPane]]></category>

		<category><![CDATA[dojo.xhrGet()]]></category>

		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=136</guid>
		<description><![CDATA[One of the cool things about Dojo is the dojo.xhrGet() function. It's powerful because it makes transparent the browser dependent transports that make AJAX possible. In this cookie, we're going to explore a simple use case in Dojo to separate content from the presentation of a page. This means that if you want to update [...]]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/06/18/separating-content-from-presentation-ajax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dojo Build 401: End Results</title>
		<link>http://dojocampus.org/content/2008/06/12/dojo-build-401-end-results/</link>
		<comments>http://dojocampus.org/content/2008/06/12/dojo-build-401-end-results/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 13:42:58 +0000</pubDate>
		<dc:creator>dante</dc:creator>
		
		<category><![CDATA[Beginners]]></category>

		<category><![CDATA[Video]]></category>

		<category><![CDATA[build]]></category>

		<category><![CDATA[gzip]]></category>

		<guid isPermaLink="false">http://dojocampus.org/content/?p=124</guid>
		<description><![CDATA[In this, the shortest build screencast ever, we inspect the overall results of the build project once placed on an properly configured server (mod_deflate). Nothing particularly exciting to be learned here, other than seeing the end result of 250k whittled down to a bite size hunk of (cache-able) JavaScript.







]]></description>
		<wfw:commentRss>http://dojocampus.org/content/2008/06/12/dojo-build-401-end-results/feed/</wfw:commentRss>
<enclosure url="http://media.dojocampus.org/video/04_buildGzip.mov" length="2635088" type="video/quicktime" />
		</item>
	</channel>
</rss>
