You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by ma...@apache.org on 2013/01/24 18:35:00 UTC

svn commit: r1438096 [2/2] - in /deltacloud/trunk/site: content/ content/assets/css/ content/assets/img/ content/cimi-curl/ content/cimi-rest/ layouts/partials/default/ output/ output/assets/img/ output/cimi-curl/ output/cimi-rest/ tmp/

Modified: deltacloud/trunk/site/output/instance-states.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/instance-states.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/instance-states.html (original)
+++ deltacloud/trunk/site/output/instance-states.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -109,52 +110,49 @@ Each cloud defines a slightly different 
 Differences between clouds are modelled by expressing the lifecycle of an instance as a finite state machine and capturing it in an instance states entity.The API defines the following states for an instance:</p>
 
 <table class="table table-condensed table-striped">
-  <thead>
-    <tr>
-      <th>State</th>
+<thead><tr>
+<th>State</th>
       <th>Meaning</th>
-    </tr>
-  </thead>
-  <tbody>
-    <tr>
-      <td>start</td>
+    </tr></thead>
+<tbody>
+<tr>
+<td>start</td>
       <td>an instance state before creation of an instance</td>
     </tr>
-    <tr>
-      <td>pending</td>
+<tr>
+<td>pending</td>
       <td>creation of an instance is in progress</td>
     </tr>
-    <tr>
-      <td>running</td>
+<tr>
+<td>running</td>
       <td>an instance is running</td>
     </tr>
-    <tr>
-      <td>shutting-down</td>
+<tr>
+<td>shutting-down</td>
       <td>an instance is stopped</td>
     </tr>
-    <tr>
-      <td>stopped</td>
+<tr>
+<td>stopped</td>
       <td>an instance is stopped</td>
     </tr>
-    <tr>
-      <td>finished</td>
+<tr>
+<td>finished</td>
       <td>all resources for an instance have now been freed</td>
     </tr>
-  </tbody>
+</tbody>
 </table>
-
-  </div>
+</div>
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
   <li><a href="api-entry-point.html">API entry point</a></li>
   <li><a href="compute-resources.html">Compute resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="compute-resources.html">Realms</a></li>
+<li><a href="compute-resources.html">Realms</a></li>
     <li><a href="hardware-profiles.html">Hardware profiles</a></li>
     <li><a href="images.html">Images</a></li>
     <li class="active"><a href="#instance-states">Instance states</a></li>
@@ -164,10 +162,9 @@ Differences between clouds are modelled 
     <li><a href="addresses.html">Addresses</a></li>
     <li><a href="load-balancers.html">Load balancers</a></li>
   </ul>
-  <li><a href="storage-resources.html">Storage resources</a></li>
+<li><a href="storage-resources.html">Storage resources</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <p>
@@ -175,33 +172,29 @@ The details of a particular instance des
 </p>
 
 <table class="table table-condensed table-striped">
- <thead>
-  <tr>
-   <th>Action</th>
+<thead><tr>
+<th>Action</th>
    <th>Meaning</th>
-  </tr>
- </thead>
- <tbody>
-  <tr>
-   <td>start</td>
+  </tr></thead>
+<tbody>
+<tr>
+<td>start</td>
    <td>starts the instance</td>
   </tr>
-  <tr>
-   <td>stop</td>
+<tr>
+<td>stop</td>
    <td>stops (and for some providers shutdown) the instance</td>
   </tr>
-  <tr>
-   <td>reboot</td>
+<tr>
+<td>reboot</td>
    <td>reboots the instance</td>
   </tr>
-  <tr>
-   <td>destroy</td>
+<tr>
+<td>destroy</td>
    <td>stops the instance and completely destroys it</td>
   </tr>
- </tbody>
-</table>
-
-<h4>Get an instance states entity</h4>
+</tbody>
+</table><h4>Get an instance states entity</h4>
 
 <p>To retrieve the instance states entity for a back-end cloud use call <strong>GET /api/instance_states</strong>. The instance states entity defines possible transitions between various states of an instance, specific for each back-end cloud. As a result, instance states defines the finite state machine for instances from the given cloud.</p>
 
@@ -248,7 +241,6 @@ Content-Length: 583
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/instances.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/instances.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/instances.html (original)
+++ deltacloud/trunk/site/output/instances.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -106,84 +107,81 @@ An instance represents the core of all c
 </p>
 
 <table class="table table-condensed table-striped">
-  <thead>
-    <tr>
-      <th>Attribute</th>
+<thead><tr>
+<th>Attribute</th>
       <th>Meaning</th>
-    </tr>
-  </thead>
-  <tbody>
-    <tr>
-     <td>owner_id</td>
+    </tr></thead>
+<tbody>
+<tr>
+<td>owner_id</td>
      <td>the id of the cloud provider account that launched the instance</td>
     </tr>
-    <tr>
-      <td>image_id</td>
+<tr>
+<td>image_id</td>
       <td>the id of the image from which the instance was launched</td>
     </tr>
-    <tr>
-      <td>name</td>
+<tr>
+<td>name</td>
       <td>a human readable name for the instance given at launch time</td>
     </tr>
-    <tr>
-      <td>realm_id</td>
+<tr>
+<td>realm_id</td>
       <td>realm into which the instance was launched</td>
     </tr>
-    <tr>
-      <td>state</td>
+<tr>
+<td>state</td>
       <td>current state of the instance (e.g. 'running')</td>
     </tr>
-    <tr>
-      <td>actions</td>
+<tr>
+<td>actions</td>
       <td>actions that a client may effect on the instance, based on current state</td>
     </tr>
-    <tr>
-      <td>public_addresses</td>
+<tr>
+<td>public_addresses</td>
       <td>the globally routable IP address of the instance</td>
     </tr>
-    <tr>
-      <td>private_addresses</td>
+<tr>
+<td>private_addresses</td>
       <td>the private IP address of the instance, routable within its private network</td>
     </tr>
-    <tr>
-      <td>instance_profile</td>
+<tr>
+<td>instance_profile</td>
       <td>the specific values of memory, cpu, storage</td>
     </tr>
-    <tr>
-      <td>launch_time</td>
+<tr>
+<td>launch_time</td>
       <td>timestamp at which the instance was launched</td>
     </tr>
-    <tr>
-      <td>keyname</td>
+<tr>
+<td>keyname</td>
       <td>name of authentication key, if this method is used for authentication (e.g. EC2)</td>
     </tr>
-    <tr>
-      <td>username</td>
+<tr>
+<td>username</td>
       <td>the username for authentication when connecting to the instance</td>
     </tr>
-    <tr id="instance">
-      <td>password</td>
+<tr id="instance">
+<td>password</td>
       <td>the password used together with username above</td>
     </tr>
-    <tr>
-      <td>firewalls</td>
+<tr>
+<td>firewalls</td>
       <td>the firewalls that this instance was launched into (EC2 specific)</td>
     </tr>
-  </tbody>
+</tbody>
 </table>
-
-  </div>
+</div>
   <div class="span3">
   
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
   <li><a href="api-entry-point.html">API entry point</a></li>
   <li><a href="compute-resources.html">Compute resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="compute-resources.html">Realms</a></li>
+<li><a href="compute-resources.html">Realms</a></li>
     <li><a href="hardware-profiles.html">Hardware profiles</a></li>
     <li><a href="images.html">Images</a></li>
     <li><a href="instance-states.html">Instance states</a></li>
@@ -193,22 +191,17 @@ An instance represents the core of all c
     <li><a href="addresses.html">Addresses</a></li>
     <li><a href="load-balancers.html">Load balancers</a></li>
   </ul>
-  <li><a href="storage-resources.html">Storage resources</a></li>
+<li><a href="storage-resources.html">Storage resources</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <ul class="nav nav-pills">
-  <li id="instance1" class="active"><a href="#tab1" data-toggle="tab">Get a list of all instances</a></li>
+<li id="instance1" class="active"><a href="#tab1" data-toggle="tab">Get a list of all instances</a></li>
   <li id="instance2"><a href="#tab2" data-toggle="tab">Get the details of an instance</a></li>
   <li id="instance3"><a href="#tab3" data-toggle="tab">Launch an action</a></li>
   <li id="instance4"><a href="#tab4" data-toggle="tab">Create an instance</a></li>
-</ul>
-
-<hr>
-
-<div class="tab-content">
+</ul><hr><div class="tab-content">
   <div class="tab-pane active" id="tab1">
 
   <h4 id="list">Get a list of all current instances</h4>
@@ -721,7 +714,6 @@ Content-Length: 883
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/join-deltacloud.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/join-deltacloud.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/join-deltacloud.html (original)
+++ deltacloud/trunk/site/output/join-deltacloud.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -96,7 +97,6 @@
 
       
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/keys.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/keys.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/keys.html (original)
+++ deltacloud/trunk/site/output/keys.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -106,10 +107,9 @@ A key captures the credentials required 
 </p>
 
 <ul>
-  <li>the <strong>password</strong> with username and password attributes</li>
+<li>the <strong>password</strong> with username and password attributes</li>
   <li>the <strong>key</strong> with fingerprint and pem (private key) attributes (public/private keypair)</li>
 </ul>
-
 <p>
 The key type is determined by the back-end cloud provider.
 </p>
@@ -130,14 +130,14 @@ The Rackspace cloud also reports credent
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
   <li><a href="api-entry-point.html">API entry point</a></li>
   <li><a href="compute-resources.html">Compute resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="compute-resources.html">Realms</a></li>
+<li><a href="compute-resources.html">Realms</a></li>
     <li><a href="hardware-profiles.html">Hardware profiles</a></li>
     <li><a href="images.html">Images</a></li>
     <li><a href="instance-states.html">Instance states</a></li>
@@ -147,21 +147,16 @@ The Rackspace cloud also reports credent
     <li><a href="addresses.html">Addresses</a></li>
     <li><a href="load-balancers.html">Load balancers</a></li>
   </ul>
-  <li><a href="storage-resources.html">Storage resources</a></li>
+<li><a href="storage-resources.html">Storage resources</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <ul class="nav nav-pills">
-  <li class="active"><a href="#tab1" data-toggle="tab">Get a list of all keys</a></li>
+<li class="active"><a href="#tab1" data-toggle="tab">Get a list of all keys</a></li>
   <li><a href="#tab2" data-toggle="tab">Get the description of a key</a></li>
   <li><a href="#tab3" data-toggle="tab">Create/delete a key</a></li>
-</ul>
-
-<hr>
-
-<div class="tab-content">
+</ul><hr><div class="tab-content">
   <div class="tab-pane active" id="tab1">
   
 <h4 id="get">Get a list of all keys</h4>
@@ -349,7 +344,6 @@ Date: Tue, 26 Jul 2011 10:18:38 GMT
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/libdeltacloud.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/libdeltacloud.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/libdeltacloud.html (original)
+++ deltacloud/trunk/site/output/libdeltacloud.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -96,7 +97,6 @@
 
       
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/load-balancers.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/load-balancers.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/load-balancers.html (original)
+++ deltacloud/trunk/site/output/load-balancers.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -110,12 +111,11 @@ This collection is not supported by all 
 </p>
 
 <ul>
-  <li>a <strong>list of instances</strong>;</li>
+<li>a <strong>list of instances</strong>;</li>
   <li>a <strong>public address</strong> representing the IP address that the balancer will respond on to client requests;</li>
   <li>a <strong>created_at</strong> timestamp; and</li>
   <li>a list of <strong>listeners</strong>.</li>
 </ul>
-
 <p>
 Each <strong>listener</strong> has a <strong>protocol</strong> (e.g. TCP), a <strong>load balancer port</strong> and an <strong>instance port</strong>. The load balancer represents the port on which the balancer accepts connections. The instance port represents the port on which network traffic is forwarded to instances in the <strong>instance list</strong>.
 </p>
@@ -124,14 +124,14 @@ Each <strong>listener</strong> has a <st
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
   <li><a href="api-entry-point.html">API entry point</a></li>
   <li><a href="compute-resources.html">Compute resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="realms.html">Realms</a></li>
+<li><a href="realms.html">Realms</a></li>
     <li><a href="hardware-profiles.html">Hardware profiles</a></li>
     <li><a href="images.html">Images</a></li>
     <li><a href="instance-states.html">Instance states</a></li>
@@ -141,24 +141,19 @@ Each <strong>listener</strong> has a <st
     <li><a href="addresses.html">Addresses</a></li>
     <li class="active"><a href="#load">Load balancers</a></li>
   </ul>
-  <li><a href="storage-resources.html">Storage resources</a></li>
+<li><a href="storage-resources.html">Storage resources</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <p><br></p>
 
 <ul class="nav nav-pills">
-  <li class="active"><a href="#tab1" data-toggle="tab">Get the details of all load balancers</a></li>
+<li class="active"><a href="#tab1" data-toggle="tab">Get the details of all load balancers</a></li>
   <li><a href="#tab2" data-toggle="tab">Get the details for a load balancer</a></li>
   <li><a href="#tab3" data-toggle="tab">Create/delete a load balancer</a></li>
   <li><a href="#tab4" data-toggle="tab">Register/unregister an instance</a></li>
-</ul>
-
-<hr>
-
-<div class="tab-content">
+</ul><hr><div class="tab-content">
   <div class="tab-pane active" id="tab1">
 
 
@@ -423,7 +418,6 @@ Date: Thu, 28 Jul 2011 19:09:17 GMT
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/rest-api.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/rest-api.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/rest-api.html (original)
+++ deltacloud/trunk/site/output/rest-api.html Thu Jan 24 17:34:59 2013
@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="utf-8">
-    <title>REST API</title>
+    <title>Deltacloud REST API</title>
     <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
     <!--[if lt IE 9]>
     <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -99,7 +100,7 @@
 <div class="row">
   <div class="span9">
 
-<h3 id="rest">REST API</h3>
+<h3 id="rest">The Deltacloud REST API</h3>
 
 <p>
 Apache Deltacloud is a REST-based (HATEOAS) cloud abstraction API. It enables management of resources in different IaaS clouds using a single API. There are back-end drivers communicating with each cloud provider's native API and the Deltacloud Core Framework provides the basis for implementing drivers to new IaaS clouds. Apache Deltacloud currently supports many back-end <a href="drivers.html#drivers">cloud providers</a>.
@@ -119,12 +120,12 @@ The following terms describe abstraction
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li class="active"><a href="#rest">Introduction</a></li>
   <ul class="nav nav-list">
-    <li><a href="#collections">Collections</a></li>
+<li><a href="#collections">Collections</a></li>
     <li><a href="#requests">Client requests</a></li>
     <li><a href="#auth">Authentication</a></li>
     <li><a href="#response">Server responses</a></li>
@@ -132,12 +133,11 @@ The following terms describe abstraction
     <li><a href="#stab">API stability</a></li>
     <li><a href="#doc">Online documentation</a></li>
   </ul>
-  <li><a href="api-entry-point.html">API entry point</a></li>
+<li><a href="api-entry-point.html">API entry point</a></li>
   <li><a href="compute-resources.html">Compute resources</a></li>
   <li><a href="storage-resources.html">Storage resources</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <dl class="dl dl-horizontal">
@@ -249,21 +249,19 @@ You may come across the following change
 </p>
 
 <ul>
-  <li>adding new collections, or supporting new operations on existing collections</li>
+<li>adding new collections, or supporting new operations on existing collections</li>
   <li>adding optional parameters to existing operations</li>
   <li>adding additional attributes and elements to the XML/JSON responses</li>
 </ul>
-
 <p>
 On the other hand, these changes would violate API stability and therefore they are not made:
 </p>
 
 <ul>
-  <li>removing an operation on a collection</li>
+<li>removing an operation on a collection</li>
   <li>making an optional parameter for an operation mandatory</li>
   <li>removing attributes or elements from XML responses</li>
 </ul>
-
 <h3 id="doc">Online documentation</h3>
 
 <p>
@@ -275,7 +273,6 @@ You can access an automatically generate
 <br>
 </dl>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/ruby-client.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/ruby-client.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/ruby-client.html (original)
+++ deltacloud/trunk/site/output/ruby-client.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -116,7 +117,7 @@ puts instance.hardware_profile.architect
   <div class="span4">
   
 <ul class="nav nav-list well">
-  <li class="nav-header">Deltacloud Ruby Client</li>
+<li class="nav-header">Deltacloud Ruby Client</li>
   <li class="active"><a href="#realms">Listing realms</a></li>
   <li><a href="#profiles">Listing hardware profiles</a></li>
   <li><a href="#images">Listing images</a></li>
@@ -125,8 +126,7 @@ puts instance.hardware_profile.architect
   <li><a href="#instances3">Manipulating instances</a></li>
   <li><a href="http://deltacloud.apache.org/ruby-client/doc/index.html">Client documentation</a></li>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <p>You can access a specific realm by adding its identifier:</p>
@@ -219,7 +219,6 @@ puts instance.hardware_profile.architect
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/run-deltacloud-server.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/run-deltacloud-server.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/run-deltacloud-server.html (original)
+++ deltacloud/trunk/site/output/run-deltacloud-server.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -179,7 +180,6 @@ The browser will ask for credentials. To
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/send-patch.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/send-patch.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/send-patch.html (original)
+++ deltacloud/trunk/site/output/send-patch.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -97,20 +98,18 @@
       <p><br></p>
 
 <ul class="breadcrumb">
-  <li>
+<li>
     <a href="how-to-contribute.html#how">How to contribute?</a> <span class="divider">/</span>
   </li>
   <li class="active">Send a patch</li>
-</ul>
-
-<h3>Formatting and sending patches</h3>
+</ul><h3>Formatting and sending patches</h3>
 
 <p>
 The Deltacloud community works with <a href="http://book.git-scm.com/">Git</a>. The process of contributing to the project we prefer contains these steps: <strong>local_branch → patch → review → accept → commit</strong> process for contributing to the project. This is how the typical workflow used by the core developers looks like:
 </p>
 
 <ol>
-  <li>
+<li>
   <p>
   Set the following settings inside the git configuration file. The config file is located in the root of the Deltacloud project in a hidden <strong>.git</strong> directory. Open the config file with your preferred editor:
   </p>
@@ -240,14 +239,12 @@ $ git send-email --compose --subject 'so
   The other members of the community will review your patches. The patch has to receive at least one <strong>ACK </strong>and no <strong>NACK</strong> to be approved. Then the patch will be committed by one of the Deltacloud developers with commit rights to the Apache repo. If noone is responding to your patch sent to mailing list, feel free to remind yourself after few days.
   </p>
   </li>
-</ol>
-
-<p>
+</ol><p>
 You can also contribute to the project by reviewing patches sent by other contributors:
 </p>
 
 <ol>
-  <li>
+<li>
   <p>
   Make a new branch where you will apply the patches and test:
   </p>
@@ -283,9 +280,7 @@ $ git am /path/to/patches/0001-name-of-p
 If you think the patches are working correctly, send an <strong>ACK</strong> to the Deltacloud <a href="http://mail-archives.apache.org/mod_mbox/deltacloud-dev/">mailing list</a>. Similarly, if you think the patches could cause a problem, send a <strong>NACK</strong> and explain the issue you have found.
 </p>
   </li>
-</ol>
-
-<p>
+</ol><p>
   <a class="btn btn-inverse btn-large" style="float: right" data-toggle="modal" href="#tests">Test the patch</a>
   <a class="btn btn-inverse btn-large" href="how-to-contribute.html"><i class="icon-arrow-left icon-white" style="vertical-align:baseline"> </i> Back</a>
 </p>
@@ -341,7 +336,6 @@ $ cucumber ../tests/ec2
   </div>
 </div>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/storage-resources.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/storage-resources.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/storage-resources.html (original)
+++ deltacloud/trunk/site/output/storage-resources.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -106,12 +107,11 @@ Storage resources are divided into two g
 </p>
 
 <ul>
-  <li>
+<li>
 <strong>storage volumes</strong>, which can be attached to a running instance (accessible by the instance OS)</li>
   <li>
 <strong>blob storage</strong>, which represents a generic 'key &lt;−−&gt; value' based data store, as implemented by Rackspace CloudFiles or Amazon S3</li>
 </ul>
-
 <p>
 <strong>Storage snapshots</strong> represent a storage volume, a backup which is created at a particular point of time (a snapshot).
 </p>
@@ -126,7 +126,7 @@ A storage volume has
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
@@ -134,24 +134,21 @@ A storage volume has
   <li><a href="compute-resources.html">Compute resources</a></li>
   <li class="active"><a href="#resources">Storage resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="#volumes">Storage volumes</a></li>
+<li><a href="#volumes">Storage volumes</a></li>
     <li><a href="storage-snapshots.html">Storage snapshots</a></li>
     <li><a href="blob-storage.html">Blob storage</a></li>
   </ul>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <ul>
-  <li>a <strong>capacity</strong> expressed in Gigabytes;</li>
+<li>a <strong>capacity</strong> expressed in Gigabytes;</li>
   <li>a <strong>created</strong> timestamp;</li>
   <li>a <strong>realm_id</strong> specifying the realm in which the volume exists;</li>
   <li>a <strong>state</strong> (for Amazon EC2 this is one of creating, available, in-use, deleting, deleted, error); and </li>
   <li>a set of <strong>actions</strong>.</li>
-</ul>
-
-<p>
+</ul><p>
 When attached to an instance, a storage volume will also expose a <strong>mount</strong> element
 which contains the attributes <strong>instance </strong>and <strong>device</strong>, specifying the instance, to which the volume is attached, and the mount point (e.g. /dev/sdh), respectively.
 </p>
@@ -159,15 +156,11 @@ which contains the attributes <strong>in
 <p><br></p>
 
 <ul class="nav nav-pills">
-  <li class="active"><a href="#tab1" data-toggle="tab">Get a list of all volumes</a></li>
+<li class="active"><a href="#tab1" data-toggle="tab">Get a list of all volumes</a></li>
   <li><a href="#tab2" data-toggle="tab">Get the details of volume</a></li>
   <li><a href="#tab3" data-toggle="tab">Create/delete a volume</a></li>
   <li><a href="#tab4" data-toggle="tab">Attach/detach a volume</a></li>
-</ul>
-
-<hr>
-
-<div class="tab-content">
+</ul><hr><div class="tab-content">
   <div class="tab-pane active" id="tab1">
 
 <h4>Get a list of all storage volumes</h4>
@@ -477,7 +470,6 @@ Content-Length: 709
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/storage-snapshots.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/storage-snapshots.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/storage-snapshots.html (original)
+++ deltacloud/trunk/site/output/storage-snapshots.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -106,26 +107,20 @@ A storage snapshot captures the state of
 </p>
 
 <ul>
-  <li>a <strong>created timestamp</strong>; and</li>
+<li>a <strong>created timestamp</strong>; and</li>
   <li>a <strong>storage volume </strong>attribute referring to the volume from which the snapshot was made.</li>
 </ul>
-
-<br>
-<br>
-
-<ul class="nav nav-pills">
-  <li class="active"><a href="#tab1" data-toggle="tab">Get a list of all snapshots</a></li>
+<br><br><ul class="nav nav-pills">
+<li class="active"><a href="#tab1" data-toggle="tab">Get a list of all snapshots</a></li>
   <li><a href="#tab2" data-toggle="tab">Get the details of a snapshot</a></li>
   <li><a href="#tab3" data-toggle="tab">Create/delete a snapshot</a></li>
 </ul>
-
 <hr>
-
-  </div>
+</div>
   <div class="span3">
 
 <ul class="nav nav-list well">
-  <li class="nav-header">
+<li class="nav-header">
     REST API
   </li>
   <li><a href="rest-api.html">Introduction</a></li>
@@ -133,13 +128,12 @@ A storage snapshot captures the state of
   <li><a href="compute-resources.html">Compute resources</a></li>
   <li><a href="storage-resources.html">Storage resources</a></li>
   <ul class="nav nav-list">
-    <li><a href="storage-resources.html#volumes">Storage volumes</a></li>
+<li><a href="storage-resources.html#volumes">Storage volumes</a></li>
     <li class="active"><a href="#snapshots">Storage snapshots</a></li>
     <li><a href="blob-storage.html">Blob storage</a></li>
   </ul>
 </ul>
-
-  </div>
+</div>
 </div>
 
 <div class="tab-content">
@@ -298,7 +292,6 @@ Date: Thu, 28 Jul 2011 22:26:07 GMT
 
 <p><br></p>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/supported-providers.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/supported-providers.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/supported-providers.html (original)
+++ deltacloud/trunk/site/output/supported-providers.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -99,9 +100,8 @@
 
 <h4>Compute Driver Functionality</h4>
 <table class="table-bordered table-striped table-condensed">
-  <thead>
-    <tr>
-      <th class="emptycell"> </th>
+<thead><tr>
+<th class="emptycell"> </th>
       <th>
         Create new instances
       </th>
@@ -129,11 +129,10 @@
       <th>
         List all/get details about instances
       </th>
-    </tr>
-  </thead>
-  <tbody>
-    <tr>
-      <td class="provider">
+    </tr></thead>
+<tbody>
+<tr>
+<td class="provider">
         <strong>Amazon EC2</strong>
       </td>
       <td>yes</td>
@@ -147,8 +146,8 @@
       <td>yes</td>
       
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Eucalyptus</strong>
       </td>
       <td>yes</td>
@@ -161,8 +160,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>IBM SmartCloud</strong>
       </td>
       <td>yes</td>
@@ -175,8 +174,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>GoGrid</strong>
       </td>
       <td>yes</td>
@@ -189,8 +188,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>OpenNebula</strong>
       </td>
       <td>yes</td>
@@ -203,8 +202,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Rackspace</strong>
       </td>
       <td>yes</td>
@@ -217,8 +216,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>RHEV-M</strong>
       </td>
       <td>yes</td>
@@ -231,8 +230,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>RimuHosting</strong>
       </td>
       <td>yes</td>
@@ -245,8 +244,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Terremark</strong>
       </td>
       <td>yes</td>
@@ -259,8 +258,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>vSphere</strong>
       </td>
       <td>yes</td>
@@ -273,8 +272,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>OpenStack</strong>
       </td>
       <td>yes</td>
@@ -287,8 +286,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>FGCP</strong>
       </td>
       <td>yes</td>
@@ -301,8 +300,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Aruba cloud.it</strong>
       </td>
       <td>yes</td>
@@ -315,14 +314,12 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-  </tbody>
-</table>
-<p><br></p>
+</tbody>
+</table><p><br></p>
 <h4>Storage Driver Functionality</h4>
 <table class="table-bordered table-striped table-condensed">
-  <thead>
-    <tr>
-      <th class="emptycell"> </th>
+<thead><tr>
+<th class="emptycell"> </th>
       <th>
         Create new buckets
       </th>
@@ -341,11 +338,10 @@
       <th>
         Read/write individual blob attributes
       </th>
-    </tr>
-  </thead>
-  <tbody>
-    <tr>
-      <td class="provider">
+    </tr></thead>
+<tbody>
+<tr>
+<td class="provider">
         <strong>Amazon S3</strong>
       </td>
       <td>yes</td>
@@ -355,8 +351,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Eucalyptus Walrus</strong>
       </td>
       <td>yes</td>
@@ -366,8 +362,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Rackspace CloudFiles</strong>
       </td>
       <td>yes</td>
@@ -377,8 +373,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Microsoft Azure</strong>
       </td>
       <td>yes</td>
@@ -388,8 +384,8 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-    <tr>
-      <td class="provider">
+<tr>
+<td class="provider">
         <strong>Google Storage</strong>
       </td>
       <td>yes</td>
@@ -399,25 +395,21 @@
       <td>yes</td>
       <td>yes</td>
     </tr>
-  </tbody>
-</table>
-
-<p><br></p>
+</tbody>
+</table><p><br></p>
 
 <h4 id="credentials">Cloud provider credentials</h4>
 <table class="table-bordered table-striped table-condensed">
-  <thead>
-    <tr>
-      <th>Cloud</th>
+<thead><tr>
+<th>Cloud</th>
       <th>Driver</th>
       <th>Username</th>
       <th>Password</th>
       <th>Notes</th>
-    </tr>
-  </thead>
-  <tbody>
-    <tr>
-      <td style="text-align:left">
+    </tr></thead>
+<tbody>
+<tr>
+<td style="text-align:left">
         <strong>mock</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">mock</span></td>
@@ -425,8 +417,8 @@
       <td style="text-align:left"><span style="font-size:x-small">mockpassword</span></td>
       <td style="text-align:left">The mock driver doesn't talk to any cloud; it just pretends to be a cloud.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Amazon EC2/S3</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">ec2</span></td>
@@ -434,8 +426,8 @@
       <td style="text-align:left">Secret Access Key</td>
       <td style="text-align:left">This information can be found on the <a href="http://aws-portal.amazon.com/gp/aws/developer/account/index.html?action=access-key">Security Credentials</a> page in your AWS account.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Eucalyptus</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">eucalyptus</span></td>
@@ -443,8 +435,8 @@
       <td style="text-align:left">Secret Access Key</td>
       <td style="text-align:left"></td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>GoGrid</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">gogrid</span></td>
@@ -452,8 +444,8 @@
       <td style="text-align:left">Shared Secret</td>
       <td style="text-align:left">Go to <span style="font-size:x-small">My Account &gt; API Keys</span> for <a href="https://my.gogrid.com/gogrid/com.servepath.gogrid.GoGrid/index.html">your account</a> and click on the key you want to use to find the shared secret.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>IBM SmartCloud</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">sbc</span></td>
@@ -461,8 +453,8 @@
       <td style="text-align:left">Password</td>
       <td style="text-align:left"></td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Microsoft Azure (Storage Account only)</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">azure</span></td>
@@ -470,8 +462,8 @@
       <td style="text-align:left">Primary Access Key</td>
       <td style="text-align:left">The Storage Account Name is chosen when you create the service (e.g. name in http://name.blob.core.windows.net/). This and the access key are available from the service control panel.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>OpenNebula</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">opennebula</span></td>
@@ -479,8 +471,8 @@
       <td style="text-align:left">OpenNebula password</td>
       <td style="text-align:left">Set the environment variable OCCI_URL to the address on which OpenNebula's OCCI server is listening.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Rackspace Cloud Servers/Cloud Files</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">rackspace</span></td>
@@ -488,8 +480,8 @@
       <td style="text-align:left">API Key</td>
       <td style="text-align:left">Obtain the key from the <a href="https://manage.rackspacecloud.com/APIAccess.do">API Access</a> page in your control panel.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>RHEV-M</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">rhevm</span></td>
@@ -499,8 +491,8 @@
       <td style="text-align:left">RHEV-M password</td>
       <td style="text-align:left">Set environment variable API_PROVIDER to the URL of the RHEV-M REST API endpoint. </td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Rimuhosting</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">rimuhosting</span></td>
@@ -508,8 +500,8 @@
       <td style="text-align:left">API Key</td>
       <td style="text-align:left"></td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Terremark</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">terremark</span></td>
@@ -517,8 +509,8 @@
       <td style="text-align:left">Password</td>
       <td style="text-align:left"></td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>VMware vSphere</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">vsphere</span></td>
@@ -526,8 +518,8 @@
       <td style="text-align:left">vSphere user password</td>
       <td style="text-align:left">Set environment variable API_PROVIDER to the hostname of the vSphere server.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>OpenStack</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">openstack</span></td>
@@ -535,8 +527,8 @@
       <td style="text-align:left">OpenStack user password</td>
       <td style="text-align:left">Set environment variable API_PROVIDER to the URL of OpenStack API entrypoint.</td>
     </tr>
-    <tr>
-      <td style="text-align:left">
+<tr>
+<td style="text-align:left">
         <strong>Aruba cloud.it</strong>
       </td>
       <td style="text-align:left"><span style="font-size:x-small">aruba</span></td>
@@ -544,10 +536,9 @@
       <td style="text-align:left">Password</td>
       <td style="text-align:left"></td>
     </tr>
-  </tbody>
+</tbody>
 </table>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/usage.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/usage.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/usage.html (original)
+++ deltacloud/trunk/site/output/usage.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -152,10 +153,7 @@ openstack = client.with_config(:driver =
 
 <a class="btn btn-inverse btn-large" style="float: right" href="ruby-client.html">Work with the Ruby client</a>
 
-<br>
-<br>
-
-<h3>HTTP clients - cURL</h3>
+<br><br><h3>HTTP clients - cURL</h3>
 
 <p>
 Basically, you interact with the Deltacloud server via HTTP calls, so you can use any HTTP client to talk to Deltacloud using the <a href="rest-api.html">REST API</a>.
@@ -224,10 +222,7 @@ The <strong>'-iv'</strong> flags will en
 
 <a class="btn btn-inverse btn-large" style="float: right" href="curl-examples.html">Working with cURL</a>
 
-<br>
-<br>
-
-<h3>Libdeltacloud Client (C library)</h3>
+<br><br><h3>Libdeltacloud Client (C library)</h3>
 <p>
 Libdeltacloud is a C/C++ library for accessing the Deltacloud API. It exports convenient structures and functions for manipulating cloud objects through the Deltacloud API.
 </p>
@@ -249,8 +244,6 @@ Due to the magic of libtool versioning, 
 
 <br>
 
-
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/use-the-api.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/use-the-api.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/use-the-api.html (original)
+++ deltacloud/trunk/site/output/use-the-api.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -96,7 +97,6 @@
 
       
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/output/write-new-driver.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/write-new-driver.html?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/output/write-new-driver.html (original)
+++ deltacloud/trunk/site/output/write-new-driver.html Thu Jan 24 17:34:59 2013
@@ -73,7 +73,8 @@
   <li class="dropdown">
     <a href="#" class="dropdown-toggle" data-toggle="dropdown">API<b class="caret"></b></a>
     <ul class="dropdown-menu">
-      <li><a href="/rest-api.html">REST API</a></li>
+      <li><a href="/rest-api.html">Deltacloud REST API</a></li>
+      <li><a href="/curl-examples.html">Deltacloud API cURL examples</a></li>
       <li><a href="/drivers.html">Drivers API</a></li>
     </ul>
   </li>
@@ -97,19 +98,16 @@
       <p><br></p>
 
 <ul class="breadcrumb">
-  <li>
+<li>
     <a href="how-to-contribute.html#how">How to contribute?</a> <span class="divider">/</span>
   </li>
   <li class="active">Write a provider driver</li>
-</ul>
-
-<h3 id="driver">Write a provider driver</h3>
+</ul><h3 id="driver">Write a provider driver</h3>
 
 <p>The deltacloud drivers are stored in <strong>deltacloud/server/lib/deltacloud/drivers</strong>.</p>
 
 <ol>
-
-  <li>
+<li>
 
   <p>
   To add a driver for a hypotetical <strong>Foo</strong> cloud, add a directory into /drivers/ and then add a file for a driver itself:
@@ -148,9 +146,7 @@ end
   </p>
   
   </li>
-</ol>
-
-<p>Thus, your driver for the cloud provider Foo may look like:</p>
+</ol><p>Thus, your driver for the cloud provider Foo may look like:</p>
 
 <pre>
 require 'deltacloud/base_driver'
@@ -217,30 +213,26 @@ The voodoo used here (i.e. definition of
 <p>Valid states are:</p>
 
 <ul>
-  <li><strong>:begin</strong></li>
+<li><strong>:begin</strong></li>
   <li><strong>:pending</strong></li>
   <li><strong>:running</strong></li>
   <li><strong>:shutting_down</strong></li>
   <li><strong>:stopped</strong></li>
   <li><strong>:end</strong></li>
-</ul>
-
-<p>The instance is located in the<strong>:begin</strong> state before being created. Immediately after being destroyed the instance is removed to the <strong>:end</strong> state.</p>
+</ul><p>The instance is located in the<strong>:begin</strong> state before being created. Immediately after being destroyed the instance is removed to the <strong>:end</strong> state.</p>
 
 <p>Valid transition actions are:</p>
 
 <ul>
-  <li><strong>:stop</strong></li>
+<li><strong>:stop</strong></li>
   <li><strong>:start</strong></li>
   <li><strong>:reboot</strong></li>
-</ul>
-
-<p>The action <strong>:automatically</strong> may be used to indicate a tranisition that may occur without an action being triggered (see the example above).</p>
+</ul><p>The action <strong>:automatically</strong> may be used to indicate a tranisition that may occur without an action being triggered (see the example above).</p>
 
 <p>You can implement some other methods according to the collections you will be supporting:</p>
 
 <ul>
-  <li><strong>hardware_profiles(credentials, opts=nil)</strong></li>
+<li><strong>hardware_profiles(credentials, opts=nil)</strong></li>
   <li><strong>images(credentials, opts=nil)</strong></li>
   <li><strong>realms(credentials, opts=nil)</strong></li>
   <li><strong>instances(credentials, opts=nil)</strong></li>
@@ -248,9 +240,7 @@ The voodoo used here (i.e. definition of
   <li><strong>reboot_instance(credentials, id)</strong></li>
   <li><strong>stop_instance(credentials, id)</strong></li>
   <li><strong>destroy_instance(credentials, id)</strong></li>
-</ul>
-
-<p>
+</ul><p>
 The <strong>hardware_profiles(...)</strong> method should return an array of HardwareProfile objects. The <strong>opts</strong> hash, if present, must be inspected for <strong>:id</strong> and <strong>:architecture</strong> keys. If these keys are available, the results should be filtered by the value associated with each key. The <strong>filter_on(...)</strong> helper method is used for the filtering and as you can see from existing driver method definitions, is invoked in many of the driver collection methods:
 </p>
 
@@ -335,7 +325,6 @@ $ cucumber ../tests/ec2
   </div>
 </div>
 
-
       <footer class="footer">
         <p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
         <div class='row'>

Modified: deltacloud/trunk/site/tmp/checksums
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/tmp/checksums?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
--- deltacloud/trunk/site/tmp/checksums (original)
+++ deltacloud/trunk/site/tmp/checksums Thu Jan 24 17:34:59 2013
@@ -1,2 +1,2 @@
-{:versioni:	data{‹[:	item"/send-patch/"Vfdbcdd54c34c46f5698d87a65d3de67fe543e097,7ec8e6efbf6c32b743062bd0f446dc9228df5efb[;""/assets/js/bootstrap-tooltip/"V157726ffae9863f59117bf7e4eeb8029164aeafe,ec1ec863c5f47129cf143593c512ed5bc04133c9[;"/assets/js/bootstrap-tab/"V3a072f4908be4775e13bae8eaa37ffaa405a3525,eddbfb97c2617f1f6774546a3813e9337786c146[;" /assets/less/progress-bars/"V908e6816ff2e373db0641ee457c12ad8b66de7b4,78b83f3cd0d7d221a4ddec1d7dab6bc2e10ebf07[;"/assets/less/carousel/"V3bd504eb569396863064fb7fb69f47ca83126920,211f7a5ed3ce6413b9b6af031922de6181e6d07a[;"/#writing-tests/"V5b060565b1d5c0adbe7ecc787deb3a73d42efeec,74c1403d701cee1e037d044f1ca097b29119f992[;"/#keys/"Vc766b54075d8adecdbec2d077f599794004759d3,05aab93fc592236b878876fd11d56192e8ffd870[;"/assets/less/dropdowns/"V6ef418e2353599d9dd5ee67fda34da58c889f878,3aecf03866a1e0541006dbc49002a611fbc1258d[;"/assets/img/asf_logo_wide/"V1905cd920359d5c1e8e7e6e41e8573183bf6a505,3ad025763d8b
 ebfdac75e18aca837303dc6c8682[;"/#run-deltacloud-server/"Vd0897aad29da08b713c3291537df303a4637173e,4b670f07c2619b0cd56f9b250b97ba7802c99bd9[;"/credentials/"V3f62609bde36a69be40973d99709f0e32de4fd20,cee431c58d394ffbdcf9ede2c0db06c348d132af[;"/assets/less/bootstrap/"V8037841f6c1bbaa5f9b9b5446e5c39fd819601c0,643e105f6a70459b6b405484972df1bd47677293[;"/hardware-profiles/"V5677fc8ed528130987e42eb710d2fa58cdeb4af3,b509c7dbd3896fcf1270e31d55c694122bc91f9f[;"/storage-resources/"V5c16876b59b4baa9165eefd6e58d1ca4a3a355a4,3b3343d1b82300497a88a6bd85264bc3393f2637[;"
/#index/"V8a89aa3709b54116d766e86f10dc7560779884a5,33cd780308e9df1aeeacacb5befd22ce0fe3ccd6[;"/assets/js/application/"V79306982737066d779e0bc6091a9cca4c3da46df,01da7c9279786b985cfcd611e67b52602567281f[;"/#api-entry-point/"Vde67028541e8342dd2c00255b5d49a41ce5e56fd,eccccfb42e1105ce79528609d609653e193fa01d[;"/assets/less/accordion/"Vffa707e5a20c888cb8e9145afd033e1d80ebaed4,cc2bdf1dacc3f99dc2ce185df8df7bbd9f486ab0[;"/#credentials/"Vadc83b19e793491b1c6ea0fd8b46cd9f32e592fc,c4e4f469145ad90aeed7ee49302209bd7ad9d6b9[;"/assets/less/type/"V6532ece49c404f8fae4aaa63a3feb634848b329d,a8526efee47f304ad6f68fd6f6cd9ac3f3bce6c4[;"/assets/less/utilities/"V300b7347ac3a201cfedc9ea83c1e1caf58c3cd83,31dd92f8cd3ae15ab4be483eb49e8ec00214da65[;"/link-page/"V643e58513021696d27f67c6e871630f9c9f58063,8193c4c1ced483def91e8b6974ce825f6ea8af87[;"/assets/less/mixins/"V18d39b4b5e6fd3b3ff3378633b57fa51d874e0dd,e7f26ab43b88c5237c33f347864102f2e9d30719[;"#/assets/js/bootstrap-dropdown/"
 V79e2a7108c5c80dc9c8ffbd56f923402cd99db19,4a2f1fbcf9c10320e32c52284441a5ed8aeb3ca4[;"/assets/js/jquery-1/"V9eb9ac595e9b5544e2dc79fff7cd2d0b4b5ef71f,e842c88aaa700d5ca56fc1a4ea7cba7ae63640c4[;"
/#about/"V318f2cd2e88ef2b0672e2cf6eb5e5cf807114404,62e7de1b00039de5e773481801868989814126da[;"/#storage-snapshots/"V896872d239b5a7774ca9ffb79ac1f3c49e6ed549,91e717d6b628ac5e0aacf8f282b6360c2af6a96c[;"/assets/less/pager/"V0692b0761671d7130881c22db44f0cb5f48d8966,ab0608b789e7117ede0cfae60617048160539459[;"/#getting-sources/"V2f6abacf1767ed1b1225a8b269775a5d7f908d6b,dd6c0b2551cbeece863825afffc9dc6ea4358a95[;"/how-to-contribute/"V523e7c8960a54e584aa40fa30ce0b452d641b80d,b274a6781a5eea2f0c139415fe317116f280e4be[;"/assets/less/navbar/"Vc43595570589702131ff3a62536c3ed9122d5f18,be71a1a7b814e01184815bf7360a35041890d5b5[;"/assets/less/modals/"V22df4fc636ec4af68c75c6772ca0a70edb7aaadf,fe439a4c16c3dfd8db7d96cfbc4c508304f762f6[;"/about/"Vad3f3d54d64607cd4a0781a284935aac82bb599d,e5666498581f5adc3d30a4b9eb38fc44acc41e6c[:layout"/default/"Ve9a85801617b0a87dd2fad8188e9c6298fe33f76,c5af83ccd8bdbef3168bc231c7748c0f261dd500[;"/#send-patch/"V21bf4b58e7997dbc907829907e2f
 c14293cff96f,e8e654470eddf806d2e6f73a28802e9a3bb9306e[;"/supported-providers/"V27132aa34fa3116d70a5ab9b7f7d501e875da265,c9dd4df996f2fe1bf3289097d01bdb333be07e95[;"/ruby-client/"V2bb111b2500a34129808eb7b984c94f11e87dc91,54e23417580ec854b179586d00c8ed5017be422c[;"/assets/less/breadcrumbs/"Va9da47c3c7267e4ab68b20297959924305c4a5ad,db16c6e8de9e0b16dbe4239345c9cce9f224dd46[;"'/assets/less/component-animations/"V4263de6d1c7470495bc14dbf227422a08507e6f8,cc7dbda92c0013bfea7508c70435c7d56195a657[;"/run-the-api/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,cb73db2de190e13451cb157f6bc12e853ed80104[;"/#images/"V39c3cc04f6616c9f3274743beaf78301b65345e8,b8c951524acdbfaad775a9ca6db2d91b1e762b57[;"/assets/less/reset/"V3f2c8983d86b3ca312119f37dd4385ea640748ae,36d19f1fc180b9359d5f1e966dd4e05dadfa45f7[;"/load-balancers/"Va59d98745598c14552f4a020582551a611c7b44f,3965a674596ccc4483a5a806eb04179bf3708221[;"/assets/less/popovers/"V0a5dc8c2de5b14f279d73db44199314a6ff2aa98,9b1
 da01cbbcda632a99fe266448329991ab4552c[;"/instances/"V5ffd6d7cb7b7e769928f424c482c7120af98e963,7f29fc51a58db8bbf1fa40e5cc55e6e0ec6f90cd[;"/addresses/"Va4d2e1bed1b84b8d10ae80251080b2b61d9cd906,0d96e13fd9f2e08980144ccb6f6f991724677a8c[;"/contribute/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,eba71b7d517b9f11aed5697095a2e6df0f65fc71[:code_snippet"lib/default.rb"-0f62241dd865adf2a3a14c0cd525aee11202a364[;"/drivers/"V2946da01eb60b1c65254d58929c897b2b3c19b5d,e187a505d53a96d28df01f114bdd78701a88178c[;"/assets/less/navs/"V8ca77c4313643ba4399ba8b7af50464d9caaac70,f433b9c2ced349936b95b84081ba5f3fde1247a7[;"/assets/less/sprites/"Ve47bea030693ea5df4696fb7509d91ec4ed7272a,4597149629072aca6e3f5786c1482525720de2dd:
-rules"-0154d268e8e9e06b7a299ec4020e83c2276c134f[;"/compute-resources/"V648fbe7105d77394d4af4baa16dd97dba5f01df5,363c63afd6702fd0b384fe08fca0bbfdef69a5fd[;"/assets/img/logo/"V9edf4ceea078aba7fdc9a723d054d2371e46e4da,228ba269a5a496f6af2326aaa61fd5bf6e5a3745[;"/instance-states/"V881850b4524993156ba22d6dd9a2c6755f315e22,b36c2968bd0ab0bd681a4cb8d0b5017a9dfbf92a[;	"lib/shellcmd.rb"-8d9b2bf02e814beeb8940344c5acaca8b8baadea[;"/install-deltacloud/"V93ab3d4918419f7a1e1ea79219505ee81875f322,43ca13abcf6eaad2e80e2a77a8e153daf714e82b[;"/keys/"V1561e1de08f00d373e44964b28c7b827c57f3213,9656cb9588b8f5451cd6cc93d8cb0b5e5719f705[;"
/images/"V95c8795dc9cd4925ae0be11e3de22a7e6291e710,9f2f03e6aef2e0897f168d3a5bcb528cb0402510[;"/download/"Vbb695db562b15ac9592d3d3830c4052694c02450,35de81362b284f43f26cc98082661f90faff5d4e[;"/assets/img/pattern/"Vf32c6ed844cc233704b547989599e05e87c91838,b4a3caa6bb16c245b6ad73573b8a0e0eacde63da[;"/assets/js/jquery/"V52487939c51df927417acc88a3a6e2db322f6e24,068f84b2b91c36a41bb35fa2ab37573f4547f139[;"/command-tools/"Va82ab287868a96935e31856fe6b3177faa148462,9c07307b22b86c834714b2c3f692a77eb4ac64b2[;" /assets/less/button-groups/"Vc613753fbfc4aac8d76c959b860b0525aa654820,a6b387f2fcfd8443aeff83821b0361320225900b[;"/join-deltacloud/"Vadc83b19e793491b1c6ea0fd8b46cd9f32e592fc,b01d960462b5d6d052804d6390df9c124d28a3f3[;"/assets/less/scaffolding/"V0c7d15fe85b0a5e6e681e7c30ffc68227102d5de,5763403323b27217c7e77edd4c771a0d2df85a48[;"/assets/css/application/"V0c4e45cff370a01c691be2152b5e66ab246dc081,9d3926a1813c5d192cd786a91c8fc489c865266b[;"
/#usage/"V80edcfabdd9ace8ac9c915ff8e1f161eff94be30,e332156b48502f20c48ff68eaace1ab87b5df642[;"/assets/less/hero-unit/"V46a0513151dc590513d37ae0d668d6ff8d65225d,28337199e0344a7e997771a81e8a3d2bf1e8376c[;"/assets/less/close/"Vd4d489ed803faf583c58883845d39ee36e7c4654,c8d0757df79a35a2a8f2d1657e871e9ff1abff80[;"$/assets/js/bootstrap-typeahead/"Ve55c77cac3aa8aa86245922f641b0153b66faa63,6a6219f7ed8f9a3dc1aff85228d3463cd8a00c47[;"/#storage-resources/"Vbf2b796624f1bf01679e7f39a5c39398d8918a72,70df127c4697c8ec998a2c6d52545f8cde69da79[;"!/assets/js/bootstrap-button/"Ve92ae1351c8447effae3dd0852837ccd85bcdd13,e2d03c2ae1bdb05aa82f4625c77aebffd07f309e[;"/api-docs/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,69f84d194c4e70ada19376e7171b07f8662fc5e9[;"/curl-examples/"Vb5a814cf31d1eb290e16427b987da56c6111a36f,d1c4c02fe26d53010bc8701f14328eb39de1947e[;"/assets/less/patterns/"V481732f7f2b06c50bbfe8129c4f61da3569be9f3,44b40ecf291565d70fc481a8804ef1692d243ea1[;"/assets/img/d
 ocumentation/"V4bfd5eb386180fdb34707f162b47e55282e73c00,1599b65bde51f10783c9c0670c488c43b94f3018[;"/assets/less/wells/"V1732102a914dbb56bf9038c058ff8376be213cf4,7c82451f7aa364296726e23d4970741c3d63f0e0[;"$/assets/js/bootstrap-scrollspy/"V39bb1c0ed5beb2c3bfc1d4ede273c9860550a46f,14bc00e00f4878069e0ad5f5e1116f433245ff3b[;""/assets/js/bootstrap-popover/"Vf6b4db7b2c2e92ade1bb37736564a92ba002342e,621c3d219d694b8d36b20c9ddc49cb02b0dd5b8f[;"/#rest-api/"V40b26594019d94fe8ff6854d8c713f7fcc719591,0c364eb4cdcab5dd102b2c5826d2a716c58ec226[;"/libdeltacloud/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,0480e5d2bfbb8a5958fcc03f4e6ee4874f8abd9d[;"$/assets/img/deltacloud_concept/"V7a60fa55bcdb7ee9dda012930b2731c6e31e02ea,2c3668efe008ae9f44265b1c55adf86dcd9edb0a[;"+/assets/img/documentation_files/piwik/"V525b591c01e46f115c48d5a199f22c8ac1b2c97e,a6a7af535fbe47054c93975b933550b9a84fa5c6[;"/storage-snapshots/"V54cdb5ff96ec58c09180f716664b79a97c800f3c,21c42d3a3197cdcf9d224197f9ff
 0b038cee3fa3[;"/clients/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,fb62a04dde73060dadf028ada48762e6aa2a8da7[;" /assets/js/bootstrap-modal/"V008c1499d283a2cf8fdbd284aa2ff733c3763fc6,53e3b70bc4cd2804a4e5082c111b7ebeed97e689[;",/assets/img/glyphicons-halflings-white/"V718dabe32f2509bdcfc8bf9946560657ce76ae68,602f9c1fce62966cfca37596500482034855444e[;"/assets/css/bootstrap/"Vf151edf539dc819d471ffbc152ed471bc3df396e,61c2a60ed15c62aac0a64589edc7c427137c112c[;"/assets/img/diagram-soa/"Vee108d6013eef9663b308623cbf34fbd7c70c22e,70de4714a546e2fcd4b6b32176556d800397560a[;"#/assets/js/bootstrap-carousel/"V8c3ac5dc93a805b0b81965452eb851d73eb4e6ce,cf38f5e15f7d6c2a75b668da5a2ed8e43a159567[;"3/assets/img/documentation_files/default-debug/"Vdd5db1c48ea401c048d46bd98535eeeee1925f07,a3c14b5e8400147e9d5c14f1a0c924b117492c65[;"/#instance-states/"V3bf7b86da0da36177f5e1f63887c5b1a7e91c152,a4887d36b06be21e10dff706d75ab0d0044e0b78[;"/"Va6842cee6de4925d182f8941011b493da7b216c5,
 17bf320fdaa4d9efa6dc072fad5a59987281bbe5[;"/assets/less/pagination/"V195dc4b98f0cf33346c0e290e6f816d4925b21a8,6427fcd499a82b4ab95ccd04d981f802e4ce2574[;"/assets/less/alerts/"Vdf38154815b4a2525ce0d04851f6550df655c741,34317e0ada68fbeb31bc01e7634e628e1cedbb99[;"/#instances/"V5b9ed3690230ee9801f5a72a10909a79d10b1afd,d434a9d7c7d1708ebe8c041e53c5060e455933d5[;"/assets/less/forms/"V616f7c0c00f72354f9dc5cf8f2d3203e27895876,5f5e6fe173b8a3ed1f048afc1d67b7ff0ea32984[;"/write-new-driver/"Vd7dd7257ca21357011f096a0a1cc4162bc261439,5e567d9e0e99bf87adf406ce73e599c13a5b7d97[;"-/assets/img/documentation_files/default/"V0e27e83f745c8f96f6349e9a3789637e7a177ff8,c854776cdfc9a0ba152eec615dc9f5b1179679b8[;"/assets/less/grid/"Vf0d544bfe8566d6c3f5fc57ba0285c90286f916c,a3ef1af131a88a72b7ab7a361144cf51210548a2[;"/assets/less/code/"V065ac4e347a840a520be1a1ab1a1f70d24fed545,efd04a13bcd73dcade2c1c1f8960093355f86d92[;"/usage/"V4956e2b287524838b7ae626ab9484b9b482a7d1f,59ffef1659c0
 f4a8a52752067b4d41c0244b4c9a[;"/assets/img/introbg/"V13ea6a0e7fc7e93cc63d6b80c76c6f065c3de2df,3f28adfbdeefa9dba308960a4f7ace4f2a8ee7cd[;"/#how-to-contribute/"Veb8c0c50b5242f737aa6ca7939662450ecc39a15,380fd55c0ff94f79c0434ac45ab6ea2c100eb4a5[;"/assets/img/asf/"V0917ea6966fe19ec988d095358afdbc1347cb1c7,d6aa4df099aea5b33eee3f1e8c500b1cd0ce8586[;"/home/"V8cb92f4cb1aec236c6f6484620633a1c1ff104cb,85b3d41a9bae275797d85ed6d1861478f3505469[;"/use-the-api/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,f57e83a2937c7a1d2f96ed61f977550e08e6f184:config"-05cb84e40ab96d0e8035367c0733dacfec73a66f[;"/ruby/"V09865e791f187e5645d500bd6d13802d0402df08,69fa4500f6ab0bae36efd3a488c9259fef010ecb[;	"lib/bootstrap.rb"-d14d2b166fd2d7c9847a0bb728436c0b324f1065[;"/assets/less/layouts/"V6b4d6f069b3b5034aa15ec1a52bcec4807556d69,7f0cca96a2be1abb3626fbf7e328daa11001125a[;"/partials/default/nav/"V78374e95133faa211a2cec086a1c36aca5760ad0,6ab4629e4faeacf47f86edb42a8cf9507badf36e[;"#/asse
 ts/js/bootstrap-collapse/"V3ed53adb5bde22a057e5d6c9956488d5102c4a7c,d7daa8cb1bc9e1b4d0226147118d4dbd15c20d98[;"/assets/less/labels/"V042d17efb2f82900a75e5ff4399a892bd6809b41,7207d830fb0771fb60bf8959cdb0a522a96d8277[;"/contact/"V361337df5d4dd11152920d384464b3b03f750340,fc1f59cd25dee480bbf2a1ee399e136a7c1c3fbe[;"/htaccess/"Vf77c3f10d68d44ab9b504a916f90613e6b550c33,14b82368896e36347e02e87f1c796ad7fd59fb44[;"/api-entry-point/"V1f67244831f28f1afb385979f46fdb71a83786f6,1a323b95e70c24f95c4968b2663a23c769f119d8[;"/supproted-providers/"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,0fc3c7e1605bfd65807ccd18ac686268deebcc29[;"3/assets/img/documentation_files/asf_logo_wide/"V1905cd920359d5c1e8e7e6e41e8573183bf6a505,b73def2856cf57d151fcc1383275fe6366ce9f63[;"/assets/less/responsive/"V9ad8ce0259d40a98470fd61ab8d48e47b8b89564,d8156ea8cceb17d9253ea05fc6124caef5b64fd2[;"/#load-balancers/"Ve064e5e46cfe8c0f5748d6bd09630d7121c9c5e3,006400db28389cc77354baabfa1fbeac72d3ea25[;"
 /assets/less/tooltip/"V745423701d77308192925092165af36ee3193570,c177b1eaf0576e7f6f36acf1da349c210a9851f6[;"%/assets/js/bootstrap-transition/"V7488c0322636b33da7cadf72026e4a627c2f3df4,b4aaa96766a40640c553412648221bcb7150d9ae[;"/#write-new-driver/"V1aba1495377e8798a6006296d19a4a9607ed423b,214e73ee7c8335608bcfa2e05df8aef8cb1289ac[;"/assets/less/variables/"V6be9d95419086c1ea10049d69a01ffe85661539d,6dcdc93a1f00d2d2234f3f50e7674494274cdaea[;"/#blob-storage/"Vd08ee98f7997b4c27db30493a2435435a0c753d9,d3cd6d3f83e17301be82c03dce27ec57f1bc7dd1[;"/writing-tests/"V72f5a6c681dffe13f77d09d50ed1aa5562a3de89,d9bdb7559821c20aad38b3978bbc8b8c3fe0f998[;" /assets/js/bootstrap-alert/"Vf8f293a79871f9c1e2e7a8db52b930d701ec9385,171f8b04046ae1e149391c7914fc372b01549719[;"/getting-sources/"V2bed66b84669707e0703de38efa50daae8374710,85c3102d3902fa5a1540344452fb01b8b10fd0dd[;"/rest-api/"V34c0c68dda3d8e1fb06f90d09c47d43fdff2ebf3,a805a78d04c27ac8013a203a2750d38707b5466f[;"/run-del
 tacloud-server/"V7e09cbcecf3abfbc78304b8478bc3f978b1c52a5,8b8397ff23d0ab052b1b013c627f785dccbc7490[;"/assets/less/buttons/"V8c4944b0f422459872b06d4a770c16f1e2eaeca7,9a3be8a48f9f065fb2f343e9370d68d5d6277ed0[;"/blob-storage/"Vbc33b0710281399f3cd248848d6da8625004ad21,dd0cd2a548ca848e0e535349eb7130618b00d3cf[;"/firewalls/"Vb4e8128496eb6cd69d390119f3f273e6bfca7287,2d9538764cd6f44cb09adaf1e8f0eb5b00957397[;"/assets/less/thumbnails/"V4114ecc05062c0502c0f9cc46855b2856a465e4f,c8e6a510eb6cef9aa14e441c033b8505c8e34686[;"/assets/less/tables/"V24e7fef868de5695e5a247444e88a8cf10637c36,20077e087dfb9c08a1eaeadf99c25aa6b4d213f8[;"&/assets/img/glyphicons-halflings/"V5b31a9a18265413e32b572a9e3adee91c11354e6,a3b4a8d94c14c3525ce1149668eeeaf3ab90e393[;	"lib/helpers.rb"-967ea277bbc9a1dbc08266212c1d6ff12adec172
\ No newline at end of file
+{:	data{Š[:	itemI"/download/:ET"Vebb34a6acae30e7e22d3faf7e9b8268c20211437,f49f7f80b8bf1a0d42ab7cfd5218551c17e378ec[;I"/getting-sources/;T"V2bed66b84669707e0703de38efa50daae8374710,f00a3cf691fcbfa14b4f6e4339adcd845a9dc3e3[;I"/install-deltacloud/;T"V48f55e96760e11ae0a8ec1dae83b81b569715ee6,64387918a4675924e2f8e00974815e4d297a36d4[;I"/;T"V830ba60c8474998944a1de68271e355dad2d141d,f8bbc9fd37801eb7968d44201b8665713d440c2c[;I"/instance-states/;T"V881850b4524993156ba22d6dd9a2c6755f315e22,da4b1a2511a6cb6b0661f32160c9e717ee0598c4[;I"
/images/;T"V95c8795dc9cd4925ae0be11e3de22a7e6291e710,0b2af5428001f48e90f59bc9f803f36bdd6b5999[;I"/join-deltacloud/;T"Vadc83b19e793491b1c6ea0fd8b46cd9f32e592fc,07c2d93c905118d288b0e021d429a384eaf3841a[;I"/load-balancers/;T"Va59d98745598c14552f4a020582551a611c7b44f,5d676cfc96e022be4b109dce0764ec64da6abda0[;I"/firewalls/;T"Vb4e8128496eb6cd69d390119f3f273e6bfca7287,e9d95ec105ccebfef7789f6548e2b0be30355c7e[;I"/htaccess/;T"Vf77c3f10d68d44ab9b504a916f90613e6b550c33,e102fb5160efcd67899b4ef946cdfa516357af61[;I"/addresses/;T"Va4d2e1bed1b84b8d10ae80251080b2b61d9cd906,6b462e1957e1d8521b7ee7f4e43d695548ef4619[;I"/usage/;T"V70993188a3ed06e0f08f0e5cd3688e94b3f1e7e9,06680b4648aced1381389654ebadd2a5223bd846[;I"/contact/;T"V8f5b939e306b2f06b8af730ee39646f9fea50d68,46c758fa76709ac4f1cbdf16b0be102ab2de766b[;I"/curl-examples/;T"Vb5a814cf31d1eb290e16427b987da56c6111a36f,db27c72e49088a97ca56f43f9d37e9c449cd639c[;I"/send-patch/;T"Vfdbcdd54c34c46f5698d87
 a65d3de67fe543e097,884750acae94c408ac1d15680fcd8c19243e585c[;I"/command-tools/;T"V13bcfc590cfcd79c812623b7e1d5472e7ec6dcfd,e9d66da144c973129fa1ff85a71cbe05d8f20f4b[;I"/use-the-api/;T"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,9e99593da240d8d42d693cc96be3a9f6cd54778d[;I"/clients/;T"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,2c735576c015de9e21e12e2df6ef1a2452f5f8a0[;I"/supported-providers/;T"V27132aa34fa3116d70a5ab9b7f7d501e875da265,1c3d5efe632fd41e8ff37c2f65686e75bc9e6e71[;I"/compute-resources/;T"V648fbe7105d77394d4af4baa16dd97dba5f01df5,baa17ce173905a523801009f3838ce2fd63569c1[;I"/api-docs/;T"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,cbe1ccc221b6d78832fd14e19ec5f367bf3f3e83[;I"/write-new-driver/;T"Vd7dd7257ca21357011f096a0a1cc4162bc261439,b00c62aaa01ed31c157d0cf0d7e82b3e3ce0c059[;I"/how-to-contribute/;T"V523e7c8960a54e584aa40fa30ce0b452d641b80d,bf93476933645a33b9acd80ebe60134bbeb93c06[;I"/hardware-profiles/;T"V5677fc8ed528130987e42e
 b710d2fa58cdeb4af3,d5518168fd11dacad39f418b05e27f7ad6d23119[;I"/drivers/;T"V7f6fcb3c268a7238b65eebaeb796111c8b024964,2d78e051641abb0e471fc031ba953aeb46e3b961[;I"/credentials/;T"V3f62609bde36a69be40973d99709f0e32de4fd20,90d75de5ace64f4ecf5124ea6322380873403201[;I"/instances/;T"V5ffd6d7cb7b7e769928f424c482c7120af98e963,1d98757d64c5fff8d81b9af1c97db50a3af0a5cc[;I"/libdeltacloud/;T"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,696f0b042dc88ad2a8ec69ab12a47724e2c96c24[;I"/blob-storage/;T"Vbc33b0710281399f3cd248848d6da8625004ad21,10fb174b32941fa3dc7265a3a9080f4a4aceb6ce[;I"/ruby-client/;T"V2bb111b2500a34129808eb7b984c94f11e87dc91,89c66c13522b0ac94ec6a6d3126c44b53a8c5bf2[;I"/storage-resources/;T"V5c16876b59b4baa9165eefd6e58d1ca4a3a355a4,0f012f2c144d75cbd9254ebd4b6e82753a8673df[;I"/storage-snapshots/;T"V54cdb5ff96ec58c09180f716664b79a97c800f3c,1e3d41b4efa2026764d6e2343eaf6dfba7baad8d[;I"/about/;T"V725a80f79ebd363e7c2b6bc005b326af787801ec,3463
 be5f997791cd9507d54e8e8252633d6e6882[;I"/assets/img/diagram-soa/;T"Vee108d6013eef9663b308623cbf34fbd7c70c22e,8a0012dc31956d2e71f19ec8740dc89217138a6a[;I"/assets/img/logo/;T"Vd9032e7705f9c6b74459d645c13c797c0e3f2160,53036c787b5034ab2a7c3a0b3b16326ec2dac2ed[;I"/assets/img/introbg/;T"V13ea6a0e7fc7e93cc63d6b80c76c6f065c3de2df,d46094f220fbb1cf2e9d52ad7ffd214f95290ee6[;I"/assets/img/asf_logo_wide/;T"V1905cd920359d5c1e8e7e6e41e8573183bf6a505,3fca4c7ff27e444da3ae0c5d05efd27fe941a20a[;I"&/assets/img/glyphicons-halflings/;T"V5b31a9a18265413e32b572a9e3adee91c11354e6,6f0fd638cc0008ebad9b50da15467fb522deab51[;I"3/assets/img/documentation_files/default-debug/;T"Vdd5db1c48ea401c048d46bd98535eeeee1925f07,2b654a4fb7ce38a09725eca17c572bade4258d41[;I"-/assets/img/documentation_files/default/;T"V0e27e83f745c8f96f6349e9a3789637e7a177ff8,4c30a9637eb228bc3abd6ef92f0099b3141d5aa2[;I"3/assets/img/documentation_files/asf_logo_wide/;T"V1905cd920359d5c1e8e7e6e41e8573
 183bf6a505,cd07e86ca3bb598b67ea8c8f4aae4057df2fbea2[;I"+/assets/img/documentation_files/piwik/;T"V525b591c01e46f115c48d5a199f22c8ac1b2c97e,a64b560674e9c5974c33319b4ace256c3cbf4942[;I"/assets/img/documentation/;T"V4bfd5eb386180fdb34707f162b47e55282e73c00,354cb2cea1ab90b5710a0ebc1011b1d0e8670e80[;I"/assets/img/pattern/;T"Vf32c6ed844cc233704b547989599e05e87c91838,8d7d31b7e65055b7711e28e7d7419c28caec094d[;I"$/assets/img/deltacloud_concept/;T"V48128caa62aba99c47e618735c55ae8fe190b493,9e6334e630fa1b2a30780fe4254f919a3e28d89d[;I"/assets/img/asf/;T"V0917ea6966fe19ec988d095358afdbc1347cb1c7,2f52b7d9b83c7b9dac4d6a342a759721c4cc5ce6[;I",/assets/img/glyphicons-halflings-white/;T"V718dabe32f2509bdcfc8bf9946560657ce76ae68,408823e92536ea46bfc0505df417adc9157a0465[;I" /assets/js/bootstrap-alert/;T"Vf8f293a79871f9c1e2e7a8db52b930d701ec9385,cd9018a42cb14a0672d5ea8c03afbeb156a85ca5[;I" /assets/js/bootstrap-modal/;T"V008c1499d283a2cf8fdbd284aa2ff733c3763fc6,c0
 bdd20942b1c494060e1ff295c369db3ee2e76e[;I"/assets/js/jquery/;T"V52487939c51df927417acc88a3a6e2db322f6e24,f1fc7a4c19468182025f7b6232166887112a64f8[;I"%/assets/js/bootstrap-transition/;T"V7488c0322636b33da7cadf72026e4a627c2f3df4,c57da3b72524475b4fe0fd43b7b75bce8bab3f67[;I""/assets/js/bootstrap-popover/;T"Vf6b4db7b2c2e92ade1bb37736564a92ba002342e,94a9f159c599bd6bbcc178a3f9deed69c4a73404[;I"$/assets/js/bootstrap-scrollspy/;T"V39bb1c0ed5beb2c3bfc1d4ede273c9860550a46f,a56e497d1344b6478a0f2dfb6b9f6278336edf6f[;I"/assets/js/bootstrap-tab/;T"V3a072f4908be4775e13bae8eaa37ffaa405a3525,b98b6838a05d4a9547117fac5861e1182fd22409[;I"/assets/js/application/;T"V79306982737066d779e0bc6091a9cca4c3da46df,9983cf73d1636321afe94d2bcd4fa1ed39fad846[;I"$/assets/js/bootstrap-typeahead/;T"Ve55c77cac3aa8aa86245922f641b0153b66faa63,a9c718d5361f463d9c05f4ef4d091ee99a34c022[;I"!/assets/js/bootstrap-button/;T"Ve92ae1351c8447effae3dd0852837ccd85bcdd13,4cb2741b5f5df9a13a469c
 e1e32752cb8e8f9331[;I"#/assets/js/bootstrap-dropdown/;T"V79e2a7108c5c80dc9c8ffbd56f923402cd99db19,cc4d102129fd8ef1bfd8e83630ba0046f6c5c175[;I""/assets/js/bootstrap-tooltip/;T"V157726ffae9863f59117bf7e4eeb8029164aeafe,4cda74f48cdb33acd9b07eb3cf61dccd7341deaf[;I"/assets/js/jquery-1/;T"V9eb9ac595e9b5544e2dc79fff7cd2d0b4b5ef71f,615d2e576ef619e8b349b055286a8fececf86d79[;I"#/assets/js/bootstrap-collapse/;T"V3ed53adb5bde22a057e5d6c9956488d5102c4a7c,8fd548d51229675c6f72707dd2707b061b0a828c[;I"#/assets/js/bootstrap-carousel/;T"V8c3ac5dc93a805b0b81965452eb851d73eb4e6ce,c84af93e090279da0544e16b22866377af5bffad[;I"/assets/css/bootstrap/;T"Vfed7ea7b66723d1b817c527efd3066268c179f4d,32b2b99e8e95f1b8a0b02dba41f0386944f8196d[;I"/assets/css/application/;T"V0c4e45cff370a01c691be2152b5e66ab246dc081,023cbec32cb666f4ae13816f098ecc52e36798f4[;I"'/assets/less/component-animations/;T"V4263de6d1c7470495bc14dbf227422a08507e6f8,1f0e8e7df2c24a8b07293ffdfb9ff6134c3a03fd
 [;I"/assets/less/close/;T"Vd4d489ed803faf583c58883845d39ee36e7c4654,dcdcc40fd3357ff0eaba13bb05f732be3720ea2f[;I"/assets/less/pagination/;T"V195dc4b98f0cf33346c0e290e6f816d4925b21a8,2a73cd58ebd41d356d05b1aa9c24192a85b62010[;I"/assets/less/buttons/;T"V8c4944b0f422459872b06d4a770c16f1e2eaeca7,6b1fbcbf4c4b475c3ebd273ef11faa4425dcc08b[;I"/assets/less/breadcrumbs/;T"Va9da47c3c7267e4ab68b20297959924305c4a5ad,df51cada23622599e3ddcd88b57bd5e26e20df72[;I"/assets/less/forms/;T"V616f7c0c00f72354f9dc5cf8f2d3203e27895876,c4b9c72a529012ff4ee36dd7380d19d80df661be[;I"/assets/less/bootstrap/;T"V8037841f6c1bbaa5f9b9b5446e5c39fd819601c0,144fc024ae5b24200d6ace77199fb3185eb75e0f[;I"/assets/less/navs/;T"V8ca77c4313643ba4399ba8b7af50464d9caaac70,7fd70bea02b17a493f39f495d51bbd6801152860[;I"/assets/less/pager/;T"V0692b0761671d7130881c22db44f0cb5f48d8966,834bc2eec07bb1fe0c3bb24f93ee86af1995af71[;I"/assets/less/layouts/;T"V6b4d6f069b3b5034aa15ec1a52bcec48075
 56d69,477b451f3bbb7790429a667d4638ce1b33647151[;I"/assets/less/thumbnails/;T"V4114ecc05062c0502c0f9cc46855b2856a465e4f,f3da099f347f2752aba4306465bf408a3ef9a049[;I"/assets/less/utilities/;T"V300b7347ac3a201cfedc9ea83c1e1caf58c3cd83,d9a1a99c083eaf6bfa4f7f737d0a02aa64ed1076[;I"/assets/less/responsive/;T"V9ad8ce0259d40a98470fd61ab8d48e47b8b89564,39c474acf4ec1a27465df24840620081c648da2c[;I"/assets/less/code/;T"V065ac4e347a840a520be1a1ab1a1f70d24fed545,9b9ea49b1d038fac7499d29ab4873673ba6c0aa4[;I"/assets/less/popovers/;T"V0a5dc8c2de5b14f279d73db44199314a6ff2aa98,25b2bde6a9f21eac4674f35235284e5394b5f289[;I"/assets/less/type/;T"V6532ece49c404f8fae4aaa63a3feb634848b329d,8c24565ae891a041c81558b5e1ac470ca58c3f39[;I"/assets/less/variables/;T"V6be9d95419086c1ea10049d69a01ffe85661539d,8d7b96ffab76bd42dc1bad491e201497fa2fcae0[;I"/assets/less/hero-unit/;T"V46a0513151dc590513d37ae0d668d6ff8d65225d,2ccc931d6fc3e80ccb025d3fd9c567f8061e91b7[;I"/assets/l
 ess/mixins/;T"V18d39b4b5e6fd3b3ff3378633b57fa51d874e0dd,69bfb09fe95eac18bbf61a12a0baaedbd3c69507[;I"/assets/less/navbar/;T"Vc43595570589702131ff3a62536c3ed9122d5f18,c542f592e48ea87bd41a08cd633c7a5fcf799b22[;I"/assets/less/wells/;T"V1732102a914dbb56bf9038c058ff8376be213cf4,40e800b22a59c4ed0365be39b9eb8f9aa4969a45[;I"/assets/less/alerts/;T"Vdf38154815b4a2525ce0d04851f6550df655c741,621d7baf388829b25b30dc2e83748497a7e03893[;I"/assets/less/labels/;T"V042d17efb2f82900a75e5ff4399a892bd6809b41,2f6f3323b725d4e6f10c31c44886c74f9ed9a619[;I"/assets/less/sprites/;T"Ve47bea030693ea5df4696fb7509d91ec4ed7272a,2ea3acbf727da85e1fb2b82c17d8bde6dd60a4e9[;I" /assets/less/button-groups/;T"Vc613753fbfc4aac8d76c959b860b0525aa654820,45276bddbb81287483b8f43ca607c287234f1948[;I"/assets/less/tables/;T"V24e7fef868de5695e5a247444e88a8cf10637c36,69b43057057e586a982116eeb0994e1a279b5694[;I"/assets/less/tooltip/;T"V745423701d77308192925092165af36ee3193570,b200f4b3af8
 8141391b65139b2d10d550894849b[;I"/assets/less/dropdowns/;T"V6ef418e2353599d9dd5ee67fda34da58c889f878,e36fb21e0da1b1901814ec3b71d6c024eb8f2eb3[;I" /assets/less/progress-bars/;T"V908e6816ff2e373db0641ee457c12ad8b66de7b4,abda76142b49ab388fd2634aeef93f0ff8048de7[;I"/assets/less/scaffolding/;T"V0c7d15fe85b0a5e6e681e7c30ffc68227102d5de,e04a6dbf9173adab9c7741d762c7726a5d81586b[;I"/assets/less/modals/;T"V22df4fc636ec4af68c75c6772ca0a70edb7aaadf,9478032bf5bbed67e06ac1d906a373475b26c888[;I"/assets/less/reset/;T"V3f2c8983d86b3ca312119f37dd4385ea640748ae,c6cbc27aa24f5256645018aa2d9aadfcc7503029[;I"/assets/less/carousel/;T"V3bd504eb569396863064fb7fb69f47ca83126920,514e9be1624ea5ec0b20e24023f3dc7750612ec9[;I"/assets/less/patterns/;T"V481732f7f2b06c50bbfe8129c4f61da3569be9f3,16a474ba4a58b75905a0e746ad60d6395550ae35[;I"/assets/less/grid/;T"Vf0d544bfe8566d6c3f5fc57ba0285c90286f916c,4208973e68bf79d1f33944a37e332f9ca96eed96[;I"/assets/less/accordion/;
 T"Vffa707e5a20c888cb8e9145afd033e1d80ebaed4,9b8119acc508714b191bbf2400df6e8568a5e120[;I"/contribute/;T"Vda39a3ee5e6b4b0d3255bfef95601890afd80709,e1ccf9e4e0dd978fb3e1f63378d0b44bc299e671[;I"/rest-api/;T"V759afe320265cdf58d0a57bd477d8f010dd28db7,059f83257f56caafe99b51a1bd2ff52916ad718c[;I"/keys/;T"V1561e1de08f00d373e44964b28c7b827c57f3213,17f31fe6007c235a69483590b151335ad939aecd[;I"/api-entry-point/;T"V1f67244831f28f1afb385979f46fdb71a83786f6,75ace657fcc2f530c71ff248aa0c005a1f60b96a[;I"/run-deltacloud-server/;T"V7e09cbcecf3abfbc78304b8478bc3f978b1c52a5,948d0c03f9b75a5f7a970960e5761791289f5a51[:layoutI"/default/;T"Ve9a85801617b0a87dd2fad8188e9c6298fe33f76,c5af83ccd8bdbef3168bc231c7748c0f261dd500[;I"/home/;T"V8cb92f4cb1aec236c6f6484620633a1c1ff104cb,85b3d41a9bae275797d85ed6d1861478f3505469[;I"/partials/default/nav/;T"Vf942d9fc13cefb9bec5be6bf9b64a95a73aceec3,6ab4629e4faeacf47f86edb42a8cf9507badf36e[:code_snippetI"lib/bootstrap.rb;T"-
 d14d2b166fd2d7c9847a0bb728436c0b324f1065[;	I"lib/default.rb;T"-0f62241dd865adf2a3a14c0cd525aee11202a364[;	I"lib/helpers.rb;T"-967ea277bbc9a1dbc08266212c1d6ff12adec172[;	I"lib/shellcmd.rb;T"-8d9b2bf02e814beeb8940344c5acaca8b8baadea:config"-05cb84e40ab96d0e8035367c0733dacfec73a66f:
+rules"-0154d268e8e9e06b7a299ec4020e83c2276c134f[;I"/cimi-rest/;T"V01e063b45a263f2e173039fb2ba3dbc19b277280,64b5a92cffeb78ba9e105110e34fd34a42115b65[;I"/assets/img/logo_black/;T"V9edf4ceea078aba7fdc9a723d054d2371e46e4da,45037aaeb5dd2aec20593dd9a1a132321b792ec0[;I"/assets/img/logo2/;T"Vab336fa343e151243cf55d8f1c491513f4290337,c510d85ef0501d95d7b838853fdaad0969e44be5[;I"/assets/img/logo_old/;T"V9edf4ceea078aba7fdc9a723d054d2371e46e4da,4eee2b6e74cffbd7bd0570f584bf23a24949f26c[;I"/cimi-rest-entry-point/;T"V6eb09f56da2c498419e550061c9a5d5326d5ddef,f08ab9f335ba4f9a9aeab08ca24832ded11826e6[;I"/cimi-rest-collections/;T"V44c6c136750cf093b573651abbc25e96281f078c,7817f8c129387899ad2dad9dac16250b853defd3[;I"/cimi-rest-machine-images/;T"Va36a8d99ed4dd9b1bfdb10dc4a53a4295a372c4a,b7520c9bf38f2e6d73c08140bb98e96bfbbd748a[;I"/cimi-curl/;T"V453646504b143c9f1017db2fd7d25e3a39e25fd6,612d9b1578f1b3a0a7950d0d4e507ebaf3ee1fb0[;I" /cimi-rest-machine-configs/
 ;T"Vd526ee25ab37a9f476c0e4752c5418d0d8967c90,caf4a75b2cb61004addcec2239187e9c9f2e6335[;I""/cimi-rest-machine-templates/;T"Va93eec5f094797d7ed38cb35c426ee547f1231d2,2d9eecf5cbae2ca509df81884ce429c35d0483f3[;I"*/cimi-rest/cimi-rest-machine-configs/;T"Vc8daf3eb42c54936e3c00c0dda3cd9c17e98d308,8a7e76c5db5b935cc8775e7f83c06b69f1cd8acf[;I")/cimi-rest/cimi-rest-machine-images/;T"V833c66273f5b9a5e1729712ec2b24a004a2358bd,f7edbccf1ad82da300a4db4fb680c1a5e6d7eb7b[;I"&/cimi-rest/cimi-rest-entry-point/;T"V18df8436f842f0bc7ba2ad443d5e963122b794a9,c439ded0081135172ff7d2e495bc60614049afb0[;I"&/cimi-rest/cimi-rest-collections/;T"Ve0377403d00fc702e1362291827eb134a87177aa,1e0e5ffd2a09674b498930010a85bfdce31f45e3[;I",/cimi-rest/cimi-rest-machine-templates/;T"Ve10a8cb12f88bb773f3cd66e676527f42641b97c,c291adbe93adff20978d99acac3e6adbd1b9b787[;I""/cimi-rest/cimi-rest-volumes/;T"Va27ed652ccc5da4f8aacee802b82c1e15a69f41e,e40775470c9cf153a7425566fce2b77cb32ca28a[;I"(/
 cimi-rest/cimi-rest-volume-images/;T"Vb52ad0bada19089fcaea7026e6e5a1e10c9d803b,c515e60c0b4299b1fe5f6b9f07384d5c66e6bc23[;I")/cimi-rest/cimi-rest-volume-configs/;T"V739c9e5870af05753980f1b6b8fad184b91cd8d6,28ad66240242c2b5a236dcb2b50ae047358b276f[;I"+/cimi-rest/cimi-rest-volume-templates/;T"V115e437031da156f18cb88f05aab58580ae3b6ea,01e5fe889043fbdea1939f0f20f74e95b42feab2[;I",/cimi-rest/cimi-rest-resource-metadata/;T"V8f900435ab217db47f279dea50a57e0b35e26df6,5171122250e95815e50cbb7be8cc5500d174ac98[;I"#/cimi-curl/cimi-curl-machines/;T"V1deb133b0317dd14603c45ba3fcfb2ed636e0c37,ae18875cdea3d5def8ad7b5897eac8e44693b144[;I""/cimi-curl/cimi-curl-volumes/;T"Vaf2f2f09438545bee2f03c86957ae682d22edc9f,3716d9ba6b0e9e9c99ebfb87773883ac27b6b35d[;I",/cimi-curl/cimi-curl-resource_metadata/;T"V6d95793155c733ae9e4e32bf1bf23ccac7b1ae97,9cdca92602c3216ebcaa0749d4b86c8ad350efcc[;I"/assets/img/API_Diagram/;T"V48128caa62aba99c47e618735c55ae8fe190b493,f73cb357b34e0e7
 774339cdb42f0f6915b3b1219:versioni
\ No newline at end of file

Modified: deltacloud/trunk/site/tmp/compiled_content
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/tmp/compiled_content?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
Files deltacloud/trunk/site/tmp/compiled_content (original) and deltacloud/trunk/site/tmp/compiled_content Thu Jan 24 17:34:59 2013 differ

Modified: deltacloud/trunk/site/tmp/dependencies
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/tmp/dependencies?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
Files deltacloud/trunk/site/tmp/dependencies (original) and deltacloud/trunk/site/tmp/dependencies Thu Jan 24 17:34:59 2013 differ

Modified: deltacloud/trunk/site/tmp/rule_memory
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/tmp/rule_memory?rev=1438096&r1=1438095&r2=1438096&view=diff
==============================================================================
Files deltacloud/trunk/site/tmp/rule_memory (original) and deltacloud/trunk/site/tmp/rule_memory Thu Jan 24 17:34:59 2013 differ