##// END OF EJS Templates
webcommands: document "summary" web command
Gregory Szorc -
r24091:6b6ec887 default
parent child Browse files
Show More
@@ -700,6 +700,17 b' def branches(web, req, tmpl):'
700
700
701 @webcommand('summary')
701 @webcommand('summary')
702 def summary(web, req, tmpl):
702 def summary(web, req, tmpl):
703 """
704 /summary
705 --------
706
707 Show a summary of repository state.
708
709 Information about the latest changesets, bookmarks, tags, and branches
710 is captured by this handler.
711
712 The ``summary`` template is rendered.
713 """
703 i = reversed(web.repo.tagslist())
714 i = reversed(web.repo.tagslist())
704
715
705 def tagentries(**map):
716 def tagentries(**map):
General Comments 0
You need to be logged in to leave comments. Login now