Changes between Version 25 and Version 26 of PlantUmlMacro


Ignore:
Timestamp:
Jun 16, 2015, 12:18:09 AM (9 years ago)
Author:
Ryan J Ollos
Comment:

Examples applicable to version 2.0.

Legend:

Unmodified
Added
Removed
Modified
  • PlantUmlMacro

    v25 v26  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 {{{
    4 #!NewsFlash
    5 '''Status'''
     3{{{#!NewsFlash
     4**News**
    65
    7 The trunk is a development version that works with Trac 0.11 and later. The code is thought to be stable, but please be ready to do some testing and report defects if you intend to install it on a production system. A tag will be created for version 2.0 when the code is known to be stable. Posting a note to #9958 about your experience using the plugin would be very appreciated.
    8 
    9 '''Planned Enhancements'''
    10  * Work towards v2.0, improving documentation and fixing minor defects.
    11  * Render plantuml files from repository #7053.
     62015-06-15: Version 2.0 has been released, supporting Trac 0.11 and later.
    127}}}
    138
     
    4035  1. '''Note''':
    4136     1. Below instructions should be specific to some operating systems. Please help expanding these instructions.
    42      1. Broader installation guidelines are made available at [http://trac.edgewall.org/wiki/TracPlugins TracPlugins].
    43      1. Unused sections are for future use and are suggested to be commented out. For example:
    44         {{{
    45         {{{
    46         #!comment
    47         1. '''Check''' dependencies:
    48            i. none required
    49         }}}       
    50         }}}
     37     1. Broader installation guidelines are made available at TracPlugins.
    5138     1. `[sudo]` is optional in case you already have enough authorisation to modify your server.
    5239     [[BR]]
     
    11299 1. As a !WikiProcessor with markup:
    113100 {{{
    114 {{{#!plantuml
     101{{{#!PlantUml
    115102@startuml
    116103Alice -> Bob: Authentication Request
     
    125112 [[Image(sequence.PNG)]]
    126113
    127  2. Documentation can be found on the WikiMacros page after installing the macro.
     114 2. As a !WikiProcess rendering files from the repository:
     115 {{{
     116{{{#!plantuml path="/path/to/repository"
     117...
     118}}}
    128119
    129  3. More information on the PlantUML language and different types of UML diagrams can be found on the [http://plantuml.sourceforge.net/sources.html PlantUML Website].
     120{{{#!plantuml path="/repos/path/to/repository@rev"
     121...
     122}}}
     123}}}
     124
     125 3. As a macro rendering files from the repository:
     126 {{{
     127[[PlantUml(/path/to/repository)]]
     128[[PlantUml(/path/to/repository@rev)]]
     129}}}
     130
     131Additional documentation can be found on the WikiMacros page after installing the macro. More information on the PlantUML language and different types of UML diagrams can be found on the [http://plantuml.sourceforge.net/sources.html PlantUML Website].
    130132
    131133== Recent Changes