# HG changeset patch # User Gregory Szorc # Date 2015-02-07 05:51:52 # Node ID 6b6ec887c79bf36bf2441d6a3e3ac0ebde3f5217 # Parent a86b2922ea308c945581187aa769a16dd5e846f4 webcommands: document "summary" web command diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -700,6 +700,17 @@ def branches(web, req, tmpl): @webcommand('summary') def summary(web, req, tmpl): + """ + /summary + -------- + + Show a summary of repository state. + + Information about the latest changesets, bookmarks, tags, and branches + is captured by this handler. + + The ``summary`` template is rendered. + """ i = reversed(web.repo.tagslist()) def tagentries(**map):