You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/10/06 10:13:45 UTC

svn commit: r1529592 - in /isis/site/trunk/content: getting-started/screenshots2.md indexNEW.md

Author: danhaywood
Date: Sun Oct  6 08:13:44 2013
New Revision: 1529592

URL: http://svn.apache.org/r1529592
Log:
to bootstrap3

Added:
    isis/site/trunk/content/indexNEW.md
      - copied, changed from r1529473, isis/site/trunk/content/getting-started/screenshots2.md
Removed:
    isis/site/trunk/content/getting-started/screenshots2.md

Copied: isis/site/trunk/content/indexNEW.md (from r1529473, isis/site/trunk/content/getting-started/screenshots2.md)
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/indexNEW.md?p2=isis/site/trunk/content/indexNEW.md&p1=isis/site/trunk/content/getting-started/screenshots2.md&r1=1529473&r2=1529592&rev=1529592&view=diff
==============================================================================
--- isis/site/trunk/content/getting-started/screenshots2.md (original)
+++ isis/site/trunk/content/indexNEW.md Sun Oct  6 08:13:44 2013
@@ -1,35 +1,38 @@
 Title: Apache Isis
 
-<!--
-The following screenshots show the Wicket and Restful Objects viewers running a simple 'todo app', as generated by the [quickstart archetype](quickstart-archetype.html).
--->
-
   <!--  Carousel -->
   <!--  consult Bootstrap docs at 
         http://twitter.github.com/bootstrap/javascript.html#carousel -->
   <div id="this-carousel-id" class="carousel slide">
+  
+    <ol class="carousel-indicators">
+      <li data-target="#this-carousel-id" data-slide-to="0" class="active"></li>
+      <li data-target="#this-carousel-id" data-slide-to="1"></li>
+      <li data-target="#this-carousel-id" data-slide-to="2"></li>
+    </ol>
+
     <div class="carousel-inner">
       <div class="item active">
         <img src="resources/isis-logo-940x560.png"></img>
       </div>
 
-    <div class="item">
-        <a href="resources/screencast-01-welcome-page.png">
-          <img src="resources/screencast-01-welcome-page.png"></img>
-        </a>
-        <div class="carousel-caption">
-          <p>Welcome Page</p>
-          <p><i>The archetype's welcome page describes how the application is configured, and the most significant files</i></p>
+      <div class="item">
+          <a href="resources/screencast-01-welcome-page.png">
+            <img src="resources/screencast-01-welcome-page.png"></img>
+          </a>
+          <div class="carousel-caption">
+            <h3>Welcome Page</h3>
+            <p>The archetype's welcome page describes how the application is configured, and the most significant files</p>
+          </div>
         </div>
-      </div>
 
       <div class="item">
         <a href="resources/screencast-02-wicket-home-page.png">
           <img src="resources/screencast-02-wicket-home-page.png"></img>
         </a>
         <div class="carousel-caption">
-          <p>TODO
-          
+          <h3>Wicket Home Page</h3>
+          <p>The Wicket viewer displays a home page showing the domain services as menu items.  These are registered in <tt>WEB-INF/isis.properties</tt></td>
           </p>
         </div>
       </div>
@@ -39,16 +42,17 @@ The following screenshots show the Wicke
           <img src="resources/screencast-03-github-source-code.png"></img>
         </a>
         <div class="carousel-caption">
-          <p>Domain class source code<br/></p>
-          <p><i>Most of the functionality of the quickstart app is inferred from the <tt>ToDoItem</tt> class.</i></p>
+          <h3>Domain class source code</h3>
+          <p>Most of the functionality of the quickstart app is inferred from the <tt>ToDoItem</tt> class.</p>
         </div>
       </div>
 
-    </div><!-- .carousel-inner -->
+    </div>
+    
     <!--  next and previous controls here
           href values must reference the id for this carousel -->
-      <a class="carousel-control left" href="#this-carousel-id" data-slide="prev">&lsaquo;</a>
-      <a class="carousel-control right" href="#this-carousel-id" data-slide="next">&rsaquo;</a>
+      <a class="carousel-control left" href="#this-carousel-id" data-slide="prev"><span class="icon-prev"></span></a>
+      <a class="carousel-control right" href="#this-carousel-id" data-slide="next"><span class="icon-next"></span></a>
   </div><!-- .carousel -->
   <!-- end carousel -->
 
@@ -56,21 +60,6 @@ The following screenshots show the Wicke
 <table>
 
   <tr>
-    <td>Wicket Home Page<br/><br/><i>The Wicket viewer displays a home page showing the domain services as menu items.  These are registered in </i><tt>WEB-INF/isis.properties</tt><br/><br/><i>The welcome text links to the main <tt>ToDoItem</tt> domain class over on <a href="https://github.com/apache/isis/blob/master/example/application/quickstart_wicket_restful_jdo/dom/src/main/java/dom/todo/ToDoItem.java">github</a>. (You can easily change this text).</i></td>
-    <td>
-      <img src="resources/screencast-02-wicket-home-page.png" width="525" height="349"></img>
-    </td>
-  </tr>
-  
-  
-  <tr>
-    <td>Domain class source code<br/><br/><i>Most of the functionality of the quickstart app is inferred from the <tt>ToDoItem</tt> class.</i></td>
-    <td>
-      <img src="resources/screencast-03-github-source-code.png" width="525" height="349"></img>
-    </td>
-  </tr>
-  
-  <tr>
     <td>Install Fixtures<br/><br/><i>The quickstart app is configured to run using the JDO objectstore, but with an in-memory database.  The <tt>Fixtures</tt> domain service allows the administrator (user: sven, password: pass) to install sample data:</i><pre>
 @Named("Fixtures")
 public class ToDoItemsFixturesService {