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 20:33:06 UTC

svn commit: r1438138 - in /deltacloud/trunk/site: content/ content/cimi-curl/ content/cimi-rest/ output/ output/cimi-curl/ output/cimi-rest/

Author: marios
Date: Thu Jan 24 19:33:06 2013
New Revision: 1438138

URL: http://svn.apache.org/viewvc?rev=1438138&view=rev
Log:
Review input for SITE: fix nits in CIMI docs - update links and nav bar

Modified:
    deltacloud/trunk/site/content/about.md
    deltacloud/trunk/site/content/cimi-curl/cimi-curl-resource_metadata.md
    deltacloud/trunk/site/content/cimi-rest/cimi-rest-machine-templates.md
    deltacloud/trunk/site/content/command-tools.md
    deltacloud/trunk/site/content/rest-api.md
    deltacloud/trunk/site/content/usage.md
    deltacloud/trunk/site/output/about.html
    deltacloud/trunk/site/output/cimi-curl/cimi-curl-resource_metadata.html
    deltacloud/trunk/site/output/cimi-rest/cimi-rest-machine-templates.html
    deltacloud/trunk/site/output/command-tools.html
    deltacloud/trunk/site/output/rest-api.html
    deltacloud/trunk/site/output/usage.html

Modified: deltacloud/trunk/site/content/about.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/about.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/about.md (original)
+++ deltacloud/trunk/site/content/about.md Thu Jan 24 19:33:06 2013
@@ -14,7 +14,7 @@ title: About
 
 <p>Deltacloud maintains <strong>long-term stability</strong> for scripts, tools and applications and <strong>backward compatibility</strong> across different versions.</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>Deltacloud enables management of resources in different clouds by the use of one of three supported APIs. The supported  APIs are 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>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>
@@ -31,9 +31,9 @@ title: About
 <br/>
 <h3>How does Deltacloud work?</h3>
 <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>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 cloud <a href="/supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" that cloud provider's native API, freeing 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>, 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>
+<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 an 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"/>

Modified: deltacloud/trunk/site/content/cimi-curl/cimi-curl-resource_metadata.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/cimi-curl/cimi-curl-resource_metadata.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/cimi-curl/cimi-curl-resource_metadata.md (original)
+++ deltacloud/trunk/site/content/cimi-curl/cimi-curl-resource_metadata.md Thu Jan 24 19:33:06 2013
@@ -36,10 +36,10 @@ title: CIMI cURL Examples - Resource Met
 
   <pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata</pre>
 
-  <p> Retrieve the Resource Metadata resource corresponding to the Cloud Entry Point resource, in json format:</p>
+  <p> Retrieve the Resource Metadata as it corresponding to the Cloud Entry Point resource, in json format:</p>
 
   <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>
+  <p> Retrieve the Resource Metadata as it corresponding to the Machine resource, in xml format:</p>
 
   <pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/machine </pre>

Modified: deltacloud/trunk/site/content/cimi-rest/cimi-rest-machine-templates.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/cimi-rest/cimi-rest-machine-templates.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/cimi-rest/cimi-rest-machine-templates.md (original)
+++ deltacloud/trunk/site/content/cimi-rest/cimi-rest-machine-templates.md Thu Jan 24 19:33:06 2013
@@ -27,7 +27,7 @@ machineConfiguration + machineImage = ma
 </pre>
 
 <p>
-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.
+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 the use of a template for their creation and a template will typically consist of an image plus a configuration resource.
 </p>
 
   </div>

Modified: deltacloud/trunk/site/content/command-tools.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/command-tools.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/command-tools.md (original)
+++ deltacloud/trunk/site/content/command-tools.md Thu Jan 24 19:33:06 2013
@@ -21,14 +21,14 @@ The deltacloud core developers use (almo
 
 <h3 id="command">Using Deltacloud command tool</h3>
 
-<p>Installing the Deltacloud Ruby client also gives you the <strong>deltacloudc</strong> command line tool. This executable uses the Deltacloud client library to speak to the Deltacloud server through the <a href="/rest-api.html">REST API</a>. This means that you can control your cloud infrastructure from the command line. The general usage pattern for deltacloudc is:<p>
+<p>Installing the Deltacloud Ruby client also gives you the <strong>deltacloudc</strong> command line tool. This executable uses the Deltacloud client library to speak to the Deltacloud server through the <a href="/rest-api.html">Deltacloud REST API</a>. This means that you can control your cloud infrastructure from the command line. The general usage pattern for deltacloudc is:<p>
 
 <pre>$ deltacloudc collection operation [options]</pre>
 
 <dl>
   <dt>Collection</dt>
   <dd>
-  refers to the Deltacloud object collections, such as Instances, Images, Buckets, Realms etc., as described in a greater detail in the <a href="/rest-api.html">REST API documentation</a>.
+  refers to the Deltacloud object collections, such as Instances, Images, Buckets, Realms etc., as described in a greater detail in the <a href="/rest-api.html">Deltacloud REST API documentation</a>.
   </dd>
   <dt>Operation</dt>
   <dd>

Modified: deltacloud/trunk/site/content/rest-api.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/rest-api.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/rest-api.md (original)
+++ deltacloud/trunk/site/content/rest-api.md Thu Jan 24 19:33:06 2013
@@ -29,7 +29,7 @@ The following terms describe abstraction
 
 <ul class="nav nav-list well">
   <li class="nav-header">
-    REST API
+    Deltacloud REST API
   </li>
   <li class="active"><a href="#rest">Introduction</a></li>
   <ul class="nav nav-list">

Modified: deltacloud/trunk/site/content/usage.md
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/content/usage.md?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/content/usage.md (original)
+++ deltacloud/trunk/site/content/usage.md Thu Jan 24 19:33:06 2013
@@ -66,7 +66,7 @@ openstack = client.with_config(:driver =
 <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>.
+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">Deltacloud REST API</a>.
 </p>
 
 <p>

Modified: deltacloud/trunk/site/output/about.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/about.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/about.html (original)
+++ deltacloud/trunk/site/output/about.html Thu Jan 24 19:33:06 2013
@@ -104,7 +104,7 @@
 
 <p>Deltacloud maintains <strong>long-term stability</strong> for scripts, tools and applications and <strong>backward compatibility</strong> across different versions.</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>Deltacloud enables management of resources in different clouds by the use of one of three supported APIs. The supported  APIs are 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>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>
@@ -116,9 +116,9 @@
 <div class="span12">
 
 <br><br><h3>How does Deltacloud work?</h3>
-<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>
+<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 cloud <a href="supported-providers.html" rel="tooltip" title="currently supported providers">provider</a> there is a driver "speaking" that cloud provider's native API, freeing 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>, 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>
+<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 an 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>

Modified: deltacloud/trunk/site/output/cimi-curl/cimi-curl-resource_metadata.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/cimi-curl/cimi-curl-resource_metadata.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/cimi-curl/cimi-curl-resource_metadata.html (original)
+++ deltacloud/trunk/site/output/cimi-curl/cimi-curl-resource_metadata.html Thu Jan 24 19:33:06 2013
@@ -126,11 +126,11 @@
 
   </p><pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata</pre>
 
-  <p> Retrieve the Resource Metadata resource corresponding to the Cloud Entry Point resource, in json format:</p>
+  <p> Retrieve the Resource Metadata as it corresponding to the Cloud Entry Point resource, in json format:</p>
 
   <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>
+  <p> Retrieve the Resource Metadata as it corresponding to the Machine resource, in xml format:</p>
 
   <pre>curl -v --user "mockuser:mockpassword" -H "Accept: application/xml" http://localhost:3001/cimi/resource_metadata/machine </pre>
 

Modified: deltacloud/trunk/site/output/cimi-rest/cimi-rest-machine-templates.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/cimi-rest/cimi-rest-machine-templates.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/cimi-rest/cimi-rest-machine-templates.html (original)
+++ deltacloud/trunk/site/output/cimi-rest/cimi-rest-machine-templates.html Thu Jan 24 19:33:06 2013
@@ -119,7 +119,7 @@ machineConfiguration + machineImage = ma
 </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 the use of a template for their creation and a template will typically consist of an image plus a configuration resource.
 </p>
 
   </div>

Modified: deltacloud/trunk/site/output/command-tools.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/command-tools.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/command-tools.html (original)
+++ deltacloud/trunk/site/output/command-tools.html Thu Jan 24 19:33:06 2013
@@ -110,14 +110,14 @@
 
 <h3 id="command">Using Deltacloud command tool</h3>
 
-<p>Installing the Deltacloud Ruby client also gives you the <strong>deltacloudc</strong> command line tool. This executable uses the Deltacloud client library to speak to the Deltacloud server through the <a href="rest-api.html">REST API</a>. This means that you can control your cloud infrastructure from the command line. The general usage pattern for deltacloudc is:</p><p>
+<p>Installing the Deltacloud Ruby client also gives you the <strong>deltacloudc</strong> command line tool. This executable uses the Deltacloud client library to speak to the Deltacloud server through the <a href="rest-api.html">Deltacloud REST API</a>. This means that you can control your cloud infrastructure from the command line. The general usage pattern for deltacloudc is:</p><p>
 
 </p><pre>$ deltacloudc collection operation [options]</pre>
 
 <dl>
 <dt>Collection</dt>
   <dd>
-  refers to the Deltacloud object collections, such as Instances, Images, Buckets, Realms etc., as described in a greater detail in the <a href="rest-api.html">REST API documentation</a>.
+  refers to the Deltacloud object collections, such as Instances, Images, Buckets, Realms etc., as described in a greater detail in the <a href="rest-api.html">Deltacloud REST API documentation</a>.
   </dd>
   <dt>Operation</dt>
   <dd>

Modified: deltacloud/trunk/site/output/rest-api.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/rest-api.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/rest-api.html (original)
+++ deltacloud/trunk/site/output/rest-api.html Thu Jan 24 19:33:06 2013
@@ -121,7 +121,7 @@ The following terms describe abstraction
 
 <ul class="nav nav-list well">
 <li class="nav-header">
-    REST API
+    Deltacloud REST API
   </li>
   <li class="active"><a href="#rest">Introduction</a></li>
   <ul class="nav nav-list">

Modified: deltacloud/trunk/site/output/usage.html
URL: http://svn.apache.org/viewvc/deltacloud/trunk/site/output/usage.html?rev=1438138&r1=1438137&r2=1438138&view=diff
==============================================================================
--- deltacloud/trunk/site/output/usage.html (original)
+++ deltacloud/trunk/site/output/usage.html Thu Jan 24 19:33:06 2013
@@ -156,7 +156,7 @@ openstack = client.with_config(:driver =
 <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>.
+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">Deltacloud REST API</a>.
 </p>
 
 <p>