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:30:40 UTC

svn commit: r934602 - 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:30:39 2014
New Revision: 934602

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:30:39 2014
@@ -1 +1 @@
-1648694
+1648695

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 31 13:30:39 2014
@@ -1 +1 @@
-1648694
+1648695

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:30:39 2014
@@ -435,11 +435,22 @@ 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><code>[Pet|-name:String{bg:green}]&lt;-0..*[Visit|-checkIn:LocalDate;-checkout:LocalDate;-diagnosis:String|+checkin();+checkout();+addNote(){bg:pink}]
+<pre><code>[Pet|-name:String{bg:green}]&lt;-0..*[Visit|-checkIn:LocalDate;-checkout:LocalDate;-diagnosis:String|{bg:pink}]
 [Owner|-firstName:String;-lastName:String{bg:green}]&lt;0..1-0..*&gt;[Pet]
 [PetSpecies|-name:String{bg:blue}]&lt;species-[Pet]
 </code></pre>
 
+<p>This supports the following use cases:</p>
+
+<ul>
+<li>register an Owner</li>
+<li>register a Pet</li>
+<li>check in a Pet to visit the clinic</li>
+<li>add a note to a Pet during a visit</li>
+<li>enter a diagnosis</li>
+<li>check out a Pet to visit the clinic</li>
+</ul>
+
 <p>Either follow along or check out the tags from the corresponding <a href="https://github.com/danhaywood/isis-app-petclinic">github repo</a>.</p>
 
 <h2>Prerequisites</h2>