vote up 2 vote down star
1

This may sound like it's not a programming related question, but stick with me here...

My team and I have found that documenting our project (a development platform w/ API) with a wiki is both useful to us and useful to the users. Due to some organizational issues, we're forced to do multi-site development without network connectivity. We've switched to a DVCS (Mercurial) and had great success with this. The wiki documentation proves to be a problem as the central site is setup with MediaWiki. The offsite people have no way to access or edit the wiki.

Is there any sort of wiki-style package which doesn't not require a server/database and will be useable in a DVCS environment?

Update: Should be open-source and cross-platform

flag

6 Answers

vote up 0 vote down check

Ended up writing my own system using python,cherrpy, and mercurial. Perhaps one day it will end up open-source. Thanks for all the suggestions.

link|flag
vote up 0 vote down

Look into Fossil it is a DVCS that contains a built in wiki and bug tracking system. This may be just what your looking for. Read the site, there is a built in webserver. You can use a CGI script to open up the connection to people (the fossil website is the fossil DVCS). After using it you may decide to move your code over to it as well. It is open source, and does have cross platform builds.

link|flag
vote up 0 vote down

ikiwiki: http://ikiwiki.info/ stores the info directly in the VCS (it supports mercurial as backend).

link|flag
vote up 1 vote down

Perhaps you should look at auto-generation of documentation from source. This way, the documentation will automatically be version controlled.

A lot of generators support adding additional documentation via plain-text files which can be added to the repository.

link|flag
I'd second this. Automatic generation - I use Doxygen - means you don't have to think using another program/interface/wiki to do your documentation. It's all right there, and it gets shared between your teams when your code does. – sparklewhiskers Feb 9 at 15:17
We're Java based and we have javadoc, but sometimes the amount of documentation and detail isn't easily written in Javadoc. – basszero Feb 9 at 15:18
@basszero: That's why I mentioned that some of these tools allow for easily adding custom docs via plain-text files... – Christoph Feb 9 at 15:21
vote up 1 vote down

I can recommend TiddlyWiki. It does not need any web servers, only a browser, stores the entire Wiki documentation in a single HTML page. This can easily be shared through Mercurial.

Edit: Check this page, it discusses how to use TiddlyWiki with DVCS. It involves using an extension dubbed SynchroTiddly.

link|flag
TiddlyWiki rocks, but it cannot be used with version control due to the way it changes/ reorders the content. I tried it. – jn Feb 9 at 14:47
Not bad, might be confusing compared to more standard multi-page style wikis and if it can't be used w/ version control... – basszero Feb 9 at 14:48
"Can't be used w/ VC" is a bit strong. Perhaps changes from one version to another are bigger than necessary, but it surely can be used with VC. – David Hanak Feb 9 at 15:04
I grant you, that merging could be an issue, though. – David Hanak Feb 9 at 15:05
vote up 1 vote down

DokuWiki stores all data in plain text files. You could install local web servers for every developer and use your VC system to sync between developers.

link|flag
May be tricky to get this all setup, I'll have to see what the Doku data directory looks like. Maybe we can have one server per site and have a master at each site do the merges/pushes – basszero Feb 9 at 14:50
Probaby be hard to ship this to a customer who will certainly not have a webserver w/ DokuWiki. Hopefully there is a plugin to dump static content – basszero Feb 9 at 14:54

Your Answer

Get an OpenID
or

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