<?xml version="1.0"?>
<rss version="2.0" xmlns:georss="http://www.georss.org/georss">
   <channel>
      <title>The GIS Guy</title>
      <link>http://www.yakjive.com/TheGISGuy/</link>
      <description>A website about GIS, geospatial technology and related technologies.</description>
      <language>en-us</language>
      <pubDate>Wed, 14 Oct 2009 17:54:35 MST</pubDate>
      <managingEditor>chris.j.andrews@gmail.com</managingEditor>
      <webMaster>chris.j.andrews@gmail.com</webMaster>
      <copyright>Copyright (c) 2007 www.yakjive.com/TheGISGuy. All rights reserved.</copyright>
  <item>
    <title>Access Object as Associative Array (Hashtable)</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips4-07.html#39</link>
    <description>
 var obj = new Object();  
obj.test = 1;  
obj.test2 = &#39;a&#39;;  
obj.test3 = new Array(&#39;b&#39;, &#39;c&#39;, &#39;d&#39;); 
obj.toString = function(){ 
return obj[&#39;test&#39;] + &#39;\n&#39; +  
obj[&#39;test2&#39;] + &#39;\n&#39; +  
obj[&#39;test3&#39;];}; 
alert(obj.toString());...</description>
    <pubDate>Mon, 09 Apr 2007 09:37:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips4-07.html#39</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>JavaScript Objects</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#38</link>
    <description> Here&#39;s a simple JavaScript object:
 
 function MyObject(a){

 this.a = a; 
 // Alternatives formethod creation:
 this.function1 = MyObject_function1; 
 this.function2 = new Function(&#39;x&#39;, &#39;if(x){ return 1; } else { return 0;}&#34;);
 this.function3 = function(y){if(y){ return 1; } else { return 0;}};

 }
 function MyObject_function1(z){

 if(z){ return 1; } else { return 0;}

 }
 
 Declare the new object:
 myObject = new MyObject(1);...</description>
    <pubDate>Mon, 19 Mar 2007 16:24:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#38</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>JSDoc</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#34</link>
    <description> OK... I&#39;ve been looking for this for a while, but never did the obvious search, so I never found it.
 deCarta&#39;s developers used JSDoc to build JavaDoc-type documentation for their JavaScript. It&#39;s pretty nice... simply required an ActivePerl install (on Windows) and very minor configuration. I was able to doc my own JavaScript files in less that 10 minutes including the download.
 Very cool....</description>
    <pubDate>Tue, 13 Mar 2007 13:16:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips3-07.html#34</guid>
    <category>US javascript-tips</category>
  </item>
  <item>
    <title>Debugging AJAX calls</title>
    <link>http://www.yakjive.com/TheGISGuy/javascript-tips11-06.html#17</link>
    <description>Having trouble debugging AJAX calls back to your server? Check out FireBug, an addon for the FireFox browser that lets you see calls to the server and even look at the JS code. Pretty cool....</description>
    <pubDate>Wed, 15 Nov 2006 16:33:00 MST</pubDate>
    <guid>http://www.yakjive.com/TheGISGuy/javascript-tips11-06.html#17</guid>
    <category>US javascript</category>
  </item>
   </channel>
</rss>

