Changes between Version 4 and Version 5 of WebSequenceDiagramPlugin


Ignore:
Timestamp:
Jan 8, 2014, 6:51:43 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Added markup to page.

Legend:

Unmodified
Added
Removed
Modified
  • WebSequenceDiagramPlugin

    v4 v5  
    2424== Notes ==
    2525
    26 A simple macro to include a sequence diagram from www.websequencediagrams.com.
     26A simple macro to include a sequence diagram from http://www.websequencediagrams.com.
    2727
    2828== Installation via Source ==
     
    3131creating a Python egg distribution file and copying the .egg file to
    3232the Trac plugins directory. Detailed information on Python eggs can be
    33 found at: http://peak.telecommunity.com/DevCenter/PythonEggs. In
     33found at [http://peak.telecommunity.com/DevCenter/PythonEggs here]. In
    3434addition, the Easy Install package is required to create Python
    35 eggs. See http://peak.telecommunity.com/DevCenter/EasyInstall for more
     35eggs. See [http://peak.telecommunity.com/DevCenter/EasyInstall EasyInstall] for more
    3636information on using and installing Easy Install.
    3737
    3838Change to the download directory and run:
    39 
     39 {{{#!sh
    4040    python setup.py bdist_egg
    41 
     41}}}
    4242This will generate a python egg in the dist directory. Copy the egg
    4343file into the trac/plugins directory and follow the Configuration
     
    4949To enable the plugin::
    5050
     51 {{{#!ini
    5152  [components]
    5253  sequencediagram.* = enabled
    53  
     54}}}
     55 
    5456Optionally you can specify a style for the sequence diagram by adding
    5557a sequence diagram section to the trac.ini file:
    5658
     59 {{{#!ini
    5760  [sequencediagram]
    5861  style = rose
     62}}}
    5963
    6064== Example ==