author | Gregory Szorc <gregory.szorc@gmail.com> |
Fri, 06 Feb 2015 20:43:54 -0800 | |
changeset 24083 | 5fbb5217a6c8 |
parent 24082 | 32dabf811b39 |
child 24084 | ef06e2b1a3d1 |
--- a/mercurial/hgweb/webcommands.py Fri Feb 06 20:44:10 2015 -0800 +++ b/mercurial/hgweb/webcommands.py Fri Feb 06 20:43:54 2015 -0800 @@ -520,6 +520,16 @@ @webcommand('bookmarks') def bookmarks(web, req, tmpl): + """ + /bookmarks + ---------- + + Show information about bookmarks. + + No arguments are accepted. + + The ``bookmarks`` template is rendered. + """ i = [b for b in web.repo._bookmarks.items() if b[1] in web.repo] parity = paritygen(web.stripecount)