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/12/31 14:26:51 UTC

svn commit: r934598 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/intro/tutorials/resources/petclinic/domain-model.png content/intro/tutorials/step-by-step-petclinic.html

Author: buildbot
Date: Wed Dec 31 13:26:50 2014
New Revision: 934598

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/tutorials/resources/petclinic/domain-model.png
    websites/staging/isis/trunk/content/intro/tutorials/step-by-step-petclinic.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 31 13:26:50 2014
@@ -1 +1 @@
-1648688
+1648692

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 31 13:26:50 2014
@@ -1 +1 @@
-1648688
+1648692

Modified: websites/staging/isis/trunk/content/intro/tutorials/resources/petclinic/domain-model.png
==============================================================================
Binary files - no diff available.

Modified: websites/staging/isis/trunk/content/intro/tutorials/step-by-step-petclinic.html
==============================================================================
--- websites/staging/isis/trunk/content/intro/tutorials/step-by-step-petclinic.html (original)
+++ websites/staging/isis/trunk/content/intro/tutorials/step-by-step-petclinic.html Wed Dec 31 13:26:50 2014
@@ -436,7 +436,7 @@ A step-by-step tutorial to building a pe
 <p>The above diagram was built using <a href="http://yuml.me]">yuml.me</a>; the DSL that defines this diagram is:</p>
 
 <pre>
-[Pet|-name:String{bg:green}]<-0..*[Visit|-checkIn:DateTime;-checkout:DateTime;-diagnosis:String|+checkin();+checkout();+addNote(){bg:pink}]
+[Pet|-name:String{bg:green}]<-0..*[Visit|-checkIn:LocalDate;-checkout:LocalDate;-diagnosis:String|+checkin();+checkout();+addNote(){bg:pink}]
 [Owner|-firstName:String;-lastName:String{bg:green}]<0..1-0..*>[Pet]
 [PetSpecies|-name:String{bg:blue}]<species-[Pet]
 </pre>
@@ -557,7 +557,7 @@ every time, specify the following system
 
 <p>where the "before launch" maven goal (to run the DataNucleus enhancer) is defined as:</p>
 
-<p><a href="resources/petclinic/020-02-idea-configuration.png"><img src="resources/petclinic/020-02-idea-configuration.png" width="300"></img></a></p>
+<p><a href="resources/petclinic/020-02-idea-configuration.png"><img src="resources/petclinic/020-02-idea-configuration.png" width="400"></img></a></p>
 
 <h2>Explore codebase</h2>
 
@@ -630,7 +630,11 @@ git checkout <a href="https://github.com
 
 <h2>Rename the app, and rename the SimpleObject entity</h2>
 
-<p>Time to start refactoring the app.  The heart of the PetClinic app is the <code>Pet</code> concept, so go through the code and refactor.  While we're at it, refactor the app itself from "SimpleApp" to "PetClinicApp":</p>
+<p><div class="note">
+git checkout <a href="https://github.com/danhaywood/isis-app-petclinic/commit/bee3629c0b64058f939b6dd20f226be31810fc66">bee3629c0b64058f939b6dd20f226be31810fc66</a>
+</div></p>
+
+<p>Time to start refactoring the app.  The heart of the PetClinic app is the <code>Pet</code> concept, so go through the code and refactor.  While we're at it, refactor the app itself from "SimpleApp" to "PetClinicApp".</p>
 
 <ul>
 <li>in the <code>dom</code> module's production code
@@ -670,9 +674,7 @@ git checkout <a href="https://github.com
 </ul></li>
 </ul>
 
-<p><div class="note">
-git checkout <a href="https://github.com/danhaywood/isis-app-petclinic/commit/bee3629c0b64058f939b6dd20f226be31810fc66">bee3629c0b64058f939b6dd20f226be31810fc66</a>
-</div></p>
+<p><a href="resources/petclinic/020-01-idea-configuration.png"><img src="resources/petclinic/020-01-idea-configuration.png" width="600"></img></a></p>
 
 <h2>Update package names</h2>