Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
SITE: fix nits in CIMI docs - update links and nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
marios committed Jan 24, 2013
1 parent ab0183f commit ea7178e
Show file tree
Hide file tree
Showing 61 changed files with 128 additions and 75 deletions.
10 changes: 5 additions & 5 deletions site/content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ title: About

<h3>About Deltacloud</h3>
<br/>
<p>Deltacloud provides the API server and drivers necessary for connecting to cloud providers.</p>
<p>Deltacloud provides the API server and drivers necessary for connecting to cloud providers.</p>

<p>Deltacloud maintains <strong>long-term stability</strong> for scripts, tools and applications and <strong>backward compatibility</strong> across different versions.</p>

<p>Using single API Deltacloud enables management of resources in different clouds.</p>
<p>Using a single API Deltacloud enables management of resources in different clouds. This 'single API' can be the <a href="/rest-api.html">Deltacloud</a> classic API, the DMTF <a href="/cimi-rest.html">CIMI API</a> or even the EC2 API.</p>

<p>Start an instance on an internal cloud, then with the same code start another on EC2 or RHEV-M.</p>
<p>All of this means you can start an instance on an internal cloud and with the same code start another on EC2 or RHEV-M.</p>
</div>

<br/>
Expand All @@ -31,9 +31,9 @@ title: About
<br/>
<h3>How does Deltacloud work?</h3>
<br/>
<p>Deltacloud contains a cloud abstraction API. The API works as a wrapper around a large number of clouds, abstracting their differences. For every <a href="/supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" cloud provider's native API. It frees you from dealing with the particulars of each cloud's API.</p>
<p>Deltacloud contains a cloud abstraction API - whether the <a href="/rest-api.html">Deltacloud</a> classic API, the DMTF <a href="/cimi-rest.html">CIMI API</a> or even the EC2 API. The API works as a wrapper around a large number of clouds, abstracting their differences. For every <a href="/supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" cloud provider's native API. It frees you from dealing with the particulars of each cloud's API.</p>

<p>Install Deltacloud and start the <strong>deltacloudd</strong> daemon server. You can use your favourite HTTP client to talk to the server using the <a href="/rest-api.html">Deltacloud REST API</a>. Deltacloud even comes with a HTML interface so you can simply use your web browser to control your cloud infrastructure straight out of the box. The HTML interface is written with the <a href="http://jquerymobile.com/">jQuery mobile</a> framework, so it is compatible with your mobile or tablet devices.</p>
<p>Install Deltacloud and start the <strong>deltacloudd</strong> daemon server. You can use your favourite HTTP client to talk to the server using the <a href="/rest-api.html">Deltacloud REST API</a>, the DMTF <a href="/cimi-rest.html">CIMI API</a> or even the EC2 API. Deltacloud even comes with a HTML interface so you can simply use your web browser to control your cloud infrastructure straight out of the box. The HTML interface is written with the <a href="http://jquerymobile.com/">jQuery mobile</a> framework, so it is compatible with your mobile or tablet devices.</p>
<br/>

<img src="/assets/img/deltacloud_concept.gif" alt="Deltacloud concept scheme"/>
Expand Down
Binary file modified site/content/assets/img/deltacloud_concept.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions site/content/cimi-curl/cimi-curl-resource_metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ title: CIMI cURL Examples - Resource Metadata Resources

<p> Retrieve the Resource Metadata resource corresponding to the Cloud Entry Point resource, in json format:</p>

<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/cloud_entry_point </pre>
<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/json" http://localhost:3001/cimi/resource_metadata/cloud_entry_point </pre>

<p> Retrieve the Resource Metadata resource corresponding to the Machine resource, in xml format:</p>

<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/json" http://localhost:3001/cimi/resource_metadata/machine </pre>
<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/machine </pre>
2 changes: 1 addition & 1 deletion site/content/cimi-rest/cimi-rest-machine-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ machineConfiguration + machineImage = machineTemplate ===> machine
</pre>

<p>
A CIMI client (a <strong>consumer</strong> in CIMI terminology) uses a Machine Template to <a href="/cimi-rest-collections.html#create-machine"> create a new Machine</a>; a Machine Template consists of (amongst other attributes) a Machine Configuration and a Machine Image. Generally speaking - many CIMI resources require use of a template for their creation and a template will typically consist of an image plus a configuration resource.
A CIMI client (a <strong>consumer</strong> in CIMI terminology) uses a Machine Template to <a href="/cimi-rest/cimi-rest-collections.html#create-machine"> create a new Machine</a>; a Machine Template consists of (amongst other attributes) a Machine Configuration and a Machine Image. Generally speaking - many CIMI resources require use of a template for their creation and a template will typically consist of an image plus a configuration resource.
</p>

</div>
Expand Down
2 changes: 1 addition & 1 deletion site/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ title: Deltacloud API
<ul>
<li>an opportunity to manage cloud instances the way you want</li>
<li>a way to protect your apps from cloud API changes and incompatitibilities</li>
<li>three frontends: 'classic' Deltacloud, DMTF CIMI, and EC2</li>
<li>three frontends: 'classic' <a href="/rest-api.html">Deltacloud</a>, DMTF <a href="/cimi-rest.html">CIMI</a>, and EC2</li>
<li>support for all major <a class="providers" href="/drivers.html#drivers" title="Supported providers">cloud service providers</a></li>
<li>makes it easy for cloud providers to <a href="/how-to-contribute.html">add their cloud</a></li>
<li>lets you use your RHEV-M and vSphere installations as a cloud</li>
Expand Down
4 changes: 2 additions & 2 deletions site/content/rest-api.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
site_name: Deltacloud API
title: REST API
title: Deltacloud REST API
---

<br/>

<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>.
Expand Down
3 changes: 2 additions & 1 deletion site/layouts/partials/default/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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>
Expand Down
13 changes: 7 additions & 6 deletions site/output/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -99,13 +100,13 @@
<div class="span4">

<br><h3>About Deltacloud</h3>
<br><p>Deltacloud provides the API server and drivers necessary for connecting to cloud providers.</p>
<br><p>Deltacloud provides the API server and drivers necessary for connecting to cloud providers.</p>

<p>Deltacloud maintains <strong>long-term stability</strong> for scripts, tools and applications and <strong>backward compatibility</strong> across different versions.</p>

<p>Using single API Deltacloud enables management of resources in different clouds.</p>
<p>Using a single API Deltacloud enables management of resources in different clouds. This 'single API' can be the <a href="rest-api.html">Deltacloud</a> classic API, the DMTF <a href="cimi-rest.html">CIMI API</a> or even the EC2 API.</p>

<p>Start an instance on an internal cloud, then with the same code start another on EC2 or RHEV-M.</p>
<p>All of this means you can start an instance on an internal cloud and with the same code start another on EC2 or RHEV-M.</p>
</div>

<br><div class="span8">
Expand All @@ -115,9 +116,9 @@
<div class="span12">

<br><br><h3>How does Deltacloud work?</h3>
<br><p>Deltacloud contains a cloud abstraction API. The API works as a wrapper around a large number of clouds, abstracting their differences. For every <a href="supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" cloud provider's native API. It frees you from dealing with the particulars of each cloud's API.</p>
<br><p>Deltacloud contains a cloud abstraction API - whether the <a href="rest-api.html">Deltacloud</a> classic API, the DMTF <a href="cimi-rest.html">CIMI API</a> or even the EC2 API. The API works as a wrapper around a large number of clouds, abstracting their differences. For every <a href="supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" cloud provider's native API. It frees you from dealing with the particulars of each cloud's API.</p>

<p>Install Deltacloud and start the <strong>deltacloudd</strong> daemon server. You can use your favourite HTTP client to talk to the server using the <a href="rest-api.html">Deltacloud REST API</a>. Deltacloud even comes with a HTML interface so you can simply use your web browser to control your cloud infrastructure straight out of the box. The HTML interface is written with the <a href="http://jquerymobile.com/">jQuery mobile</a> framework, so it is compatible with your mobile or tablet devices.</p>
<p>Install Deltacloud and start the <strong>deltacloudd</strong> daemon server. You can use your favourite HTTP client to talk to the server using the <a href="rest-api.html">Deltacloud REST API</a>, the DMTF <a href="cimi-rest.html">CIMI API</a> or even the EC2 API. Deltacloud even comes with a HTML interface so you can simply use your web browser to control your cloud infrastructure straight out of the box. The HTML interface is written with the <a href="http://jquerymobile.com/">jQuery mobile</a> framework, so it is compatible with your mobile or tablet devices.</p>
<br><img src="assets/img/deltacloud_concept.gif" alt="Deltacloud concept scheme"><br><a class="btn btn-inverse btn-large" style="float: right" href="install-deltacloud.html">Get Deltacloud</a>

</div>
Expand Down
3 changes: 2 additions & 1 deletion site/output/addresses.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/api-docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/api-entry-point.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Binary file added site/output/assets/img/API_Diagram.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified site/output/assets/img/deltacloud_concept.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion site/output/blob-storage.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-curl.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-curl/cimi-curl-machines.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
7 changes: 4 additions & 3 deletions site/output/cimi-curl/cimi-curl-resource_metadata.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -127,11 +128,11 @@ <h3 id="command">cURL examples for CIMI Resource Metadata resources</h3>

<p> Retrieve the Resource Metadata resource corresponding to the Cloud Entry Point resource, in json format:</p>

<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/cloud_entry_point </pre>
<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/json" http://localhost:3001/cimi/resource_metadata/cloud_entry_point </pre>

<p> Retrieve the Resource Metadata resource corresponding to the Machine resource, in xml format:</p>

<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/json" http://localhost:3001/cimi/resource_metadata/machine </pre>
<pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/machine </pre>

<footer class="footer">
<p class="pull-right"><span class='icon-circle-arrow-up'>&nbsp;</span><a href="#">Back to top</a></p>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-curl/cimi-curl-volumes.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-collections.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-entry-point.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-machine-configs.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-machine-images.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
5 changes: 3 additions & 2 deletions site/output/cimi-rest/cimi-rest-machine-templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -118,7 +119,7 @@ <h3 id="cimi-machine-template">Machine Template</h3>
</pre>

<p>
A CIMI client (a <strong>consumer</strong> in CIMI terminology) uses a Machine Template to <a href="../cimi-rest-collections.html#create-machine"> create a new Machine</a>; a Machine Template consists of (amongst other attributes) a Machine Configuration and a Machine Image. Generally speaking - many CIMI resources require use of a template for their creation and a template will typically consist of an image plus a configuration resource.
A CIMI client (a <strong>consumer</strong> in CIMI terminology) uses a Machine Template to <a href="cimi-rest-collections.html#create-machine"> create a new Machine</a>; a Machine Template consists of (amongst other attributes) a Machine Configuration and a Machine Image. Generally speaking - many CIMI resources require use of a template for their creation and a template will typically consist of an image plus a configuration resource.
</p>

</div>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-resource-metadata.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-volume-configs.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
3 changes: 2 additions & 1 deletion site/output/cimi-rest/cimi-rest-volume-images.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Loading

0 comments on commit ea7178e

Please sign in to comment.