# HG changeset patch # User FUJIWARA Katsunori # Date 1394516200 -32400 # Node ID 401f9b661a2d90dd6c933034addd5a9a5253c734 # Parent a61ed1c2d7a70c6cc8c4a592f6d32dafc901361f doc: show short description of each commands in generated documents Before this patch, short description of each commands is not shown in generated documents (HTML file and UNIX man page). This omitting may prevent users from understanding about commands. This patch show it as the 1st paragraph in the help section of each commands. This style is chosen because: - showing it as the section title in "command - short desc" style disallows referencing by "#command" in HTML file: in "en" locale, hyphen concatenated title is used as the section ID in HTML file for this style - showing it as the 1st paragraph in "command - short desc" style seems to be redundant: "command" appears also just before as the section title - showing it just after synopsis like "hg help command" seems not to be reasonable in UNIX man page This patch just writes short description ("d['desc'][0]") before "::", because it should be already "strip()"-ed in "get_desc()", or empty string for the command without description. diff -r a61ed1c2d7a7 -r 401f9b661a2d doc/gendoc.py --- a/doc/gendoc.py Wed Mar 12 13:31:27 2014 -0400 +++ b/doc/gendoc.py Tue Mar 11 14:36:40 2014 +0900 @@ -156,6 +156,8 @@ continue d = get_cmd(h[f], cmdtable) ui.write(sectionfunc(d['cmd'])) + # short description + ui.write(d['desc'][0]) # synopsis ui.write("::\n\n") synopsislines = d['synopsis'].splitlines()