]>
Tony Duckles's Git Repositories (git.nynim.org) - svn2svn.git/blob - svn2svn/run/parse.py
1 """ optparser helper functions """
6 class HelpFormatter(optparse
.IndentedHelpFormatter
):
8 Modified version of certain optparse.IndentedHelpFormatter methods:
9 * Respect line-breaks in parser.desription and option.help_text
10 * Vertically-align long_opts
11 Inspired by: http://groups.google.com/group/comp.lang.python/browse_thread/thread/6df6e6b541a15bc2/09f28e26af0699b1?pli=1
13 def format_description(self
, description
):
14 if not description
: return ""
15 desc_width
= self
.width
- self
.current_indent
16 indent
= " "*self
.current_indent
17 bits
= description
.split('\n')
21 initial_indent
=indent
,
22 subsequent_indent
=indent
)
24 result
= "\n".join(formatted_bits
) + "\n"
27 def format_option_strings(self
, option
):
28 """Return a comma-separated list of option strings & metavariables."""
29 if option
.takes_value():
30 metavar
= option
.metavar
or option
.dest
.upper()
31 short_opts
= [("%s" % (sopt
)) if option
._long
_opts
else \
32 (self
._short
_opt
_fmt
% (sopt
, metavar
))
33 for sopt
in option
._short
_opts
]
34 long_opts
= [self
._long
_opt
_fmt
% (lopt
, metavar
)
35 for lopt
in option
._long
_opts
]
37 short_opts
= option
._short
_opts
38 long_opts
= option
._long
_opts
40 return (" " if not short_opts
else "")+(", ".join(short_opts
+ long_opts
))
42 def format_option(self
, option
):
44 opts
= self
.option_strings
[option
]
45 opt_width
= self
.help_position
- self
.current_indent
- 2
46 if len(opts
) > opt_width
:
47 opts
= "%*s%s\n" % (self
.current_indent
, "", opts
)
48 indent_first
= self
.help_position
49 else: # start help on same line as opts
50 opts
= "%*s%-*s " % (self
.current_indent
, "", opt_width
, opts
)
54 help_text
= self
.expand_default(option
)
56 for para
in help_text
.split("\n"):
57 help_lines
.extend(textwrap
.wrap(para
, self
.help_width
))
58 result
.append("%*s%s\n" % (indent_first
, "", help_lines
[0]))
59 result
.extend(["%*s%s\n" % (self
.help_position
, "", line
)
60 for line
in help_lines
[1:]])
61 elif opts
[-1] != "\n":
63 return "".join(result
)
65 def format_usage(self
, usage
):