]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/example_Mercurial_historyurl_doesn__39__t_show_file_history.mdwn
uh oh, this affects link deps
[ikiwiki.git] / doc / bugs / example_Mercurial_historyurl_doesn__39__t_show_file_history.mdwn
1 The Mercurial historyurl in the example ikiwiki.setup file creates a link to the repo's summary page.  It should take you to the history page for the file, like the example Git historyurl does.
2
3 The current historyurl is:
4
5     #historyurl => "http://localhost:8000/", # hg serve'd local repository
6
7 A link to the history page for the file would be:
8
9     #historyurl => "http://localhost:8000/log/tip/\[[file]]", # hg serve'd local repository
10
11 *The backslash in the code should be removed.*
12
13 > To escape a link, use `\\[[link]]`. Example: \[[link]] --[[Joey]]
14
15 > ([[done]], BTW)
16
17 This creates links to the hgweb page which is equivalent to the Git file history page.