Changes between Initial Version and Version 1 of PlantUmlMacro


Ignore:
Timestamp:
Mar 15, 2012, 6:56:00 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Contnent moved from TracPlantUmlPlugin. For previous page history, see wiki/TracPlantUmlPlugin.

Legend:

Unmodified
Added
Removed
Modified
  • PlantUmlMacro

    v1 v1  
     1[[PageOutline(2-5,Contents,pullout)]]
     2
     3= Trac PlantUML Plugin =
     4
     5== Description ==
     6
     7[http://plantuml.sourceforge.net/ PlantUML] is a java utility that allows generation of different types of UML diagrams (sequence, activity, state, use cases, ...) from a simple text description file.
     8
     9This plugin allows the integration of PlantUML on Trac Wiki pages, dynamically generating and embedding the diagrams.
     10
     11== Dependencies ==
     12
     13The plugin depends on [http://plantuml.sourceforge.net/download.html PlantUML compiled jar] being installed on the system, a valid Java runtime, and [http://www.graphviz.org/ Graphviz] installed and [http://plantuml.sourceforge.net/graphvizdot.html correctly configured] (these are dependencies for PlantUML itself)
     14
     15== Configuration ==
     16
     17The following entry must be added to trac.ini:
     18
     19{{{
     20[components]
     21...
     22plantuml.* = enabled
     23
     24
     25[plantuml]
     26plantuml_jar = /path/to/plantuml.jar
     27java_bin = /path/to/java_bin (optional, if Java binary is not on the search path)
     28}}}
     29
     30== Bugs/Feature Requests ==
     31
     32Existing bugs and feature requests for PlantUmlMacro are
     33[report:9?COMPONENT=PlantUmlMacro here].
     34
     35If you have any issues, create a
     36[http://trac-hacks.org/newticket?component=PlantUmlMacro&cc=rjollos&owner=airadier new ticket].
     37
     38== Download ==
     39
     40Download the zipped source from [download:plantumlmacro here].
     41
     42== Source ==
     43
     44You can check out PlantUmlMacro from [http://trac-hacks.org/svn/plantumlmacro here] using Subversion, or [source:plantumlmacro browse the source] with Trac.
     45
     46== Example ==
     47
     48Use with:
     49
     50{{{
     51{{{
     52#!PlantUML
     53@startuml
     54Alice -> Bob: Authentication Request
     55Bob --> Alice: Authentication Response
     56Alice -> Bob: Another authentication Request
     57Alice <-- Bob: another authentication Response
     58@enduml
     59}}}
     60}}}
     61
     62results in something like:
     63
     64[[Image(sequence.PNG)]]
     65
     66More information on the PlantUML language can be found in [http://plantuml.sourceforge.net/sources.html PlantUML Website]
     67
     68== Recent Changes ==
     69
     70[[ChangeLog(plantumlmacro, 3)]]
     71
     72== Author/Contributors ==
     73
     74'''Author:''' [wiki:airadier] [[BR]]
     75'''Maintainers:''' [wiki:airadier], rjollos [[BR]]
     76'''Contributors:'''