~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_man.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 21:57:35 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730215735-31c47c2281f7f4e4
generate_docs (man/rstx): get help with .help() method, otherwise help for merge incomplete

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
    """Provides long help for each public command"""
104
104
    subsection_header = '.SS "%s"\n' % (bzrlib.help.command_usage(cmd))
105
105
    doc = "%s\n" % (cmd.__doc__)
106
 
    docsplit = cmd.__doc__.split('\n')
107
 
    doc = '\n'.join([docsplit[0]] + [line[4:] for line in docsplit[1:]])
 
106
    doc = cmd.help()
108
107
 
109
108
    option_str = ""
110
109
    options = cmd.options()
167
166
.B "help"
168
167
.I "command"
169
168
.SH "DESCRIPTION"
170
 
Bazaar (or
171
 
.B "%(bzrcmd)s"
172
 
) is a project of Canonical to develop an open source distributed version control system that is powerful, friendly, and scalable. Version control means a system that keeps track of previous revisions of software source code or similar information and helps people work on it in teams.
 
169
Bazaar (or %(bzrcmd)s) is a project of Canonical to develop an open source
 
170
distributed version control system that is powerful, friendly, and scalable.
 
171
Version control means a system that keeps track of previous revisions
 
172
of software source code or similar information and helps people work on it in teams.
173
173
"""
174
174
 
175
175
man_foot = """\