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/02/09 03:00:25 UTC

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

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 Thu Feb  9 02:00:15 2012
@@ -0,0 +1,145 @@
+<!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>
+    <pre>Runs a chain of Deployment steps.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id110">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#__init__">__init__</a></td>
+    <td><tt>@type add: C{list} @keyword add: Deployment steps to add.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#add">add</a></td>
+    <td><tt>Add a deployment to this chain.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html#run">run</a></td>
+    <td><tt>Run each deployment that has been added.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id111">
+  
+  
+<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">
+    
+    <pre>@type add: C{list}
+@keyword add: Deployment steps to add.</pre>
+  </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">
+    
+    <pre>Add a deployment to this chain.
+
+@type add: Single L{Deployment} or a C{list} of L{Deployment}
+@keyword add: Adds this deployment to the others already in this object.</pre>
+  </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>
+    <pre>Run each deployment that has been added.
+
+See also L{Deployment.run}</pre>
+  </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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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.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>
+    <pre>Installs a public SSH Key onto a host.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id106">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html#__init__">__init__</a></td>
+    <td><tt>@type key: C{str} @keyword key: Contents of the public key write</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html#run">run</a></td>
+    <td><tt>Installs SSH key into C{.ssh/authorized_keys}</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id107">
+  
+  
+<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">
+    
+    <pre>@type key: C{str}
+@keyword key: Contents of the public key write</pre>
+  </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>
+    <pre>Installs SSH key into C{.ssh/authorized_keys}
+
+See also L{Deployment.run}</pre>
+  </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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 2012
@@ -0,0 +1,122 @@
+<!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>
+    <pre>Runs an arbitrary Shell Script task.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id108">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html#__init__">__init__</a></td>
+    <td><tt>@type script: C{str} @keyword script: Contents of the script to run</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html#run">run</a></td>
+    <td><tt>Uploads the shell script and then executes it.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.compute.deployment.Deployment.html">Deployment</a>:
+        </p>
+        <table class="children sortable" id="id109">
+  
+  
+<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">
+    
+    <pre>@type script: C{str}
+@keyword script: Contents of the script to run
+
+@type name: C{str}
+@keyword name: Name of the script to upload it as, if not specified, a random name will be choosen.
+
+@type delete: C{bool}
+@keyword delete: Whether to delete the script on completion.</pre>
+  </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>
+    <pre>Uploads the shell script and then executes it.
+
+See also L{Deployment.run}</pre>
+  </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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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>
+    <pre>Provides generic deployment steps for machines post boot.</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id104">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.Deployment.html">Deployment</a></td>
+    <td><tt>Base class for deployment tasks.</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.SSHKeyDeployment.html">SSHKeyDeployment</a></td>
+    <td><tt>Installs a public SSH Key onto a host.</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.ScriptDeployment.html">ScriptDeployment</a></td>
+    <td><tt>Runs an arbitrary Shell Script task.</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.deployment.MultiStepDeployment.html">MultiStepDeployment</a></td>
+    <td><tt>Runs a chain of Deployment steps.</tt></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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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>
+    <pre>Drivers for working with different providers</pre>
+
+    
+    
+    <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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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>
+    <pre>Connection class for the Bluebox driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id378">
+  
+  
+<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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 2012
@@ -0,0 +1,378 @@
+<!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>
+    <pre>Bluebox Blocks node driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id379">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all nodes @return: C{list} of L{Node} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>List sizes on a provider</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List images on a provider</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new node instance.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy node by passing in the node object</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List data centers for a provider @return: C{list} of L{NodeLocation} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot a node.</tt></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="id380">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#__init__">__init__</a></td>
+    <td><tt>@keyword    key:    API key or username to used @type       key:    str</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></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><tt>Block until node is fully booted and has an IP address assigned.</tt></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><tt>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.</tt></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><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></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="id381">
+  
+  
+<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><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></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>
+    <pre>List all nodes
+@return: C{list} of L{Node} objects</pre>
+  </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>
+    <pre>List sizes on a provider
+
+@keyword location: The location at which to list sizes
+@type location: L{NodeLocation}
+
+@return: C{list} of L{NodeSize} objects</pre>
+  </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>
+    <pre>List images on a provider
+
+@keyword location: The location at which to list images
+@type location: L{NodeLocation}
+
+@return: C{list} of L{NodeImage} objects</pre>
+  </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>
+    <pre>Create a new node instance.
+
+@keyword    name:   String with a name for this new node (required)
+@type       name:   str
+
+@keyword    size:   The size of resources allocated to this node.
+                    (required)
+@type       size:   L{NodeSize}
+
+@keyword    image:  OS Image to boot on node. (required)
+@type       image:  L{NodeImage}
+
+@keyword    location: Which data center to create a node in. If empty,
+                      undefined behavoir will be selected. (optional)
+@type       location: L{NodeLocation}
+
+@keyword    auth:   Initial authentication information for the node
+                    (optional)
+@type       auth:   L{NodeAuthSSHKey} or L{NodeAuthPassword}
+
+@return: The newly created L{Node}.</pre>
+  </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>
+    <pre>Destroy node by passing in the node object</pre>
+  </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>
+    <pre>List data centers for a provider
+@return: C{list} of L{NodeLocation} objects</pre>
+  </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>
+    <pre>Reboot a node.
+
+@param node: The node to be rebooted
+@type node: L{Node}
+
+@return: C{bool} True if the reboot was successful, otherwise False</pre>
+  </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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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="id376">
+  
+  
+<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="id377">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.UuidMixin.html#get_uuid">get_uuid</a></td>
+    <td><tt>Unique hash for a node, node image, or node size</tt></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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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.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="id373">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxResponse.html#parse_error">parse_error</a></td>
+    <td><tt>Parse the error messages.</tt></td>
+  </tr>
+  
+</table>
+      
+        <p>
+          Inherited from <a href="libcloud.common.base.JsonResponse.html">JsonResponse</a>:
+        </p>
+        <table class="children sortable" id="id374">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.JsonResponse.html#parse_body">parse_body</a></td>
+    <td><tt>Parse response body.</tt></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="id375">
+  
+  
+<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><tt>Determine if our request was successful.</tt></td>
+  </tr><tr class="basemethod private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.common.base.Response.html#_decompress_response">_decompress_response</a></td>
+    <td><tt>Decompress a response body if it is using deflate or gzip encoding.</tt></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>
+    <pre>Parse the error messages.
+
+Override in a provider's subclass.
+
+@return: Parsed error.</pre>
+  </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-02-08 17:57:04.
+    </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 Thu Feb  9 02:00:15 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>
+    <pre>libcloud driver for the Blue Box Blocks API
+
+This driver implements all libcloud functionality for the Blue Box Blocks API.
+
+Blue Box home page            http://bluebox.net
+Blue Box API documentation    https://boxpanel.bluebox.net/public/the_vault/index.php/Blocks_API</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id372">
+  
+  
+<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><tt>Connection class for the Bluebox driver</tt></td>
+  </tr><tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.bluebox.BlueboxNodeDriver.html">BlueboxNodeDriver</a></td>
+    <td><tt>Bluebox Blocks node driver</tt></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-02-08 17:57:04.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html Thu Feb  9 02:00:15 2012
@@ -0,0 +1,569 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.brightbox.BrightboxNodeDriver : 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.BrightboxNodeDriver(<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.brightbox.html">brightbox</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L29">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.brightbox.BrightboxNodeDriver">View In Hierarchy</a>
+    </p>
+    <div>
+      
+    </div>
+    <pre>Brightbox node driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id425">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#create_node">create_node</a></td>
+    <td><tt>Create a new node instance.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#destroy_node">destroy_node</a></td>
+    <td><tt>Destroy a node.</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#list_nodes">list_nodes</a></td>
+    <td><tt>List all nodes @return: C{list} of L{Node} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#list_images">list_images</a></td>
+    <td><tt>List images on a provider</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#list_sizes">list_sizes</a></td>
+    <td><tt>List sizes on a provider</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#list_locations">list_locations</a></td>
+    <td><tt>List data centers for a provider @return: C{list} of L{NodeLocation} objects</tt></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#ex_list_cloud_ips">ex_list_cloud_ips</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#ex_create_cloud_ip">ex_create_cloud_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#ex_map_cloud_ip">ex_map_cloud_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#ex_unmap_cloud_ip">ex_unmap_cloud_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#ex_destroy_cloud_ip">ex_destroy_cloud_ip</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.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.brightbox.BrightboxNodeDriver.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.compute.drivers.brightbox.BrightboxNodeDriver.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.compute.drivers.brightbox.BrightboxNodeDriver.html#_to_location">_to_location</a></td>
+    <td><span class="undocumented">Undocumented</span></td>
+  </tr><tr class="method private">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html#_post">_post</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="id426">
+  
+  
+<tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#__init__">__init__</a></td>
+    <td><tt>@keyword    key:    API key or username to used @type       key:    str</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#reboot_node">reboot_node</a></td>
+    <td><tt>Reboot a node.</tt></td>
+  </tr><tr class="basemethod">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.base.NodeDriver.html#deploy_node">deploy_node</a></td>
+    <td><tt>Create a new node, and start deployment.</tt></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><tt>Block until node is fully booted and has an IP address assigned.</tt></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><tt>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.</tt></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><tt>Run the deployment script on the provided node. At this point it is assumed that SSH connection has already been established.</tt></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="id427">
+  
+  
+<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><tt>Return extra connection keyword arguments which are passed to the Connection class constructor.</tt></td>
+  </tr>
+  
+</table>
+      
+      
+    </div>
+    
+    
+    
+
+    <div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver._to_node">
+    
+  </a>
+  <a name="_to_node">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_node(self, data):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L47" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver._to_image">
+    
+  </a>
+  <a name="_to_image">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_image(self, data):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L63" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver._to_size">
+    
+  </a>
+  <a name="_to_size">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_size(self, data):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L74" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver._to_location">
+    
+  </a>
+  <a name="_to_location">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _to_location(self, data):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L85" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver._post">
+    
+  </a>
+  <a name="_post">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    _post(self, path, data={}):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L93" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.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/brightbox.py#L98" 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>
+    <pre>Create a new node instance.
+
+@keyword    name:   String with a name for this new node (required)
+@type       name:   str
+
+@keyword    size:   The size of resources allocated to this node.
+                    (required)
+@type       size:   L{NodeSize}
+
+@keyword    image:  OS Image to boot on node. (required)
+@type       image:  L{NodeImage}
+
+@keyword    location: Which data center to create a node in. If empty,
+                      undefined behavoir will be selected. (optional)
+@type       location: L{NodeLocation}
+
+@keyword    auth:   Initial authentication information for the node
+                    (optional)
+@type       auth:   L{NodeAuthSSHKey} or L{NodeAuthPassword}
+
+@return: The newly created L{Node}.</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.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/brightbox.py#L115" 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>
+    <pre>Destroy a node.
+
+Depending upon the provider, this may destroy all data associated with
+the node, including backups.
+
+@param node: The node to be destroyed
+@type node: L{Node}
+
+@return: C{bool} True if the destroy was successful, otherwise False</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.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/brightbox.py#L120" 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>
+    <pre>List all nodes
+@return: C{list} of L{Node} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.list_images">
+    
+  </a>
+  <a name="list_images">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_images(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L125" 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>
+    <pre>List images on a provider
+
+@keyword location: The location at which to list images
+@type location: L{NodeLocation}
+
+@return: C{list} of L{NodeImage} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.list_sizes">
+    
+  </a>
+  <a name="list_sizes">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    list_sizes(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L130" 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>
+    <pre>List sizes on a provider
+
+@keyword location: The location at which to list sizes
+@type location: L{NodeLocation}
+
+@return: C{list} of L{NodeSize} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.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/brightbox.py#L135" 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>
+    <pre>List data centers for a provider
+@return: C{list} of L{NodeLocation} objects</pre>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.ex_list_cloud_ips">
+    
+  </a>
+  <a name="ex_list_cloud_ips">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_list_cloud_ips(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L140" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.ex_create_cloud_ip">
+    
+  </a>
+  <a name="ex_create_cloud_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_create_cloud_ip(self):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L143" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.ex_map_cloud_ip">
+    
+  </a>
+  <a name="ex_map_cloud_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_map_cloud_ip(self, cloud_ip_id, interface_id):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L146" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.ex_unmap_cloud_ip">
+    
+  </a>
+  <a name="ex_unmap_cloud_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_unmap_cloud_ip(self, cloud_ip_id):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L151" class="functionSourceLink">
+      
+      (source)
+    </a>
+  </div>
+  <div class="functionBody">
+    
+    <div class="undocumented">Undocumented</div>
+  </div>
+</div><div class="function">
+  <a name="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.ex_destroy_cloud_ip">
+    
+  </a>
+  <a name="ex_destroy_cloud_ip">
+    
+  </a>
+  <div class="functionHeader">
+    
+    def
+    ex_destroy_cloud_ip(self, cloud_ip_id):
+    <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/brightbox.py#L156" 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-02-08 17:57:04.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.brightbox.html Thu Feb  9 02:00:15 2012
@@ -0,0 +1,51 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+  "DTD/xhtml1-strict.dtd">
+<html>
+  <head>
+    <title>libcloud.compute.drivers.brightbox : 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.brightbox : 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/brightbox.py">View Source</a>
+      
+    </p>
+    <div>
+      
+    </div>
+    <pre>Brightbox Driver</pre>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id424">
+  
+  
+<tr class="class">
+    
+    
+    <td>Class</td>
+    <td><a href="libcloud.compute.drivers.brightbox.BrightboxNodeDriver.html">BrightboxNodeDriver</a></td>
+    <td><tt>Brightbox node driver</tt></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-02-08 17:57:04.
+    </address>
+  </body>
+</html>
\ No newline at end of file

Added: websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.cloudsigma.CloudSigmaBaseConnection.html
==============================================================================
--- websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.cloudsigma.CloudSigmaBaseConnection.html (added)
+++ websites/staging/libcloud/trunk/content/apidocs/0.8.0/libcloud.compute.drivers.cloudsigma.CloudSigmaBaseConnection.html Thu Feb  9 02:00:15 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.cloudsigma.CloudSigmaBaseConnection : 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.c.CloudSigmaBaseConnection(<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.cloudsigma.html">cloudsigma</a></span>
+      <a href="https://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/cloudsigma.py#L189">View Source</a>
+      <a href="classIndex.html#libcloud.compute.drivers.cloudsigma.CloudSigmaBaseConnection">View In Hierarchy</a>
+    </p>
+    <div>
+      <p>Known subclasses: <a href="libcloud.compute.drivers.cloudsigma.CloudSigmaLvsConnection.html">libcloud.compute.drivers.cloudsigma.CloudSigmaLvsConnection</a>, <a href="libcloud.compute.drivers.cloudsigma.CloudSigmaZrhConnection.html">libcloud.compute.drivers.cloudsigma.CloudSigmaZrhConnection</a></p>
+    </div>
+    <div class="undocumented">Undocumented</div>
+
+    
+    
+    <div id="splitTables">
+      <table class="children sortable" id="id264">
+  
+  
+<tr class="method">
+    
+    
+    <td>Method</td>
+    <td><a href="libcloud.compute.drivers.cloudsigma.CloudSigmaBaseConnection.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.cloudsigma.CloudSigmaBaseConnection.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/cloudsigma.py#L193" 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-02-08 17:57:04.
+    </address>
+  </body>
+</html>
\ No newline at end of file