##// END OF EJS Templates
webcommands: document "annotate" web command
Gregory Szorc -
r24094:9c810d46 default
parent child Browse files
Show More
@@ -925,6 +925,14 b' def comparison(web, req, tmpl):'
925
925
926 @webcommand('annotate')
926 @webcommand('annotate')
927 def annotate(web, req, tmpl):
927 def annotate(web, req, tmpl):
928 """
929 /annotate/{revision}/{path}
930 ---------------------------
931
932 Show changeset information for each line in a file.
933
934 The ``fileannotate`` template is rendered.
935 """
928 fctx = webutil.filectx(web.repo, req)
936 fctx = webutil.filectx(web.repo, req)
929 f = fctx.path()
937 f = fctx.path()
930 parity = paritygen(web.stripecount)
938 parity = paritygen(web.stripecount)
General Comments 0
You need to be logged in to leave comments. Login now