You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by bu...@apache.org on 2012/07/16 03:44:44 UTC

svn commit: r825916 [7/13] - in /websites/staging/libcloud/trunk/content: ./ apidocs/0.4.0/

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.LinodeResponse.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.LinodeResponse.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.LinodeResponse.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,182 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.linode.LinodeResponse : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.l.LinodeResponse(<a href="libcloud.base.Response.html">Response</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.linode.html">linode</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py#L76">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.linode.LinodeResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Linode API response
+
+Wraps the HTTP response returned by the Linode API, which should be JSON in
+this structure:
+
+   {
+     "ERRORARRAY": [ ... ],
+     "DATA": [ ... ],
+     "ACTION": " ... "
+   }
+
+libcloud does not take advantage of batching, so a response will always
+reflect the above format.  A few weird quirks are caught here as well.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id81">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.linode.LinodeResponse.html#__init__">__init__</a></td>
+    <td><span>Instantiate a LinodeResponse from the HTTP response</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.linode.LinodeResponse.html#parse_body">parse_body</a></td>
+    <td><span>Parse the body of the response into JSON objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.linode.LinodeResponse.html#success">success</a></td>
+    <td><span>Check the response for success</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.linode.LinodeResponse.html#_make_excp">_make_excp</a></td>
+    <td><span>Convert an API error to a LinodeException instance</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.Response.html">Response</a>:
+        </p>
+        <table class="children sortable" id="id82">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.Response.html#parse_error">parse_error</a></td>
+    <td><span>Parse the error messages.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.linode.LinodeResponse.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, response):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py#L90" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#__init__">libcloud.base.Response.__init__</a></div>
+    <div>Instantiate a LinodeResponse from the HTTP response<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">response</td><td>The raw response returned by urllib</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">parsed <a 
+href="libcloud.drivers.linode.LinodeResponse.html"><code>LinodeResponse</code></a></td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.linode.LinodeResponse.parse_body">
+    
+  </a>
+  <a name="parse_body">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_body(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py#L109" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#parse_body">libcloud.base.Response.parse_body</a></div>
+    <div>Parse the body of the response into JSON objects</p>
+<p>If the response chokes the parser, action and data will be returned as 
+None and errorarray will indicate an invalid JSON exception.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of objects and <code>list</code> of errors</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.linode.LinodeResponse.success">
+    
+  </a>
+  <a name="success">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    success(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py#L140" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#success">libcloud.base.Response.success</a></div>
+    <div>Check the response for success</p>
+<p>The way we determine success is by the presence of an error in 
+ERRORARRAY.  If one is there, we assume the whole request failed.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> indicating a successful request</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.linode.LinodeResponse._make_excp">
+    
+  </a>
+  <a name="_make_excp">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _make_excp(self, error):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py#L149" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div>Convert an API error to a LinodeException instance<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">error</td><td>JSON object containing <code>ERRORCODE</code> and <code>ERRORMESSAGE</code> (type: dict)</td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.linode.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,77 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.linode : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="module">l.d.linode : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/linode.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>libcloud driver for the Linode(R) API</p>
+<p>This driver implements all libcloud functionality for the Linode API.  
+Since the API is a bit more fine-grained, create_node abstracts a 
+significant amount of work (and may take a while to run).</p>
+<p>Linode home page                    http://www.linode.com/ Linode API 
+documentation            http://www.linode.com/api/ Alternate bindings for 
+reference    http://github.com/tjfontaine/linode-python</p>
+<p>Linode(R) is a registered trademark of Linode, LLC.</p>
+<p>Maintainer: Jed Smith &lt;jed@linode.com&gt;<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id79">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.linode.LinodeException.html">LinodeException</a></td>
+    <td><span>Error originating from the Linode API</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.linode.LinodeResponse.html">LinodeResponse</a></td>
+    <td><span>Linode API response</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.linode.LinodeConnection.html">LinodeConnection</a></td>
+    <td><span>A connection to the Linode API</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.linode.LinodeNodeDriver.html">LinodeNodeDriver</a></td>
+    <td><span>libcloud driver for the Linode API</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaConnection.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaConnection.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaConnection.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,138 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.opennebula.OpenNebulaConnection : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.o.OpenNebulaConnection(<a href="libcloud.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L55">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.opennebula.OpenNebulaConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Connection class for the OpenNebula driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id90">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaConnection.html#add_default_headers">add_default_headers</a></td>
+    <td><span>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>:
+        </p>
+        <table class="children sortable" id="id91">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionUserAndKey.html#__init__">__init__</a></td>
+    <td><span>Initialize `user_id` and `key`; set `secure` to an <code>int</code> 
+based on passed value.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.ConnectionKey.html">ConnectionKey</a> (via <a href="libcloud.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>):
+        </p>
+        <table class="children sortable" id="id92">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#connect">connect</a></td>
+    <td><span>Establish a connection with the API server.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#user_agent_append">user_agent_append</a></td>
+    <td><span>Append a token to a user agent string.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#request">request</a></td>
+    <td><span>Request a given `action`.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#add_default_params">add_default_params</a></td>
+    <td><span>Adds default parameters (such as API key, version, etc.) to the passed 
+`params`</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#encode_data">encode_data</a></td>
+    <td><span>Encode body data.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaConnection.add_default_headers">
+    
+  </a>
+  <a name="add_default_headers">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_headers(self, headers):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L65" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#add_default_headers">libcloud.base.ConnectionKey.add_default_headers</a></div>
+    <div>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</p>
+<p>Should return a dictionary.<table class="fieldTable"></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaNodeDriver.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaNodeDriver.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaNodeDriver.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,395 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.opennebula.OpenNebulaNodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.o.OpenNebulaNodeDriver(<a href="libcloud.base.NodeDriver.html">NodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L71">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.opennebula.OpenNebulaNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>OpenNebula node driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id93">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><span>List sizes on a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeSize.html"><code>NodeSize</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><span>List all nodes @return: <code>list</code> of <a 
+href="libcloud.base.Node.html"><code>Node</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#list_images">list_images</a></td>
+    <td><span>List images on a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeImage.html"><code>NodeImage</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#list_locations">list_locations</a></td>
+    <td><span>List data centers for a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeLocation.html"><code>NodeLocation</code></a> 
+objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><span>Reboot a node. @return: <code>bool</code> True if the reboot was 
+successful, otherwise False</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><span>Destroy a node.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#create_node">create_node</a></td>
+    <td><span>Create a new OpenNebula node</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#_to_images">_to_images</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#_to_image">_to_image</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#_to_nodes">_to_nodes</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#_to_node">_to_node</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html#_xml_action">_xml_action</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.NodeDriver.html">NodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id94">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.NodeDriver.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><span>Create a new node, and start deployment.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self, location=None):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L87" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_sizes">libcloud.base.NodeDriver.list_sizes</a></div>
+    <div>List sizes on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeSize.html"><code>NodeSize</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.list_nodes">
+    
+  </a>
+  <a name="list_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_nodes(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L112" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_nodes">libcloud.base.NodeDriver.list_nodes</a></div>
+    <div>List all nodes<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.Node.html"><code>Node</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self, location=None):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L115" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_images">libcloud.base.NodeDriver.list_images</a></div>
+    <div>List images on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeImage.html"><code>NodeImage</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.list_locations">
+    
+  </a>
+  <a name="list_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_locations(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L118" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_locations">libcloud.base.NodeDriver.list_locations</a></div>
+    <div>List data centers for a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeLocation.html"><code>NodeLocation</code></a> 
+objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.reboot_node">
+    
+  </a>
+  <a name="reboot_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    reboot_node(self, node):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L121" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#reboot_node">libcloud.base.NodeDriver.reboot_node</a></div>
+    <div>Reboot a node.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> True if the reboot was successful, otherwise False</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.destroy_node">
+    
+  </a>
+  <a name="destroy_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    destroy_node(self, node):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L137" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#destroy_node">libcloud.base.NodeDriver.destroy_node</a></div>
+    <div>Destroy a node.</p>
+<p>Depending upon the provider, this may destroy all data associated with 
+the node, including backups.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> True if the destroy was successful, otherwise False</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver.create_node">
+    
+  </a>
+  <a name="create_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    create_node(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L143" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#create_node">libcloud.base.NodeDriver.create_node</a></div>
+    <div>Create a new OpenNebula node</p>
+<p>See <a 
+href="libcloud.base.NodeDriver.html#create_node"><code>NodeDriver.create_node</code></a>
+for more keyword args.<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver._to_images">
+    
+  </a>
+  <a name="_to_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_images(self, object):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L169" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver._to_image">
+    
+  </a>
+  <a name="_to_image">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_image(self, image):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L178" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver._to_nodes">
+    
+  </a>
+  <a name="_to_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_nodes(self, object):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L183" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver._to_node">
+    
+  </a>
+  <a name="_to_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_node(self, compute):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L192" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaNodeDriver._xml_action">
+    
+  </a>
+  <a name="_xml_action">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _xml_action(self, compute_id, action):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L209" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaResponse.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaResponse.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.OpenNebulaResponse.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,143 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.opennebula.OpenNebulaResponse : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.o.OpenNebulaResponse(<a href="libcloud.base.Response.html">Response</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.opennebula.html">opennebula</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L38">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.opennebula.OpenNebulaResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id88">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaResponse.html#success">success</a></td>
+    <td><span>Determine if our request was successful.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaResponse.html#parse_body">parse_body</a></td>
+    <td><span>Parse response body.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaResponse.html#parse_error">parse_error</a></td>
+    <td><span>Parse the error messages.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.Response.html">Response</a>:
+        </p>
+        <table class="children sortable" id="id89">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.Response.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaResponse.success">
+    
+  </a>
+  <a name="success">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    success(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L40" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#success">libcloud.base.Response.success</a></div>
+    <div>Determine if our request was successful.</p>
+<p>The meaning of this can be arbitrary; did we receive OK status? Did the 
+node get created? Were we authenticated?<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>True</code> or <code>False</code></td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaResponse.parse_body">
+    
+  </a>
+  <a name="parse_body">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_body(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L44" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#parse_body">libcloud.base.Response.parse_body</a></div>
+    <div>Parse response body.</p>
+<p>Override in a provider's subclass.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">Parsed body.</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.opennebula.OpenNebulaResponse.parse_error">
+    
+  </a>
+  <a name="parse_error">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_error(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py#L49" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#parse_error">libcloud.base.Response.parse_error</a></div>
+    <div>Parse the error messages.</p>
+<p>Override in a provider's subclass.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">Parsed error.</td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.opennebula.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,63 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.opennebula : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="module">l.d.opennebula : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/opennebula.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>OpenNebula driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id87">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaResponse.html">OpenNebulaResponse</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaConnection.html">OpenNebulaConnection</a></td>
+    <td><span>Connection class for the OpenNebula driver</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.opennebula.OpenNebulaNodeDriver.html">OpenNebulaNodeDriver</a></td>
+    <td><span>OpenNebula node driver</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceConnection.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceConnection.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceConnection.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,204 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rackspace.RackspaceConnection : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.r.RackspaceConnection(<a href="libcloud.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.rackspace.html">rackspace</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L77">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.rackspace.RackspaceConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Connection class for the Rackspace driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id210">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceConnection.html#__init__">__init__</a></td>
+    <td><span>Initialize `user_id` and `key`; set `secure` to an <code>int</code> 
+based on passed value.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceConnection.html#add_default_headers">add_default_headers</a></td>
+    <td><span>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceConnection.html#host">host</a></td>
+    <td><span>Rackspace uses a separate host for API calls which is only provided 
+after an initial authentication request. If we haven't made that request 
+yet, do it here. Otherwise, just return the management host.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceConnection.html#request">request</a></td>
+    <td><span>Request a given `action`.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.ConnectionKey.html">ConnectionKey</a> (via <a href="libcloud.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a>):
+        </p>
+        <table class="children sortable" id="id211">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#connect">connect</a></td>
+    <td><span>Establish a connection with the API server.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#user_agent_append">user_agent_append</a></td>
+    <td><span>Append a token to a user agent string.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#add_default_params">add_default_params</a></td>
+    <td><span>Adds default parameters (such as API key, version, etc.) to the passed 
+`params`</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#encode_data">encode_data</a></td>
+    <td><span>Encode body data.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceConnection.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, user_id, key, secure=True):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L86" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionUserAndKey.html#__init__">libcloud.base.ConnectionUserAndKey.__init__</a></div>
+    <div>Initialize `user_id` and `key`; set `secure` to an <code>int</code> 
+based on passed value.<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceConnection.add_default_headers">
+    
+  </a>
+  <a name="add_default_headers">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_headers(self, headers):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L92" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#add_default_headers">libcloud.base.ConnectionKey.add_default_headers</a></div>
+    <div>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</p>
+<p>Should return a dictionary.<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceConnection.host">
+    
+  </a>
+  <a name="host">
+    
+  </a>
+  <div class="functionHeader">
+    @property<br />
+    def
+    host(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L98" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div>Rackspace uses a separate host for API calls which is only provided 
+after an initial authentication request. If we haven't made that request 
+yet, do it here. Otherwise, just return the management host.</p>
+<p>TODO: Fixup for when our token expires (!!!)<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceConnection.request">
+    
+  </a>
+  <a name="request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    request(self, action, params=None, data='', headers=None, method='GET'):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L139" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#request">libcloud.base.ConnectionKey.request</a></div>
+    <div>Request a given `action`.</p>
+<p>Basically a wrapper around the connection object's `request` that does 
+some helpful pre-processing.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">action</td><td>A path (type: <code>str</code>)</td></tr><tr><td></td><td class="fieldArg">params</td><td>Optional mapping of additional parameters to send. If None, leave as an 
+empty <code>dict</code>. (type: <code>dict</code>)</td></tr><tr><td></td><td class="fieldArg">data</td><td>A body of data to send with the request. (type: <code>unicode</code>)</td></tr><tr><td></td><td class="fieldArg">headers</td><td>Extra headers to add to the request None, leave as an empty 
+<code>dict</code>. (type: <code>dict</code>)</td></tr><tr><td></td><td class="fieldArg">method</td><td>An HTTP method such as &quot;GET&quot; or &quot;POST&quot;. (type: <code>str</code>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">An instance of type <i>responseCls</i></td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceNodeDriver.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceNodeDriver.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceNodeDriver.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,566 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rackspace.RackspaceNodeDriver : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.r.RackspaceNodeDriver(<a href="libcloud.base.NodeDriver.html">NodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.rackspace.html">rackspace</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L158">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.rackspace.RackspaceNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div><p>Rackspace node driver.</p>
+<p>Extra node attributes:</p>
+<ul>
+  <li>
+    password: root password, available after create.
+  </li>
+  <li>
+    hostId: represents the host your cloud server runs on
+  </li>
+  <li>
+    imageId: id of image
+  </li>
+  <li>
+    flavorId: id of flavor
+  </li>
+</ul><table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id212">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><span>List all nodes @return: <code>list</code> of <a 
+href="libcloud.base.Node.html"><code>Node</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><span>List sizes on a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeSize.html"><code>NodeSize</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#list_images">list_images</a></td>
+    <td><span>List images on a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeImage.html"><code>NodeImage</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#list_locations">list_locations</a></td>
+    <td><span>List data centers for a provider @return: <code>list</code> of <a 
+href="libcloud.base.NodeLocation.html"><code>NodeLocation</code></a> 
+objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#create_node">create_node</a></td>
+    <td><span>Create a new rackspace node</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><span>Reboot a node. @return: <code>bool</code> True if the reboot was 
+successful, otherwise False</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><span>Destroy a node.</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_metadata_to_xml">_metadata_to_xml</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_files_to_xml">_files_to_xml</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_node_action">_node_action</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_nodes">_to_nodes</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_fixxpath">_fixxpath</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_findall">_findall</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_node">_to_node</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_sizes">_to_sizes</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_size">_to_size</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_images">_to_images</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html#_to_image">_to_image</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.NodeDriver.html">NodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id213">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.NodeDriver.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><span>Create a new node, and start deployment.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.list_nodes">
+    
+  </a>
+  <a name="list_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_nodes(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L193" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_nodes">libcloud.base.NodeDriver.list_nodes</a></div>
+    <div>List all nodes<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.Node.html"><code>Node</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self, location=None):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L196" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_sizes">libcloud.base.NodeDriver.list_sizes</a></div>
+    <div>List sizes on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeSize.html"><code>NodeSize</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self, location=None):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L199" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_images">libcloud.base.NodeDriver.list_images</a></div>
+    <div>List images on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeImage.html"><code>NodeImage</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.list_locations">
+    
+  </a>
+  <a name="list_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_locations(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L202" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#list_locations">libcloud.base.NodeDriver.list_locations</a></div>
+    <div>List data centers for a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.base.NodeLocation.html"><code>NodeLocation</code></a> 
+objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.create_node">
+    
+  </a>
+  <a name="create_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    create_node(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L205" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#create_node">libcloud.base.NodeDriver.create_node</a></div>
+    <div>Create a new rackspace node</p>
+<p>See <a 
+href="libcloud.base.NodeDriver.html#create_node"><code>NodeDriver.create_node</code></a>
+for more keyword args.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">ex_metadata</td><td>Key/Value metadata to associate with a node (type: <code>dict</code>)</td></tr><tr><td></td><td class="fieldArg">ex_files</td><td>File Path =&gt; File contents to create on the node (type: <code>dict</code>)</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._metadata_to_xml">
+    
+  </a>
+  <a name="_metadata_to_xml">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _metadata_to_xml(self, metadata):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L239" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._files_to_xml">
+    
+  </a>
+  <a name="_files_to_xml">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _files_to_xml(self, files):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L250" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.reboot_node">
+    
+  </a>
+  <a name="reboot_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    reboot_node(self, node):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L263" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#reboot_node">libcloud.base.NodeDriver.reboot_node</a></div>
+    <div>Reboot a node.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> True if the reboot was successful, otherwise False</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver.destroy_node">
+    
+  </a>
+  <a name="destroy_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    destroy_node(self, node):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L268" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.NodeDriver.html#destroy_node">libcloud.base.NodeDriver.destroy_node</a></div>
+    <div>Destroy a node.</p>
+<p>Depending upon the provider, this may destroy all data associated with 
+the node, including backups.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> True if the destroy was successful, otherwise False</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._node_action">
+    
+  </a>
+  <a name="_node_action">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _node_action(self, node, body):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L273" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_nodes">
+    
+  </a>
+  <a name="_to_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_nodes(self, object):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L282" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._fixxpath">
+    
+  </a>
+  <a name="_fixxpath">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _fixxpath(self, xpath):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L286" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._findall">
+    
+  </a>
+  <a name="_findall">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _findall(self, element, xpath):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L290" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_node">
+    
+  </a>
+  <a name="_to_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_node(self, el):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L293" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_sizes">
+    
+  </a>
+  <a name="_to_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_sizes(self, object):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L324" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_size">
+    
+  </a>
+  <a name="_to_size">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_size(self, el):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L328" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_images">
+    
+  </a>
+  <a name="_to_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_images(self, object):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L338" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceNodeDriver._to_image">
+    
+  </a>
+  <a name="_to_image">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_image(self, el):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L344" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceResponse.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceResponse.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.RackspaceResponse.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,143 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rackspace.RackspaceResponse : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.r.RackspaceResponse(<a href="libcloud.base.Response.html">Response</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.rackspace.html">rackspace</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L47">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.rackspace.RackspaceResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id208">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceResponse.html#success">success</a></td>
+    <td><span>Determine if our request was successful.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceResponse.html#parse_body">parse_body</a></td>
+    <td><span>Parse response body.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceResponse.html#parse_error">parse_error</a></td>
+    <td><span>Parse the error messages.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.Response.html">Response</a>:
+        </p>
+        <table class="children sortable" id="id209">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.Response.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceResponse.success">
+    
+  </a>
+  <a name="success">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    success(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L49" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#success">libcloud.base.Response.success</a></div>
+    <div>Determine if our request was successful.</p>
+<p>The meaning of this can be arbitrary; did we receive OK status? Did the 
+node get created? Were we authenticated?<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>True</code> or <code>False</code></td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceResponse.parse_body">
+    
+  </a>
+  <a name="parse_body">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_body(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L53" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#parse_body">libcloud.base.Response.parse_body</a></div>
+    <div>Parse response body.</p>
+<p>Override in a provider's subclass.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">Parsed body.</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rackspace.RackspaceResponse.parse_error">
+    
+  </a>
+  <a name="parse_error">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_error(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py#L61" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.Response.html#parse_error">libcloud.base.Response.parse_error</a></div>
+    <div>Parse the error messages.</p>
+<p>Override in a provider's subclass.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">Parsed error.</td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rackspace.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,63 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rackspace : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="module">l.d.rackspace : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rackspace.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>Rackspace driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id207">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceResponse.html">RackspaceResponse</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceConnection.html">RackspaceConnection</a></td>
+    <td><span>Connection class for the Rackspace driver</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.drivers.rackspace.RackspaceNodeDriver.html">RackspaceNodeDriver</a></td>
+    <td><span>Rackspace node driver.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingConnection.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingConnection.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingConnection.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,173 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rimuhosting.RimuHostingConnection : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.r.RimuHostingConnection(<a href="libcloud.base.ConnectionKey.html">ConnectionKey</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.rimuhosting.html">rimuhosting</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L75">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.rimuhosting.RimuHostingConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Connection class for the RimuHosting driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id42">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rimuhosting.RimuHostingConnection.html#__init__">__init__</a></td>
+    <td><span>Initialize `user_id` and `key`; set `secure` to an <code>int</code> 
+based on passed value.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rimuhosting.RimuHostingConnection.html#add_default_headers">add_default_headers</a></td>
+    <td><span>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rimuhosting.RimuHostingConnection.html#request">request</a></td>
+    <td><span>Request a given `action`.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.base.ConnectionKey.html">ConnectionKey</a>:
+        </p>
+        <table class="children sortable" id="id43">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#connect">connect</a></td>
+    <td><span>Establish a connection with the API server.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#user_agent_append">user_agent_append</a></td>
+    <td><span>Append a token to a user agent string.</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#add_default_params">add_default_params</a></td>
+    <td><span>Adds default parameters (such as API key, version, etc.) to the passed 
+`params`</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#encode_data">encode_data</a></td>
+    <td><span>Encode body data.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.base.ConnectionKey.html#_user_agent">_user_agent</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.rimuhosting.RimuHostingConnection.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key, secure=True):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L85" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#__init__">libcloud.base.ConnectionKey.__init__</a></div>
+    <div>Initialize `user_id` and `key`; set `secure` to an <code>int</code> 
+based on passed value.<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rimuhosting.RimuHostingConnection.add_default_headers">
+    
+  </a>
+  <a name="add_default_headers">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add_default_headers(self, headers):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L89" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#add_default_headers">libcloud.base.ConnectionKey.add_default_headers</a></div>
+    <div>Adds default headers (such as Authorization, X-Foo-Bar) to the passed 
+`headers`</p>
+<p>Should return a dictionary.<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rimuhosting.RimuHostingConnection.request">
+    
+  </a>
+  <a name="request">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    request(self, action, params=None, data='', headers=None, method='GET'):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L99" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.base.ConnectionKey.html#request">libcloud.base.ConnectionKey.request</a></div>
+    <div>Request a given `action`.</p>
+<p>Basically a wrapper around the connection object's `request` that does 
+some helpful pre-processing.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">action</td><td>A path (type: <code>str</code>)</td></tr><tr><td></td><td class="fieldArg">params</td><td>Optional mapping of additional parameters to send. If None, leave as an 
+empty <code>dict</code>. (type: <code>dict</code>)</td></tr><tr><td></td><td class="fieldArg">data</td><td>A body of data to send with the request. (type: <code>unicode</code>)</td></tr><tr><td></td><td class="fieldArg">headers</td><td>Extra headers to add to the request None, leave as an empty 
+<code>dict</code>. (type: <code>dict</code>)</td></tr><tr><td></td><td class="fieldArg">method</td><td>An HTTP method such as &quot;GET&quot; or &quot;POST&quot;. (type: <code>str</code>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">An instance of type <i>responseCls</i></td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingException.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingException.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.4.0/libcloud.drivers.rimuhosting.RimuHostingException.html Mon Jul 16 01:44:40 2012
@@ -0,0 +1,97 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.drivers.rimuhosting.RimuHostingException : API documentation</title>
+    <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
+    <link href="apidocs.css" type="text/css" rel="stylesheet" />
+    
+    
+  </head>
+  <body>
+    <h1 class="class">l.d.r.RimuHostingException(<span title="Exception">Exception</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.drivers.html">drivers</a>.<a href="libcloud.drivers.rimuhosting.html">rimuhosting</a></span>
+      <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L35">View Source</a>
+      <a href="classIndex.html#libcloud.drivers.rimuhosting.RimuHostingException">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Exception class for RimuHosting driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id39">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rimuhosting.RimuHostingException.html#__str__">__str__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.drivers.rimuhosting.RimuHostingException.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.drivers.rimuhosting.RimuHostingException.__str__">
+    
+  </a>
+  <a name="__str__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __str__(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L40" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.drivers.rimuhosting.RimuHostingException.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py#L43" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://incubator.apache.org/libcloud/">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:44:18.
+    </address>
+  </body>
+</html>
\ No newline at end of file