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 2013/10/05 08:49:34 UTC

svn commit: r881254 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/getting-started/screenshots2.html

Author: buildbot
Date: Sat Oct  5 06:49:33 2013
New Revision: 881254

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/getting-started/screenshots2.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct  5 06:49:33 2013
@@ -1 +1 @@
-1529393
+1529394

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct  5 06:49:33 2013
@@ -1 +1 @@
-1529393
+1529394

Modified: websites/staging/isis/trunk/content/getting-started/screenshots2.html
==============================================================================
--- websites/staging/isis/trunk/content/getting-started/screenshots2.html (original)
+++ websites/staging/isis/trunk/content/getting-started/screenshots2.html Sat Oct  5 06:49:33 2013
@@ -274,13 +274,27 @@
 <div id="this-carousel-id" class="carousel slide">
     <div class="carousel-inner">
       <div class="item active">
-        <img src="resources/screencast-01-welcome-page.png"></img>
+        <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>
       </div>
+
+      <div class="item">
+        <a href="resources/screencast-02-wicket-home-page.png">
+          <img src="resources/screencast-02-wicket-home-page.png" width="525" height="349"></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>
+        </div>
+      </div>
+
+
+      <!--
       <div class="item">
         <a href="http://hubblesite.org/gallery/album/entire/pr2007016e/xlarge_web/npp/128/">
           <img src="../screenshots2/img/carina.jpg" alt="Carina Caterpillar" />
@@ -307,6 +321,7 @@
           <p>Galaxy NGC 5866</p>
           <p><a href="http://hubblesite.org/gallery/album/entire/pr2006024a/xlarge_web/npp/128/">Hubblesite.org &raquo;</a></p>
         </div>
+        -->
       </div>
     </div><!-- .carousel-inner -->
     <!--  next and previous controls here
@@ -344,20 +359,23 @@
     <td>
       <img src="resources/screencast-01-welcome-page.png" width="525" height="349"></img>
     </td>
-  </tr>
-  <tr>
+  </tr></p>
+
+<p><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>
+  </tr></p>
+
+<p><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>
+  </tr></p>
+
+<p><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 {