wiki:TracBlockDiagPlugin

Version 8 (modified by Theodor Norup, 10 years ago) (diff)

caveat easy_install blockdiag and seqdiag

Trac BlockDiag Plugin

Description

blockdiag and seqdiag is a powerful utility to generate diagrams from simple text format.

This plugin provided wiki-processors which allow you to embed blockdiag diagrams to wiki page.

A fork of the plugin can be found here, and may be more up-to-date.

Bugs/Feature Requests

Existing bugs and feature requests for TracBlockDiagPlugin are here.

If you have any issues, create a new ticket.

Download

Download the zipped source from [download:tracblockdiagplugin here].

You may (at least on Ubuntu 14.04LTS) need to install the corresponding Python modules from http://blockdiag.com. easy_install blockdiag + easy_install seqdiag should work.

Source

You can check out TracBlockDiagPlugin from here using Subversion, or browse the source with Trac.

Example

This text will be rendered like below.

{{{
#!blockdiag(type=png)
{
   A -> B -> C;
        B -> D;
}
}}}

This text will be rendered like below.

{{{
#!seqdiag(type=png)
{
  browser  -> webserver [label = "GET /index.html"];
  browser <-- webserver;

  browser  -> webserver [label = "POST /blog/comment"];
              webserver  -> database [label = "INSERT comment"];
              webserver <-- database;
  browser <-- webserver;
}
}}}

Recent Changes

17624 by rjollos on 2019-12-13 19:38:25
Add classifiers metadata

Fixes #13687.

10913 by iwata0303 on 2011-11-14 07:12:21
10912 by iwata0303 on 2011-11-14 07:11:33
(more)

Author/Contributors

Author: iwata0303
Maintainer: iwata0303
Contributors:

Attachments (2)

Download all attachments as: .zip