]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/mercurial.mdwn
web commit by ManojSrivastava: Second the wishlist
[ikiwiki.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.
16
17 Posthook: in $srcdir/.hg/hrc, I have the following
18
19     [hooks]
20     incoming.update = hg up
21     update.ikiwiki = ikiwiki --setup /path/to/ikiwiki.setup --refresh
22
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.)
24
25 > Try running it with --post-commit instead of --refresh. That should
26 > work better, handling both the case where the edit was made via the web
27 > and then committed, and the case where a commit was made directly.
28 > It can deadlock if the post-commit hook runs with --refresh in the
29 > former case. --[[Joey]]