You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by km...@apache.org on 2013/03/20 17:03:10 UTC

svn commit: r1458905 - /incubator/knox/site/

Author: kminder
Date: Wed Mar 20 16:03:09 2013
New Revision: 1458905

URL: http://svn.apache.org/r1458905
Log:
Publish site from Git repository.

Modified:
    incubator/knox/site/build-process.html
    incubator/knox/site/client.html
    incubator/knox/site/contribute-process.html
    incubator/knox/site/index.html
    incubator/knox/site/issue-tracking.html
    incubator/knox/site/license.html
    incubator/knox/site/mail-lists.html
    incubator/knox/site/news.html
    incubator/knox/site/privacy-policy.html
    incubator/knox/site/project-info.html
    incubator/knox/site/project-reports.html
    incubator/knox/site/rat-report.html
    incubator/knox/site/release-process.html
    incubator/knox/site/roadmap-0-3-0.html
    incubator/knox/site/site-process.html
    incubator/knox/site/team-list.html
    incubator/knox/site/template.html

Modified: incubator/knox/site/build-process.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/build-process.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/build-process.html (original)
+++ incubator/knox/site/build-process.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/client.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/client.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/client.html (original)
+++ incubator/knox/site/client.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
             <strong>Client (KnoxShell DSL)</strong>
           </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>
@@ -169,7 +175,7 @@ limitations under the License. --><div c
   <li>The JVM is executable as simply java.</li>
   <li>The Apache Knox Gateway is installed and functional.</li>
   <li>The example commands are executed within the context of the GATEWAY_HOME current directory. The GATEWAY_HOME directory is the directory within the Apache Knox Gateway installation that contains the README file and the bin, conf and deployments directories.</li>
-  <li>A few examples require the use of commands from a standard Groovy installation.</li>
+  <li>A few examples require the use of commands from a standard Groovy installation. These examples are optional but to try them you will need Groovy <a class="externalLink" href="http://groovy.codehaus.org/Installing+Groovy">installed</a>.</li>
 </ol></div><div class="section"><h2>Usage<a name="Usage"></a></h2><p>The DSL requires a shell to interpret the Groovy script. The shell can either be used interactively or to execute a script file. To simplify use, the distribution contains an embedded version of the Groovy shell.</p><p>The shell can be run interactively.</p>
 <div class="source"><pre>java -jar bin/shell-0.2.0-SNAPSHOT.jar
 </pre></div><p>The shell can also be used to execute a script by passing a single filename argument.</p>
@@ -529,13 +535,13 @@ class ComplexCommand {
     }
 
     public List&lt;String&gt; getNames() {
-      return JsonPath.read( string, &quot;\$.FileStatuses.FileStatus[*].pathSuffix&quot; )
+      return JsonPath.read( string, &quot;.FileStatuses[*].pathSuffix&quot; )
     }
 
   }
 
 }
-</pre></div></div></div><div class="section"><h2>Groovy<a name="Groovy"></a></h2><p>The shell included in the distribution is basically an unmodified packaging of the Groovy shell. Therefore these command are functionally equivalent if you have Groovy installed.</p>
+</pre></div></div></div><div class="section"><h2>Groovy<a name="Groovy"></a></h2><p>The shell included in the distribution is basically an unmodified packaging of the Groovy shell. Therefore these command are functionally equivalent if you have Groovy <a class="externalLink" href="http://groovy.codehaus.org/Installing+Groovy">installed</a>.</p>
 <div class="source"><pre>java -jar bin/shell-0.2.0-SNAPSHOT.jar sample/SmokeTestJob.groovy
 groovy -cp bin/shell-0.2.0-SNAPSHOT.jar sample/SmokeTestJob.groovy
 </pre></div><p>The interactive shell isnt exactly equivalent. However the only difference is that the shell-0.2.0-SNAPSHOT.jar automatically executes some additional imports that are useful for the KnoxShell DSL. So these two sets of commands should be functionality equivalent. <b><i>However there is currently a class loading issue that prevents the groovysh command from working propertly.</i></b></p>
@@ -555,7 +561,7 @@ import org.apache.hadoop.gateway.shell.h
 import org.apache.hadoop.gateway.shell.job.Job
 import org.apache.hadoop.gateway.shell.workflow.Workflow
 import java.util.concurrent.TimeUnit
-</pre></div><p>In addition because the DSL can be used via standard Groovy, the Groovy integrations in many popular IDEs (e.g. IntelliJ , Eclipse) can also be used. This makes it particularly nice to develop and execute scripts to interact with Hadoop. The code-completion feature in particular provides immense value. All that is required is to add the shell-0.2.0.jar to the projects class path.</p><p>There are a variety of Groovy tools that make it very easy to work with the standard interchange formats (i.e. JSON and XML). In Groovy the creation of XML or JSON is typically done via a builder and parsing done via a slurper. In addition once JSON or XML is slurped the GPath, an XPath like feature build into Groovy can be used to access data. * XML  * Markup Builder <a class="externalLink" href="http://groovy.codehaus.org/Creating+XML+using+Groovy&apos;s+MarkupBuilder">Overview</a>, <a class="externalLink" href="http://groovy.codehaus.org/api/groovy/xml/MarkupBuilder.html">API
 </a>  * XML Slurper <a class="externalLink" href="http://groovy.codehaus.org/Reading+XML+using+Groovy&apos;s+XmlSlurper">Overview</a>, <a class="externalLink" href="http://groovy.codehaus.org/api/groovy/util/XmlSlurper.html">API</a>  * XPath <a class="externalLink" href="http://groovy.codehaus.org/GPath">Overview</a>, [API] * JSON  * JSON Builder <a class="externalLink" href="http://groovy.codehaus.org/gapi/groovy/json/JsonBuilder.html">API</a>  * JSON Slurper <a class="externalLink" href="http://groovy.codehaus.org/gapi/groovy/json/JsonSlurper.html">API</a> * GPath <a class="externalLink" href="http://groovy.codehaus.org/GPath">Overview</a></p></div><div class="section"><h2>Disclaimer<a name="Disclaimer"></a></h2><p>The Apache Knox Gateway is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.</p><p>Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, commu
 nications, and decision making process have stabilized in a manner consistent with other successful ASF projects.</p><p>While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p></div>
+</pre></div><p>In addition because the DSL can be used via standard Groovy, the Groovy integrations in many popular IDEs (e.g. IntelliJ , Eclipse) can also be used. This makes it particularly nice to develop and execute scripts to interact with Hadoop. The code-completion feature in particular provides immense value. All that is required is to add the shell-0.2.0.jar to the projects class path.</p><p>There are a variety of Groovy tools that make it very easy to work with the standard interchange formats (i.e. JSON and XML). In Groovy the creation of XML or JSON is typically done via a builder and parsing done via a slurper. In addition once JSON or XML is slurped the GPath, an XPath like feature build into Groovy can be used to access data. * XML  * Markup Builder <a class="externalLink" href="http://groovy.codehaus.org/Creating+XML+using+Groovy&apos;s+MarkupBuilder">Overview</a>, <a class="externalLink" href="http://groovy.codehaus.org/api/groovy/xml/MarkupBuilder.html">API
 </a>  * XML Slurper <a class="externalLink" href="http://groovy.codehaus.org/Reading+XML+using+Groovy&apos;s+XmlSlurper">Overview</a>, <a class="externalLink" href="http://groovy.codehaus.org/api/groovy/util/XmlSlurper.html">API</a>  * XPath <a class="externalLink" href="http://groovy.codehaus.org/GPath">Overview</a>, <a class="externalLink" href="http://docs.oracle.com/javase/1.5.0/docs/api/javax/xml/xpath/XPath.html">API</a> * JSON  * JSON Builder <a class="externalLink" href="http://groovy.codehaus.org/gapi/groovy/json/JsonBuilder.html">API</a>  * JSON Slurper <a class="externalLink" href="http://groovy.codehaus.org/gapi/groovy/json/JsonSlurper.html">API</a>  * JSON Path <a class="externalLink" href="https://code.google.com/p/json-path/">API</a> * GPath <a class="externalLink" href="http://groovy.codehaus.org/GPath">Overview</a></p></div><div class="section"><h2>Disclaimer<a name="Disclaimer"></a></h2><p>The Apache Knox Gateway is an effort undergoing incubation at the Ap
 ache Software Foundation (ASF), sponsored by the Apache Incubator PMC.</p><p>Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.</p><p>While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p></div>
       </div>
     </div>
     <div class="clear">

Modified: incubator/knox/site/contribute-process.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/contribute-process.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/contribute-process.html (original)
+++ incubator/knox/site/contribute-process.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/index.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/index.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/index.html (original)
+++ incubator/knox/site/index.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/issue-tracking.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/issue-tracking.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/issue-tracking.html (original)
+++ incubator/knox/site/issue-tracking.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/license.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/license.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/license.html (original)
+++ incubator/knox/site/license.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/mail-lists.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/mail-lists.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/mail-lists.html (original)
+++ incubator/knox/site/mail-lists.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/news.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/news.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/news.html (original)
+++ incubator/knox/site/news.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/privacy-policy.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/privacy-policy.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/privacy-policy.html (original)
+++ incubator/knox/site/privacy-policy.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/project-info.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/project-info.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/project-info.html (original)
+++ incubator/knox/site/project-info.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/project-reports.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/project-reports.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/project-reports.html (original)
+++ incubator/knox/site/project-reports.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/rat-report.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/rat-report.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/rat-report.html (original)
+++ incubator/knox/site/rat-report.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>
@@ -142,13 +148,13 @@
 *****************************************************
 Summary
 -------
-Generated at: 2013-03-20T00:01:42-04:00
+Generated at: 2013-03-20T12:03:03-04:00
 Notes: 0
 Binaries: 2
 Archives: 0
-Standards: 13
+Standards: 15
 
-Apache Licensed: 13
+Apache Licensed: 15
 Generated Documents: 0
 
 JavaDocs are generated and so license header is optional
@@ -172,12 +178,14 @@ Archives:
   Notices, licenses etc will be marked N
   AL    pom.xml
   AL    src/site/markdown/build-process.md
-  AL    src/site/markdown/client.md
+  AL    src/site/markdown/client.md.vm
   AL    src/site/markdown/contribute-process.md
+  AL    src/site/markdown/examples.md.vm
+  AL    src/site/markdown/getting-started.md.vm
   AL    src/site/markdown/index.md
   AL    src/site/markdown/news.md
   AL    src/site/markdown/privacy-policy.md
-  AL    src/site/markdown/readme-0-2-0.md
+  AL    src/site/markdown/release-0-2-0.md
   AL    src/site/markdown/release-process.md
   AL    src/site/markdown/roadmap-0-3-0.md
   AL    src/site/markdown/site-process.md

Modified: incubator/knox/site/release-process.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/release-process.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/release-process.html (original)
+++ incubator/knox/site/release-process.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/roadmap-0-3-0.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/roadmap-0-3-0.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/roadmap-0-3-0.html (original)
+++ incubator/knox/site/roadmap-0-3-0.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
             <strong>0.3.0 (planning)</strong>

Modified: incubator/knox/site/site-process.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/site-process.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/site-process.html (original)
+++ incubator/knox/site/site-process.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>
@@ -159,7 +165,11 @@ ant publish
 </pre></div><p>If the repository has already been cloned the following process should be used.</p>
 <div class="source"><pre>git pull
 ant publish
-</pre></div></div>
+</pre></div><p>Unfortunately there are two know issues with this process.</p>
+<ol style="list-style-type: decimal">
+  <li><p>All files in the site are updated in Subversion even if they have not change. As the site becomes larger and contains more images this may become a serious issue.</p></li>
+  <li><p>Any renamed or removed files will result in orphaned files in Subversion. These will need to be cleaned up explicitly.</p></li>
+</ol></div>
       </div>
     </div>
     <div class="clear">

Modified: incubator/knox/site/team-list.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/team-list.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/team-list.html (original)
+++ incubator/knox/site/team-list.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>

Modified: incubator/knox/site/template.html
URL: http://svn.apache.org/viewvc/incubator/knox/site/template.html?rev=1458905&r1=1458904&r2=1458905&view=diff
==============================================================================
--- incubator/knox/site/template.html (original)
+++ incubator/knox/site/template.html Wed Mar 20 16:03:09 2013
@@ -69,6 +69,12 @@
                        <h5>Documentation</h5>
                   <ul>
                   <li class="none">
+                          <a href="getting-started.html" title="Getting Started">Getting Started</a>
+            </li>
+                  <li class="none">
+                          <a href="examples.html" title="Usage Examples">Usage Examples</a>
+            </li>
+                  <li class="none">
                           <a href="client.html" title="Client (KnoxShell DSL)">Client (KnoxShell DSL)</a>
             </li>
                   <li class="none">
@@ -78,7 +84,7 @@
                        <h5>Releases</h5>
                   <ul>
                   <li class="none">
-                          <a href="readme-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
+                          <a href="release-0-2-0.html" title="0.2.0 (coming soon)">0.2.0 (coming soon)</a>
             </li>
                   <li class="none">
                           <a href="roadmap-0-3-0.html" title="0.3.0 (planning)">0.3.0 (planning)</a>
@@ -152,7 +158,7 @@ Unless required by applicable law or agr
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
-limitations under the License. --><div class="section"><h2>Section<a name="Section"></a></h2></div><div class="section"><h2>Disclaimer<a name="Disclaimer"></a></h2><p>The Apache Knox Gateway is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.</p><p>Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.</p><p>While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p></div>
+limitations under the License. --><p></p><div class="section"><h2>Section<a name="Section"></a></h2><p></p></div><div class="section"><h2>Disclaimer<a name="Disclaimer"></a></h2><p>The Apache Knox Gateway is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.</p><p>Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.</p><p>While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.</p></div>
       </div>
     </div>
     <div class="clear">