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 2014/12/31 14:27:34 UTC

svn commit: r1648694 - /isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md

Author: danhaywood
Date: Wed Dec 31 13:27:33 2014
New Revision: 1648694

URL: http://svn.apache.org/r1648694
Log:
petclinic tutorial

Modified:
    isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md

Modified: isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md?rev=1648694&r1=1648693&r2=1648694&view=diff
==============================================================================
--- isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md (original)
+++ isis/site/trunk/content/intro/tutorials/step-by-step-petclinic.md Wed Dec 31 13:27:33 2014
@@ -11,12 +11,10 @@ This tutorial builds a simple petclinic
 <img src="resources/petclinic/domain-model.png"></img>
 
 The above diagram was built using [yuml.me](http://yuml.me]); the DSL that defines this diagram is:
-<pre>
-[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>
+    [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]
 
 Either follow along or check out the tags from the corresponding [github repo](https://github.com/danhaywood/isis-app-petclinic).