Is there any documentation of the functions in the Mercurial cgi interface?
1 answer
Here's an annotated scan from a recent mercurial setup:
.
|-- annotate/REVID/FILEPATH # HTML: which user last edited each line of the file
|-- atom-log # XML : change feed of changelogs
|-- atom-tags # XML : change feed of tags
|-- branches # HTML: list of named branches
|-- diff/REVID/FILEPATH # HTML: show change made to file by REVID
|-- file[/REVID[/FILEPATH] # HTML: show file as it stood after REVID
|-- graph[/REVID] # HTML: log with visual connectivity graph
|-- log[/REVID/FILEPATH] # HTML: list of changesets with metadata
|-- raw-annotate/REVID/FILEPATH # TEXT: raw output version of annotate
|-- raw-file/REVID/FILEPATH # TEXT: raw output version of file
|-- raw-rev[/REVID] # TEXT: raw output version of rev
|-- rev[/REVID] # HTML: show all changes made by REVID
|-- rss-log # XML : change feed of changelogs
|-- rss-tags # XML : change feed of tags
|-- shortlog[/REVID/FILEPATH] # HTML: slightly more terse version of log
`-- tags # HTML: listing of tags
Listing methods (journal, tags, branches, graph, short journal) accept & revcount = N, which limits the length of the output.
Valid REVIDs are found using: hg help revisions
FILEPATH should go from hg root
one file, except raw-file
where directories are taken.
+4
a source to share