Is there a wiki that also contains architectural diagrams? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:35:23Z http://stackoverflow.com/feeds/question/120301 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams 10 Is there a wiki that also contains architectural diagrams? JeroenWyseur 2008-09-23T10:51:51Z 2009-11-04T16:58:02Z <p>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.</p> <p>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.</p> <p>Do you know of any wiki's that have that functionality?</p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120323#120323 2 Answer by Greg Hewgill for Is there a wiki that also contains architectural diagrams? Greg Hewgill 2008-09-23T10:58:54Z 2008-09-23T10:58:54Z <p><a href="http://ikiwiki.info" rel="nofollow">ikiwiki</a> supports a <a href="http://ikiwiki.info/plugins/graphviz/" rel="nofollow">graphviz</a> plugin. It's neither ajax nor flash, but graphviz input files are plain text which makes them easy for anybody to edit.</p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120338#120338 2 Answer by Frans for Is there a wiki that also contains architectural diagrams? Frans 2008-09-23T11:02:49Z 2008-09-23T11:02:49Z <p>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.</p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120365#120365 1 Answer by Chii for Is there a wiki that also contains architectural diagrams? Chii 2008-09-23T11:12:55Z 2008-09-23T11:12:55Z <p>try using this <a href="http://websequencediagrams.com/" rel="nofollow">http://websequencediagrams.com/</a> and copy the url into the wiki - works for all wikis that support img linking. </p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120577#120577 11 Answer by Steve Hanov for Is there a wiki that also contains architectural diagrams? Steve Hanov 2008-09-23T12:10:45Z 2008-09-23T12:10:45Z <p><a href="http://www.websequencediagrams.com" rel="nofollow">websequencediagrams.com</a> 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.</p> <p>&lt;div class=wsd wsd_style="modern-blue" >&lt;pre></p> <pre> Alice->Bob: Programming Question Bob->StackOverflow: (forward request) StackOverflow-->Bob: Bob-->Alice: answer note right of Bob: he he he! </pre> <p>&lt;/pre>&lt;/div>&lt;script type="text/javascript" src="http://www.websequencediagrams.com/service.js">&lt;/script></p> <p>Result:</p> <p><img src="http://www.websequencediagrams.com/cgi-bin/cdraw?lz=QWxpY2UtPkJvYjogUHJvZ3JhbW1pbmcgUXVlc3Rpb24KQm9iLT5TdGFja092ZXJmbG93OiAoZm9yd2FyZCByZXF1ZXN0KQoAFA0tAEoGADYFLT4AXQU6IGFuc3dlcgpub3RlIHJpZ2h0IG9mIAByBWhlIGhlIGhlIQo&amp;s=modern-blue"></p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/132913#132913 4 Answer by Sam Hasler for Is there a wiki that also contains architectural diagrams? Sam Hasler 2008-09-25T12:10:14Z 2008-09-25T15:15:17Z <p><a href="http://twiki.org" rel="nofollow">TWiki</a> with the <a href="http://twiki.org/cgi-bin/view/Plugins/TWikiDrawPlugin" rel="nofollow">TWikiDrawPlugin</a></p> <p><a href="http://twiki.org/p/pub/Plugins/TWikiDrawPlugin/example.gif967" rel="nofollow"><img src="http://twiki.org/p/pub/Plugins/TWikiDrawPlugin/example.gif" width="670" height="315"></a></p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/1674228#1674228 0 Answer by zioalex for Is there a wiki that also contains architectural diagrams? zioalex 2009-11-04T14:48:16Z 2009-11-04T14:48:16Z <p>With MediaWiki you can use this Extension:</p> <p><a href="http://www.mediawiki.org/wiki/Extension%3AUML" rel="nofollow">UML Extension</a></p> http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/1675066#1675066 0 Answer by Chris Chedgey for Is there a wiki that also contains architectural diagrams? Chris Chedgey 2009-11-04T16:39:55Z 2009-11-04T16:58:02Z <p>For defining dependency/layering rules visually you could try <a href="http://www.headwaysoftware.com" rel="nofollow">structure101</a>. 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. </p> <p>A cell should only depend on cells lower in the diagram, else they are flagged as a violation:</p> <p><img src="http://www.headwaysoftware.com/help/java/diagrams-viewer2.png" alt="alt text"></p>