vote up 10 vote down star
4

I like a wiki to contain information that needs to be known within a team. Having the expression in mind, "A picture is worth a thousand words", I would like to make a small class diagram, sequence diagram or component diagram inside a wiki using an ajax or flash plugin.

We currently don't do any technical design because they are often lost in some program or out dated. Being able to put these in a wiki (and update them there) would make them useful again.

Do you know of any wiki's that have that functionality?

flag

7 Answers

vote up 11 vote down check

websequencediagrams.com also works with Confluence and Trac as well as output to images. If your wiki lets you insert raw html, you can include the diagram right in the page. That way, the diagram automatically updates.

<div class=wsd wsd_style="modern-blue" ><pre>

Alice->Bob: Programming Question
Bob->StackOverflow: (forward request)
StackOverflow-->Bob:
Bob-->Alice: answer
note right of Bob: he he he!

</pre></div><script type="text/javascript" src="http://www.websequencediagrams.com/service.js"></script>

Result:

link|flag
Yes, having found this I'm now using it. It's a shame we can't go from the weird URL to the original text - I had to modify redmine to allow entering of raw HTML to get this to work. – Jim T Sep 25 '08 at 12:16
Now the site gives you an option to "Link to this page" so you can get back the original text from the weird url. – Steve Hanov Sep 26 '08 at 2:09
Awesome tool! Thanks a lot for sharing. – Niklas Dec 11 '08 at 8:44
vote up 0 vote down

For defining dependency/layering rules visually you could try structure101. Has the advantage that the diagrams are not just graphics - plug it into your build and it will check the code against the diagram and flag violations. There's also an IDE plugin that will warn developers if code changes break the architecture. It works off a light web application so I guess you could just link to it from your wiki. The web app and IDE plugins are free but you need at least one client license to create and maintain your architecture diagrams.

A cell should only depend on cells lower in the diagram, else they are flagged as a violation:

alt text

link|flag
vote up 0 vote down

With MediaWiki you can use this Extension:

UML Extension

link|flag
vote up 4 vote down

TWiki with the TWikiDrawPlugin

link|flag
vote up 1 vote down

try using this http://websequencediagrams.com/ and copy the url into the wiki - works for all wikis that support img linking.

link|flag
vote up 2 vote down

We use Confluence from Atlassian (see www.atlassian.com). In there is a component called Gliffy for making diagrams. It works great. It's not free software.

link|flag
A pity that it is not free. Seems really nice and would be better than the solution I accepted. – JeroenWyseur Sep 23 '08 at 13:28
vote up 2 vote down

ikiwiki supports a graphviz plugin. It's neither ajax nor flash, but graphviz input files are plain text which makes them easy for anybody to edit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.