The DokuWiki sources are managed through Darcs 1).
Darcs is a replacement for CVS. Darcs is simple to learn and use, with a powerful new approach to meet the needs of today's distributed software projects. Darcs is decentralized, based on a “theory of patches” with roots in quantum mechanics. Darcs is free software, licensed under the GPL.
Instead of repeating things that were said elsewhere I just want to give some pointers:
To fetch the current development version of DokuWiki use the following command (This creates the directory dokuwiki for you):
darcs get --partial http://dev.splitbrain.org/darcs/dokuwiki
To update an existing checkout use this command from within the dokuwiki directory:
darcs pull
If you changed the source and want me to include it in the official release please send patches with the following commands:
darcs record darcs send
Well I'm a newbie to darcs but familiar with CVS so documenting the experience.
From a couple of hours reading around and a little playing, feels likes darcs is very easy to get started with. Managed to make a simple change, “record” it and generate a patch file which would be ready for Andi to use.
One thing further to Andi's notes above. Between these commands:
$> darcs pull
$> darcs send
Once you've made a bunch of changes (perhaps to many files), use:
$> darcs record
To “commit” those changes. Unlike CVS it doesn't actually send the files anywhere at this point though. It's more like a “local tag” for your own copy of the code.
Otherwise right now darcs isn't happy about the way mail is (or isn't) setup on my machine. The alternative seems to be;
$> darcs send -o my_doku_patch_file
…then manually email the patch (now in the file my_doku_patch_file
Anyway - like what I've seen so far. The bottom line seems to be don't think / worry too much about what darcs is conceptually - just start using it and things start make sense.
darcs also makes me wonder if a similar kind of model could be applied to wikis - some kind of distributed wiki system where the content is never “owned” by a single server.
-o switch and send the created file with your usual mail client:darcs send -o mypatch.patch
amend-record command after you sent a patch with darcs send this will most likely create conflicts! Instead just create another patch which fixes the first one.Because each checkout is its own repository people can keep their own modifications as patchsets and can still update from the “master repository”.
So how does this work in practice? Darcs can't do magic, if you change something in your local repository and the same is changed in the “master repository” you'll get a conflict - there is nothing any RCS can do about this.
However if you make minor changes that aren't touched in the upstream version you should get no problem when updating from the official repository. This is because darcs just applies patches. As long as darcs finds enough context to apply the patch it should work.
For example if you add some HTML to one of the functions in html.php you still should be able to apply the official patches to html.php by doing a simple darcs pull.
Darcs isn't only for DokuWiki developers, it can be used to get the latest stable version and to update to the next stable version when it is released.
To get a particular release of DokuWiki (replace yyyy-mm-dd with the date of the release, e.g. 2006-11-06):
darcs get --partial --tag="release yyyy-mm-dd" http://dev.splitbrain.org/darcs/dokuwiki
Unfortunately darcs contains a bug that causes problems when –partial and –tag are used together. Until the bug is fixed, it is better to leave out the partial and just use:
darcs get --tag="release yyyy-mm-dd" http://dev.splitbrain.org/darcs/dokuwiki
To update to a specific release, a release candidate or the latest release (stable):
darcs pull --tags "release yyyy-mm-dd" --all --quiet darcs pull --tags "release candidate yyyy-mm-dd" --all --quiet darcs pull --tags "release stable" --all --quiet
The –all –quiet ensures all patches are applied and darcs gets on and does its stuff without reams and reams of messages.
If you have made your own changes to DokuWiki's core codebase, it may be better to leave off the –all –quiet switches and accept each patch interactively, e.g.:
darcs pull --tags "release yyyy-mm-dd" darcs pull --tags "release candidate yyyy-mm-dd" darcs pull --tags "release stable"
At the end of the patching process DokuWiki will let you know if there were any conflicts between your changes and the patches applied to make the new version. You can then examine the files in question and make any necessary changes.
You can use the following command to keep track of the changes you have made to DokuWiki:
darcs whatsnew
When run interactively the revert command will do something similar and give you the opportunity to remove your changes if they are no longer required.
So why did I choose Darcs over CVS, Subversion or arch?
Darcs has, in my opinion, several advantages:
darcs send)There are some disadvantages though:
What I like most are the patchsets. Because each checkout is its own repository people can keep their own modifications as patchsets and can still update from my “master repository”, see the above section for a short explanation.
If darcs is not usable on your platform, you can use an alternative unofficial mercurial repository hosted on http://dokuwiki.u-strasbg.fr/ . To get a copy, clone the repository:
hg clone http://dokuwiki.u-strasbg.fr dokuwiki
Notes: