diff --git a/Makefile b/Makefile index 2304869..666c832 100644 --- a/Makefile +++ b/Makefile @@ -77,10 +77,12 @@ testupdate: sh tools/testupdate.sh web: $(BALL_TAR_GZ) CHECKSUM.MD5 - cp $(BALL_TAR_GZ) $(ZIPBALL) CHECKSUM.MD5 oldversion.html umlgraph-banner.png $(WEBDIR) + cp $(BALL_TAR_GZ) $(ZIPBALL) CHECKSUM.MD5 $(WEBDIR) + (cd web && sh build.sh) + cp web/build/*.* $(WEBDIR) + sed "s/VERSION/$(VERSION)/g" web/build/download.html >$(WEBDIR)/download.html cp $(JARFILE) $(WEBDIR)/jars/UmlGraph-$(VERSION).jar tar cf - javadoc | tar -C $(WEBDIR) -xvf - - sed "s/VERSION/$(VERSION)/g" index.html >$(WEBDIR)/index.html CHECKSUM.MD5: $(BALL_TAR_GZ) $(JARFILE) md5 UMLGraph-2.10.* UMLGraph-4.8.* UMLGraph-$(VERSION).* >CHECKSUM.MD5 diff --git a/index.html b/index.html deleted file mode 100644 index 359e6f5..0000000 --- a/index.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - -
-
-
-UMLGraph allows the declarative specification and drawing of
-UML class and sequence diagrams.
-The current features
-are part of an ongoing effort aiming to provide support for
-all types UML diagrams.
-An IEEE Software article titled
-On the declarative specification of models
-explains the rationale behind this approach.
-The tehnology behind UMLGraph was used to draw many of the diagrams
-appearing in the award-winning books
-Code Quality: The Open Source Perspective (Addison Wesley, 2006) and
-Code Reading: The Open Source Perspective (Addison Wesley, 2003).
-In addition,
-the UMLGraphDoc doclet included in this distribution automatically
-adds UML diagrams to javadoc documentation;
-you can find a short and clear
-tutorial on how to automatically document your project with UML diagrams
-on DZone's Javalobby.
-
-
-Many programs build on UMLGraph; follow this link
-for more details.
-In addition,
-Martin Fowler, the author of
-UML Distilled, writes:
--I thought I'd send you a note saying how much I enjoyed discovering UML Graph. I've long fancied a text based way of describing UML diagrams, but never felt sufficiently time-rich to develop anything. --Martin has created a -bliki entry -describing his ideas of what an ideal textual language might look like. - -
-
-class Person {
- String Name;
-}
-
-class Employee extends Person {}
-
-class Client extends Person {}
-
- |
-
- |
--# Define the objects -object(O,"o:Toolkit"); -placeholder_object(P); -step(); - -# Activation and messages -active(O); -message(O,O,"callbackLoop()"); -create_message(O,P,"p:Peer"); -message(O,P,"handleExpose()"); -active(P); -return_message(P,O,""); -inactive(P); -destroy_message(O,P); -inactive(O); - -# Complete the lifeline of O -step(); -complete(O); -- |
-
- |
-Unless otherwise expressly stated, all original material on this page created by Diomidis Spinellis is licensed under a Creative Commons Attribution-Share Alike 3.0 Greece License.
-
-Unless otherwise expressly stated, all original material on this page created by Diomidis Spinellis is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 2.5 License.
-
-