You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2014/02/17 11:22:52 UTC

svn commit: r898264 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/intro/getting-started/quickstart-archetype.html content/intro/getting-started/simple-archetype.html

Author: buildbot
Date: Mon Feb 17 10:22:52 2014
New Revision: 898264

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/intro/getting-started/quickstart-archetype.html
    websites/staging/isis/trunk/content/intro/getting-started/simple-archetype.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 17 10:22:52 2014
@@ -1 +1 @@
-1568934
+1568935

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Feb 17 10:22:52 2014
@@ -1 +1 @@
-1568934
+1568935

Modified: websites/staging/isis/trunk/content/intro/getting-started/quickstart-archetype.html
==============================================================================
--- websites/staging/isis/trunk/content/intro/getting-started/quickstart-archetype.html (original)
+++ websites/staging/isis/trunk/content/intro/getting-started/quickstart-archetype.html Mon Feb 17 10:22:52 2014
@@ -397,7 +397,7 @@ mvn jetty:run -D jetty.port=9090
 
 <p>As noted above, the generated app is a reasonably complete application for tracking to-do items.  It consists of the following modules: </p>
 
-<table>
+<table class="table table-striped table-bordered table-condensed">
 <tr><th>Module</th><th>Description</th></tr>
 <tr><td>myapp</td><td>The parent (aggregator) module</td></tr>
 <tr><td>myapp-dom</td><td>The domain object model, consisting of <tt>ToDoItem</tt> and <tt>ToDoItems</tt> (repository) domain service.</td></tr>

Modified: websites/staging/isis/trunk/content/intro/getting-started/simple-archetype.html
==============================================================================
--- websites/staging/isis/trunk/content/intro/getting-started/simple-archetype.html (original)
+++ websites/staging/isis/trunk/content/intro/getting-started/simple-archetype.html Mon Feb 17 10:22:52 2014
@@ -288,7 +288,7 @@
 
 <p>If you want to see a more functionally complete example, also check out the <a href="quickstart-archetype.html">ToDo app (quickstart) archetype</a>; this will give you a good idea of what makes up a not-too-complex Isis application.  In fact, we recommend that you run both archetypes: this simple archetype generates a very simple application for you to refactor and extend, while the ToDo app provides to guide your own development.</p>
 
-<h3>Generating the App</h3>
+<h2>Generating the App</h2>
 
 <p>Create a new directory, and <code>cd</code> into that directory.</p>
 
@@ -315,7 +315,7 @@ mvn archetype:generate  \
 
 <p>The archetype generation process will then run; it only takes a few seconds.</p>
 
-<h3>Building the App</h3>
+<h2>Building the App</h2>
 
 <p>Switch into the root directory of your newly generated app, and build your app:</p>
 
@@ -326,7 +326,7 @@ mvn clean install
 
 <p>where <code>myapp</code> is the <code>artifactId</code> entered above.</p>
 
-<h3>Running the App</h3>
+<h2>Running the App</h2>
 
 <p>The <code>simple_wicket_restful_jdo</code> archetype generates a single WAR file, configured to run both the <a href="../../components/viewers/wicket/about.html">Wicket viewer</a> and the <a href="../../components/viewers/wicket/about.html">Restful Objects viewer</a>.  The archetype also configures the <a href="../../components/objectstores/jdo/about.html">JDO Objectstore</a> to use an in-memory HSQLDB connection.  </p>
 
@@ -359,23 +359,23 @@ mvn jetty:run -D jetty.port=9090
 
 <p>Finally, you can also run the app by deploying to a standalone servlet container such as <a href="http://tomcat.apache.org">Tomcat</a>.</p>
 
-<h3>Using the App</h3>
+<h2>Using the App</h2>
 
 <p>The archetype provides a welcome page that explains the classes and files generated, and provides detailed guidance and what to do next.</p>
 
 <p>The app itself is configured to run using shiro security, as configured in the <code>WEB-INF/shiro.ini</code> config file.  To log in, use <code>sven/pass</code>.</p>
 
-<h3>Modifying the App</h3>
+<h2>Modifying the App</h2>
 
 <p>Once you are familiar with the generated app, you'll want to start modifying it.  There is plenty of guidance on this site; check out the 'programming model how-tos' section on the main <a href="../../documentation.html">documentation</a> page first).</p>
 
 <p>If you use Eclipse, do also install the <a href="../resources/editor-templates.html">Eclipse templates</a>; these will help you follow the Isis naming conventions.  </p>
 
-<h4>App Structure</h4>
+<h2>App Structure</h2>
 
 <p>As noted above, the generated app is a very simple application consisting of a single domain object that can be easily renamed and extended. The intention is not to showcase all of Isis' capabilities; rather it is to allow you to very easily modify the generated application (eg rename <code>SimpleObject</code> to <code>Customer</code>) without having to waste time deleting lots of generated code.</p>
 
-<table>
+<table class="table table-striped table-bordered table-condensed">
 <tr><th>Module</th><th>Description</th></tr>
 <tr><td>myapp</td><td>The parent (aggregator) module</td></tr>
 <tr><td>myapp-dom</td><td>The domain object model, consisting of <tt>SimpleObject</tt> and <tt>SimpleObjects</tt> (repository) domain service.</td></tr>