<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page XHConn 
             and everything recently tagged XHConn -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>XHConn on SWiK</title>
        <doap:name>XHConn</doap:name>
        <doap:description>&lt;p&gt;hello&lt;/p&gt;
</doap:description>
        <description>hello
</description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/XHConn</link>
        <doap:homepage>http://xkr.us/code/javascript/XHConn/</doap:homepage>
                <category>Ajax</category>
        <category>Library</category>
        <category>JavaScript</category>
        <category>xmlhttprequest</category>
        <category>simple</category>
        <category>javascript-library</category>
        <category>xhconn</category>

        <pubDate>Fri, 29 Jul 2005 13:15:13 -0700</pubDate>
        <lastBuildDate>Sat, 21 Jun 2008 17:07:39 -0700</lastBuildDate>
            
        <item>
            <title>xkr.us - XHConn - A Simple XMLHTTP Interface</title>
            <link>http://swik.net/XML/del.icio.us%2Ftag%2Fxml/xkr.us+-+XHConn+-+A+Simple+XMLHTTP+Interface/5piw</link>
            <description></description>
            
            <pubDate>Wed, 02 May 2007 15:44:08 -0700</pubDate>
        </item>
            
        <item>
            <title>XHConn Source</title>
            <link>http://swik.net/XHConn/XHConn+Source</link>
            <description>&lt;pre&gt;
/** XHConn - Simple XMLHTTP Interface - bfults@gmail.com - 2005-04-08        **
 ** Code licensed under Creative Commons Attribution-ShareAlike License      **
 ** http://creativecommons.org/licenses/by-sa/2.0/                           **/
function XHConn()
{
  var xmlhttp, bComplete = false;
  try { xmlhttp = new ActiveXObject(&quot;Msxml2.XMLHTTP&quot;); }
  catch (e) { try { xmlhttp = new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); }
  catch (e) { try { xmlhttp = new XMLHttpRequest(); }
  catch (e) { xmlhttp = false; }}}
  if (!xmlhttp) return null;
  this.connect = function(sURL, sMethod, sVars, fnDone)
  {
    if (!xmlhttp) return false;
    bComplete = false;
    sMethod = sMethod.toUpperCase();
    try {
      if (sMethod == &quot;GET&quot;)
      {
        xmlhttp.open(sMethod, sURL+&quot;?&quot;+sVars, true);
        sVars = &quot;&quot;;
      }
      else
      {
        xmlhttp.open(sMethod, sURL, true);
        xmlhttp.setRequestHeader(&quot;Method&quot;, &quot;POST &quot;+sURL+&quot; HTTP/1.1&quot;);
        xmlhttp.setRequestHeader(&quot;Content-Type&quot;,
          &quot;application/x-www-form-urlencoded&quot;);
      }
      xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState == 4 &amp;#38;&amp;#38; !bComplete)
        {
          bComplete = true;
          fnDone(xmlhttp);
        }};
      xmlhttp.send(sVars);
    }
    catch(z) { return false; }
    return true;
  };
  return this;
}
&lt;/pre&gt;
</description>
                        <category>code</category>
            <category>xhconn</category>

            <pubDate>Thu, 23 Feb 2006 14:14:59 -0800</pubDate>
        </item>
                </channel>
</rss>
