# HG changeset patch # User Gregory Szorc # Date 1423289310 28800 # Node ID 9c810d46a093b5d2519279531670f7859525d7fb # Parent c8639f90a715dd84b73b12e82c6e49668c66255e webcommands: document "annotate" web command diff -r c8639f90a715 -r 9c810d46a093 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Fri Feb 06 22:06:44 2015 -0800 +++ b/mercurial/hgweb/webcommands.py Fri Feb 06 22:08:30 2015 -0800 @@ -925,6 +925,14 @@ @webcommand('annotate') def annotate(web, req, tmpl): + """ + /annotate/{revision}/{path} + --------------------------- + + Show changeset information for each line in a file. + + The ``fileannotate`` template is rendered. + """ fctx = webutil.filectx(web.repo, req) f = fctx.path() parity = paritygen(web.stripecount)