-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
290 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
20.1.1 (2020-01-09) | ||
------------------ | ||
|
||
- Change print mode to print rendered output | ||
- Added new format PlantUML class diagram to replace the old print/debug mode | ||
|
||
20.1 (2020-01-07) | ||
------------------ | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Changelog | ||
========= | ||
|
||
.. include:: ../CHANGES.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@startuml | ||
|
||
class Items { | ||
+item : item[] | ||
} | ||
Items +-- item | ||
class item { | ||
+productName : xsd:string | ||
+quantity : xsd:positiveInteger | ||
+USPrice : xsd:decimal | ||
+comment : comment | ||
+shipDate : xsd:date | ||
+partNum : xsd:string | ||
} | ||
class PurchaseOrderType { | ||
+shipTo : USAddress | ||
+billTo : USAddress | ||
+comment : comment | ||
+items : Items | ||
+orderDate : xsd:date | ||
} | ||
class USAddress { | ||
+name : xsd:string | ||
+street : xsd:string | ||
+city : xsd:string | ||
+state : xsd:string | ||
+zip : xsd:decimal | ||
+country : xsd:NMTOKEN | ||
} | ||
class comment { | ||
+value : xsd:string | ||
} | ||
class purchaseOrder { | ||
} | ||
purchaseOrder *- PurchaseOrderType | ||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.