##// END OF EJS Templates
webcommands: document "bookmarks" web command
Gregory Szorc -
r24083:5fbb5217 default
parent child Browse files
Show More
@@ -520,6 +520,16 b' def tags(web, req, tmpl):'
520
520
521 @webcommand('bookmarks')
521 @webcommand('bookmarks')
522 def bookmarks(web, req, tmpl):
522 def bookmarks(web, req, tmpl):
523 """
524 /bookmarks
525 ----------
526
527 Show information about bookmarks.
528
529 No arguments are accepted.
530
531 The ``bookmarks`` template is rendered.
532 """
523 i = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
533 i = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
524 parity = paritygen(web.stripecount)
534 parity = paritygen(web.stripecount)
525
535
General Comments 0
You need to be logged in to leave comments. Login now