]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/todo/mercurial.mdwn
web commit by http://subvert.org.uk/~bma/: Add my thoughts on some of the issues.
[git.ikiwiki.info.git] / doc / todo / mercurial.mdwn
1 * Need to get post commit hook working (or an example of how to use it.)
2   * See below. --[[bma]]
3 * rcs_notify is not implemented
4 * Is the code sufficiently robust? It just warns when mercurial fails.
5 * When rcs_commit is called with a $user that is an openid, it will be
6   passed through to mercurial -u. Will mercurial choke on this?
7  * Nope. Mercurial doesn't expect any particular format for the username, 
8    though "Name <address@domain>" is standard. --[[bma]]
9 * The rcs_commit implementation seems not to notice if the file has been
10   changed since a web edit started. Unlike all the other frontends, which
11   use the rcstoken to detect if the web commit started editing an earlier
12   version of the file, and if so, merge the two sets of changes together.
13   It seems that with the current mercurial commit code, it will always
14   blindly overwrite the current file with the web edited version, losing
15   any other changes.
17 Posthook: in $srcdir/.hg/hrc, I have the following
19     [hooks]
20     incoming.update = hg up
21     postupdate.ikiwiki = ikiwiki --setup /path/to/ikiwiki.setup --refresh
23 This should update the working directory and run ikiwiki every time a change is recorded (someone who knows mercurial better than I do may be able to suggest a better way, but this works for me.)