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:49:36 UTC

svn commit: r825932 [7/38] - in /websites/staging/libcloud/trunk/content: ./ apidocs/0.8.0/

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.NodeSize.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.NodeSize.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.NodeSize.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,135 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.base.NodeSize : 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.c.b.NodeSize(<a href="libcloud.compute.base.UuidMixin.html">UuidMixin</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.base.html">base</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L235">View Source</a>
+      <a href="classIndex.html#libcloud.compute.base.NodeSize">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html">libcloud.compute.drivers.bluebox.BlueboxNodeSize</a>, <a href="libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize.html">libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize</a>, <a href="libcloud.compute.drivers.elasticstack.ElasticStackNodeSize.html">libcloud.compute.drivers.elasticstack.ElasticStackNodeSize</a>, <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html">libcloud.compute.drivers.opennebula.OpenNebulaNodeSize</a></p>
+    </div>
+    <div><p>A Base NodeSize class to derive from.</p>
+<p>NodeSizes are objects which are typically returned a driver's list_sizes
+function.  They contain a number of different parameters which define how 
+big an image is.</p>
+<p>The exact parameters available depends on the provider.</p>
+<p>N.B. Where a parameter is &quot;unlimited&quot; (for example bandwidth 
+in Amazon) this will be given as 0.</p>
+<pre class="py-doctest">
+<span class="py-prompt">&gt;&gt;&gt; </span><span class="py-keyword">from</span> libcloud.compute.drivers.dummy <span class="py-keyword">import</span> DummyNodeDriver
+<span class="py-prompt">&gt;&gt;&gt; </span>driver = DummyNodeDriver(0)
+<span class="py-prompt">&gt;&gt;&gt; </span>size = driver.list_sizes()[0]
+<span class="py-prompt">&gt;&gt;&gt; </span>size.ram
+<span class="py-output">128</span>
+<span class="py-output"></span><span class="py-prompt">&gt;&gt;&gt; </span>size.bandwidth
+<span class="py-output">500</span>
+<span class="py-output"></span><span class="py-prompt">&gt;&gt;&gt; </span>size.price
+<span class="py-output">4</span></pre><table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id263">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeSize.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeSize.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.UuidMixin.html">UuidMixin</a>:
+        </p>
+        <table class="children sortable" id="id264">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#get_uuid">get_uuid</a></td>
+    <td><span>Unique hash for a node, node image, or node size</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#uuid">uuid</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.base.NodeSize.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, name, ram, disk, bandwidth, price, driver):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L259" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.UuidMixin.html#__init__">libcloud.compute.base.UuidMixin.__init__</a></div><div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html">libcloud.compute.drivers.bluebox.BlueboxNodeSize</a>, <a href="libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize.html">libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize</a>, <a href="libcloud.compute.drivers.elasticstack.ElasticStackNodeSize.html">libcloud.compute.drivers.elasticstack.ElasticStackNodeSize</a>, <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html">libcloud.compute.drivers.opennebula.OpenNebulaNodeSize</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.base.NodeSize.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L269" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html">libcloud.compute.drivers.bluebox.BlueboxNodeSize</a>, <a href="libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize.html">libcloud.compute.drivers.cloudsigma.CloudSigmaNodeSize</a>, <a href="libcloud.compute.drivers.elasticstack.ElasticStackNodeSize.html">libcloud.compute.drivers.elasticstack.ElasticStackNodeSize</a>, <a href="libcloud.compute.drivers.opennebula.OpenNebulaNodeSize.html">libcloud.compute.drivers.opennebula.OpenNebulaNodeSize</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.UuidMixin.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.UuidMixin.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.UuidMixin.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,137 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.base.UuidMixin : 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.c.b.UuidMixin(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.base.html">base</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L69">View Source</a>
+      <a href="classIndex.html#libcloud.compute.base.UuidMixin">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.base.Node.html">libcloud.compute.base.Node</a>, <a href="libcloud.compute.base.NodeImage.html">libcloud.compute.base.NodeImage</a>, <a href="libcloud.compute.base.NodeSize.html">libcloud.compute.base.NodeSize</a></p>
+    </div>
+    <div>Mixin class for get_uuid function.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id260">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#get_uuid">get_uuid</a></td>
+    <td><span>Unique hash for a node, node image, or node size</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#uuid">uuid</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.base.UuidMixin.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L74" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.base.Node.html">libcloud.compute.base.Node</a>, <a href="libcloud.compute.base.NodeImage.html">libcloud.compute.base.NodeImage</a>, <a href="libcloud.compute.base.NodeSize.html">libcloud.compute.base.NodeSize</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.base.UuidMixin.get_uuid">
+    
+  </a>
+  <a name="get_uuid">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    get_uuid(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L77" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.drivers.gogrid.GoGridNode.html">libcloud.compute.drivers.gogrid.GoGridNode</a></div>
+    <div>Unique hash for a node, node image, or node size<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>string</code>
+<p>The hash is a function of an SHA1 hash of the node, node image, or node 
+size's ID and its driver which means that it should be unique between all 
+objects of its type. In some subclasses (e.g. GoGridNode) there is no ID 
+available so the public IP address is used.  This means that, unlike a 
+properly done system UUID, the same UUID may mean a different system 
+install at a different time</p>
+<pre class="py-doctest">
+<span class="py-prompt">&gt;&gt;&gt; </span><span class="py-keyword">from</span> libcloud.compute.drivers.dummy <span class="py-keyword">import</span> DummyNodeDriver
+<span class="py-prompt">&gt;&gt;&gt; </span>driver = DummyNodeDriver(0)
+<span class="py-prompt">&gt;&gt;&gt; </span>node = driver.create_node()
+<span class="py-prompt">&gt;&gt;&gt; </span>node.get_uuid()
+<span class="py-output">'d3748461511d8b9b0e0bfa0d4d3383a619a2bb9f'</span></pre>
+<p>Note, for example, that this example will always produce the same 
+UUID!</p></td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.base.UuidMixin.uuid">
+    
+  </a>
+  <a name="uuid">
+    
+  </a>
+  <div class="functionHeader">
+    @property<br />
+    def
+    uuid(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L104" 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://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.base.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,139 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.base : 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.c.base : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>Provides base classes for working with drivers<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id254">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.ConnectionKey.html">ConnectionKey</a></td>
+    <td><span>A Base Connection class to derive from, which includes a</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.ConnectionUserAndKey.html">ConnectionUserAndKey</a></td>
+    <td><span>Base connection which accepts a user_id and key</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.LibcloudHTTPSConnection.html">LibcloudHTTPSConnection</a></td>
+    <td><span>LibcloudHTTPSConnection</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html">UuidMixin</a></td>
+    <td><span>Mixin class for get_uuid function.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.Node.html">Node</a></td>
+    <td><span>Provide a common interface for handling nodes of all types.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeSize.html">NodeSize</a></td>
+    <td><span>A Base NodeSize class to derive from.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeImage.html">NodeImage</a></td>
+    <td><span>An operating system image.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeLocation.html">NodeLocation</a></td>
+    <td><span>A physical location where nodes can be.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeAuthSSHKey.html">NodeAuthSSHKey</a></td>
+    <td><span>An SSH key to be installed for authentication to a node.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeAuthPassword.html">NodeAuthPassword</a></td>
+    <td><span>A password to be used for authentication to a node.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a></td>
+    <td><span>A base NodeDriver class to derive from</span></td>
+  </tr><tr class="function">
+    
+    
+    <td>Function</td>
+    <td><a href="libcloud.compute.base.html#is_private_subnet">is_private_subnet</a></td>
+    <td><span>Utility function to check if an IP address is inside a private 
+subnet.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.base.is_private_subnet">
+    
+  </a>
+  <a name="is_private_subnet">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    is_private_subnet(ip):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/base.py#L719" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div>Utility function to check if an IP address is inside a private 
+subnet.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">ip</td><td>IP address to check (type: <code>str</code>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>bool</code> if the specified IP address is private.</td></tr></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.Deployment.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.Deployment.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.Deployment.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,100 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.deployment.Deployment : 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.c.d.Deployment(<span title="object">object</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.deployment.html">deployment</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L24">View Source</a>
+      <a href="classIndex.html#libcloud.compute.deployment.Deployment">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.deployment.MultiStepDeployment.html">libcloud.compute.deployment.MultiStepDeployment</a>, <a href="libcloud.compute.deployment.ScriptDeployment.html">libcloud.compute.deployment.ScriptDeployment</a>, <a href="libcloud.compute.deployment.SSHKeyDeployment.html">libcloud.compute.deployment.SSHKeyDeployment</a></p>
+    </div>
+    <div>Base class for deployment tasks.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id247">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html#run">run</a></td>
+    <td><span>Runs this deployment task on <code>node</code> using the 
+<code>client</code> provided.</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html#_get_string_value">_get_string_value</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.deployment.Deployment.run">
+    
+  </a>
+  <a name="run">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    run(self, node, client):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L29" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overridden in <a href="libcloud.compute.deployment.MultiStepDeployment.html">libcloud.compute.deployment.MultiStepDeployment</a>, <a href="libcloud.compute.deployment.ScriptDeployment.html">libcloud.compute.deployment.ScriptDeployment</a>, <a href="libcloud.compute.deployment.SSHKeyDeployment.html">libcloud.compute.deployment.SSHKeyDeployment</a></div>
+    <div>Runs this deployment task on <code>node</code> using the 
+<code>client</code> provided.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">node</td><td>Node to operate one (type: <a href="libcloud.compute.base.Node.html"><code>Node</code></a>)</td></tr><tr><td></td><td class="fieldArg">client</td><td>Connected SSH client to use. (type: <a 
+href="libcloud.compute.ssh.BaseSSHClient.html"><code>BaseSSHClient</code></a>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><a href="libcloud.compute.base.Node.html"><code>Node</code></a></td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.deployment.Deployment._get_string_value">
+    
+  </a>
+  <a name="_get_string_value">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _get_string_value(self, argument_name, argument_value):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L44" 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://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.MultiStepDeployment.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.MultiStepDeployment.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.MultiStepDeployment.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,144 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.deployment.MultiStepDeployment : 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.c.d.MultiStepDeployment(<a href="libcloud.compute.deployment.Deployment.html">Deployment</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.deployment.html">deployment</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L119">View Source</a>
+      <a href="classIndex.html#libcloud.compute.deployment.MultiStepDeployment">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Runs a chain of Deployment steps.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id252">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#add">add</a></td>
+    <td><span>Add a deployment to this chain.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#run">run</a></td>
+    <td><span>Run each deployment that has been added.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id253">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html#_get_string_value">_get_string_value</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.deployment.MultiStepDeployment.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, add=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L123" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div><table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">add</td><td>Deployment steps to add. (type: <code>list</code>)</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.deployment.MultiStepDeployment.add">
+    
+  </a>
+  <a name="add">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    add(self, add):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L131" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div>Add a deployment to this chain.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">add</td><td>Adds this deployment to the others already in this object. (type: Single <a 
+href="libcloud.compute.deployment.Deployment.html"><code>Deployment</code></a>
+or a <code>list</code> of <a 
+href="libcloud.compute.deployment.Deployment.html"><code>Deployment</code></a>)</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.deployment.MultiStepDeployment.run">
+    
+  </a>
+  <a name="run">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    run(self, node, client):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L141" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.deployment.Deployment.html#run">libcloud.compute.deployment.Deployment.run</a></div>
+    <div>Run each deployment that has been added.</p>
+<p>See also <a 
+href="libcloud.compute.deployment.Deployment.html#run"><code>Deployment.run</code></a><table class="fieldTable"></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.SSHKeyDeployment.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.SSHKeyDeployment.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.SSHKeyDeployment.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,115 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.deployment.SSHKeyDeployment : 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.c.d.SSHKeyDeployment(<a href="libcloud.compute.deployment.Deployment.html">Deployment</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.deployment.html">deployment</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L56">View Source</a>
+      <a href="classIndex.html#libcloud.compute.deployment.SSHKeyDeployment">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Installs a public SSH Key onto a host.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id248">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html#run">run</a></td>
+    <td><span>Installs SSH key into <code>.ssh/authorized_keys</code></span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id249">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html#_get_string_value">_get_string_value</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.deployment.SSHKeyDeployment.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, key):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L61" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div><table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">key</td><td>Contents of the public key write (type: <code>str</code>)</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.deployment.SSHKeyDeployment.run">
+    
+  </a>
+  <a name="run">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    run(self, node, client):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L69" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.deployment.Deployment.html#run">libcloud.compute.deployment.Deployment.run</a></div>
+    <div>Installs SSH key into <code>.ssh/authorized_keys</code></p>
+<p>See also <a 
+href="libcloud.compute.deployment.Deployment.html#run"><code>Deployment.run</code></a><table class="fieldTable"></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.ScriptDeployment.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.ScriptDeployment.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.ScriptDeployment.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,116 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.deployment.ScriptDeployment : 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.c.d.ScriptDeployment(<a href="libcloud.compute.deployment.Deployment.html">Deployment</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.deployment.html">deployment</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L78">View Source</a>
+      <a href="classIndex.html#libcloud.compute.deployment.ScriptDeployment">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Runs an arbitrary Shell Script task.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id250">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html#run">run</a></td>
+    <td><span>Uploads the shell script and then executes it.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id251">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html#_get_string_value">_get_string_value</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.deployment.ScriptDeployment.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, script, name=None, delete=False):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L83" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div><table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">script</td><td>Contents of the script to run (type: <code>str</code>)</td></tr><tr><td></td><td class="fieldArg">name</td><td>Name of the script to upload it as, if not specified, a random name will be
+choosen. (type: <code>str</code>)</td></tr><tr><td></td><td class="fieldArg">delete</td><td>Whether to delete the script on completion. (type: <code>bool</code>)</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.deployment.ScriptDeployment.run">
+    
+  </a>
+  <a name="run">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    run(self, node, client):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py#L106" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.deployment.Deployment.html#run">libcloud.compute.deployment.Deployment.run</a></div>
+    <div>Uploads the shell script and then executes it.</p>
+<p>See also <a 
+href="libcloud.compute.deployment.Deployment.html#run"><code>Deployment.run</code></a><table class="fieldTable"></table></div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.deployment.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,69 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.deployment : 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.c.deployment : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/deployment.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>Provides generic deployment steps for machines post boot.<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id246">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html">Deployment</a></td>
+    <td><span>Base class for deployment tasks.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html">SSHKeyDeployment</a></td>
+    <td><span>Installs a public SSH Key onto a host.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html">ScriptDeployment</a></td>
+    <td><span>Runs an arbitrary Shell Script task.</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html">MultiStepDeployment</a></td>
+    <td><span>Runs a chain of Deployment steps.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.__init__.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.__init__.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.__init__.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,40 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.__init__ : 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.c.d.__init__ : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/__init__.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>Drivers for working with different providers<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxConnection.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxConnection.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxConnection.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,71 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.bluebox.BlueboxConnection : 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.c.d.b.BlueboxConnection(<span title="libcloud.common.base.ConnectionUserAndKey">ConnectionUserAndKey</span>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.bluebox.html">bluebox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L107">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.bluebox.BlueboxConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Connection class for the Bluebox driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id308">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxConnection.html#add_default_headers">add_default_headers</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxConnection.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/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L116" 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://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,362 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.bluebox.BlueboxNodeDriver : 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.c.d.b.BlueboxNodeDriver(<a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.bluebox.html">bluebox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L121">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.bluebox.BlueboxNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div>Bluebox Blocks node driver<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id309">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><span>List all nodes @return: <code>list</code> of <a 
+href="libcloud.compute.base.Node.html"><code>Node</code></a> objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><span>List sizes on a provider</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_images">list_images</a></td>
+    <td><span>List images on a provider</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#create_node">create_node</a></td>
+    <td><span>Create a new node instance.</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><span>Destroy node by passing in the node object</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_locations">list_locations</a></td>
+    <td><span>List data centers for a provider @return: <code>list</code> of <a 
+href="libcloud.compute.base.NodeLocation.html"><code>NodeLocation</code></a>
+objects</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><span>Reboot a node.</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.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.compute.drivers.bluebox.BlueboxNodeDriver.html#_to_image">_to_image</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>:
+        </p>
+        <table class="children sortable" id="id310">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#__init__">__init__</a></td>
+    <td></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><span>Create a new node, and start deployment.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_wait_until_running">_wait_until_running</a></td>
+    <td><span>Block until node is fully booted and has an IP address assigned.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_ssh_client_connect">_ssh_client_connect</a></td>
+    <td><span>Try to connect to the remote SSH server. If a connection times out or is
+refused it is retried up to timeout number of seconds.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_run_deployment_script">_run_deployment_script</a></td>
+    <td><span>Run the deployment script on the provided node. At this point it is 
+assumed that SSH connection has already been established.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#_get_size_price">_get_size_price</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.BaseDriver.html">BaseDriver</a> (via <a href="libcloud.compute.base.NodeDriver.html">NodeDriver</a>):
+        </p>
+        <table class="children sortable" id="id311">
+  
+  
+<tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.BaseDriver.html#_ex_connection_class_kwargs">_ex_connection_class_kwargs</a></td>
+    <td><span>Return extra connection keyword arguments which are passed to the 
+Connection class constructor.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.list_nodes">
+    
+  </a>
+  <a name="list_nodes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_nodes(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L131" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_nodes">libcloud.compute.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.compute.base.Node.html"><code>Node</code></a> objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L135" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_sizes">libcloud.compute.base.NodeDriver.list_sizes</a></div>
+    <div>List sizes on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">location</td><td>The location at which to list sizes (type: <a 
+href="libcloud.compute.base.NodeLocation.html"><code>NodeLocation</code></a>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.compute.base.NodeSize.html"><code>NodeSize</code></a> 
+objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self, location=None):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L145" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_images">libcloud.compute.base.NodeDriver.list_images</a></div>
+    <div>List images on a provider<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">location</td><td>The location at which to list images (type: <a 
+href="libcloud.compute.base.NodeLocation.html"><code>NodeLocation</code></a>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2"><code>list</code> of <a 
+href="libcloud.compute.base.NodeImage.html"><code>NodeImage</code></a> 
+objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.create_node">
+    
+  </a>
+  <a name="create_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    create_node(self, **kwargs):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L153" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#create_node">libcloud.compute.base.NodeDriver.create_node</a></div>
+    <div>Create a new node instance.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">name</td><td>String with a name for this new node (required) (type: str)</td></tr><tr><td></td><td class="fieldArg">size</td><td>The size of resources allocated to this node. (required) (type: <a href="libcloud.compute.base.NodeSize.html"><code>NodeSize</code></a>)</td></tr><tr><td></td><td class="fieldArg">image</td><td>OS Image to boot on node. (required) (type: <a href="libcloud.compute.base.NodeImage.html"><code>NodeImage</code></a>)</td></tr><tr><td></td><td class="fieldArg">location</td><td>Which data center to create a node in. If empty, undefined behavoir will be
+selected. (optional) (type: <a 
+href="libcloud.compute.base.NodeLocation.html"><code>NodeLocation</code></a>)</td></tr><tr><td></td><td class="fieldArg">auth</td><td>Initial authentication information for the node (optional) (type: <a 
+href="libcloud.compute.base.NodeAuthSSHKey.html"><code>NodeAuthSSHKey</code></a>
+or <a 
+href="libcloud.compute.base.NodeAuthPassword.html"><code>NodeAuthPassword</code></a>)</td></tr><tr class="fieldStart"><td class="fieldName">Returns</td><td colspan="2">The newly created <a 
+href="libcloud.compute.base.Node.html"><code>Node</code></a>.</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.destroy_node">
+    
+  </a>
+  <a name="destroy_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    destroy_node(self, node):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L193" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#destroy_node">libcloud.compute.base.NodeDriver.destroy_node</a></div>
+    <div>Destroy node by passing in the node object<table class="fieldTable"></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.list_locations">
+    
+  </a>
+  <a name="list_locations">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_locations(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L202" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#list_locations">libcloud.compute.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.compute.base.NodeLocation.html"><code>NodeLocation</code></a>
+objects</td></tr></table></div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.reboot_node">
+    
+  </a>
+  <a name="reboot_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    reboot_node(self, node):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L205" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeDriver.html#reboot_node">libcloud.compute.base.NodeDriver.reboot_node</a></div>
+    <div>Reboot a node.<table class="fieldTable"><tr class="fieldStart"><td class="fieldName">Parameters</td><td class="fieldArg">node</td><td>The node to be rebooted (type: <a href="libcloud.compute.base.Node.html"><code>Node</code></a>)</td></tr><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.compute.drivers.bluebox.BlueboxNodeDriver._to_node">
+    
+  </a>
+  <a name="_to_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_node(self, vm):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L210" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeDriver._to_image">
+    
+  </a>
+  <a name="_to_image">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_image(self, image):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L221" 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://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeSize.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeSize.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxNodeSize.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,119 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.bluebox.BlueboxNodeSize : 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.c.d.b.BlueboxNodeSize(<a href="libcloud.compute.base.NodeSize.html">NodeSize</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.bluebox.html">bluebox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L93">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.bluebox.BlueboxNodeSize">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id306">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html#__repr__">__repr__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.base.UuidMixin.html">UuidMixin</a> (via <a href="libcloud.compute.base.NodeSize.html">NodeSize</a>):
+        </p>
+        <table class="children sortable" id="id307">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#get_uuid">get_uuid</a></td>
+    <td><span>Unique hash for a node, node image, or node size</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#uuid">uuid</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeSize.__init__">
+    
+  </a>
+  <a name="__init__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __init__(self, id, name, cpu, ram, disk, price, driver):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L94" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeSize.html#__init__">libcloud.compute.base.NodeSize.__init__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxNodeSize.__repr__">
+    
+  </a>
+  <a name="__repr__">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    __repr__(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L103" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.compute.base.NodeSize.html#__repr__">libcloud.compute.base.NodeSize.__repr__</a></div>
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div>
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxResponse.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxResponse.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.BlueboxResponse.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,116 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.bluebox.BlueboxResponse : 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.c.d.b.BlueboxResponse(<a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>) : class documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a>.<a href="libcloud.compute.drivers.bluebox.html">bluebox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L84">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.bluebox.BlueboxResponse">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id303">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxResponse.html#parse_error">parse_error</a></td>
+    <td><span>Parse the error messages.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>:
+        </p>
+        <table class="children sortable" id="id304">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.JsonResponse.html#parse_body">parse_body</a></td>
+    <td><span>Parse response body.</span></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.Response.html">Response</a> (via <a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>):
+        </p>
+        <table class="children sortable" id="id305">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#__init__">__init__</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#success">success</a></td>
+    <td><span>Determine if our request was successful.</span></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#_decompress_response">_decompress_response</a></td>
+    <td><span>Decompress a response body if it is using deflate or gzip encoding.</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.bluebox.BlueboxResponse.parse_error">
+    
+  </a>
+  <a name="parse_error">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    parse_error(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py#L85" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    <div class="interfaceinfo">overrides <a href="libcloud.common.base.Response.html#parse_error">libcloud.common.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://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.bluebox.html Mon Jul 16 01:49:26 2012
@@ -0,0 +1,74 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.bluebox : 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.c.d.bluebox : module documentation</h1>
+    <p>
+      <span id="part">Part of <a href="libcloud.html">libcloud</a>.<a href="libcloud.compute.html">compute</a>.<a href="libcloud.compute.drivers.html">drivers</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/bluebox.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <div>libcloud driver for the Blue Box Blocks API</p>
+<p>This driver implements all libcloud functionality for the Blue Box 
+Blocks API.</p>
+<p>Blue Box home page            http://bluebox.net Blue Box API 
+documentation    
+https://boxpanel.bluebox.net/public/the_vault/index.php/Blocks_API<table class="fieldTable"></table></div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id302">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxResponse.html">BlueboxResponse</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeSize.html">BlueboxNodeSize</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxConnection.html">BlueboxConnection</a></td>
+    <td><span>Connection class for the Bluebox driver</span></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html">BlueboxNodeDriver</a></td>
+    <td><span>Bluebox Blocks node driver</span></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    
+    <address>
+      <a href="index.html">API Documentation</a> for <a href="http://libcloud.apache.org">libcloud</a>, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2012-07-15 18:48:28.
+    </address>
+  </body>
+</html>
\ No newline at end of file