Mercurial > public > mercurial-scm > hg
diff doc/gendoc.py @ 11321:40c06bbf58be
help: show value requirement and multiple occurrence of options
this helps users to know what kind of option is:
- no value is required(flag option)
- value is required
- value is required, and multiple occurrences are allowed
each kinds are shown as below:
-f --force force push
-e --ssh CMD specify ssh command to use
-b --branch BRANCH [+] a specific branch you would like to push
if one or more 3rd type options are shown, explanation for '[+]' mark
is also shown as footnote.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Sun, 06 Jun 2010 17:25:00 +0900 |
parents | 08a0f04b56bd |
children | 2d88369a27bf |
line wrap: on
line diff
--- a/doc/gendoc.py Wed Jun 09 12:45:48 2010 +0100 +++ b/doc/gendoc.py Sun Jun 06 17:25:00 2010 +0900 @@ -25,7 +25,11 @@ return (shortdesc, desc) def get_opts(opts): - for shortopt, longopt, default, desc in opts: + for opt in opts: + if len(opt) == 5: + shortopt, longopt, default, desc, optlabel = opt + else: + shortopt, longopt, default, desc = opt allopts = [] if shortopt: allopts.append("-%s" % shortopt)