~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/autodoc_rstx.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-01 20:07:49 UTC
  • mfrom: (1711.2.112 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060801200749-e0bd496331bb4d2b
(bialix) Create a nice win32 installer

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
::
105
105
""" % (usage, '-'*len(usage))
106
106
 
107
 
    docsplit = cmd.__doc__.split('\n')
108
 
    doc = '\n'.join([' '*4 + docsplit[0]] + docsplit[1:])
 
107
    docsplit = cmd.help().split('\n')
 
108
    doc = '\n'.join([' '*4+line for line in docsplit])
109
109
        
110
110
    option_str = ""
111
111
    options = cmd.options()
124
124
            # correct indenting and wrapping.
125
125
            wrapped = textwrap.fill(l, initial_indent='',
126
126
                                    subsequent_indent=30*' ')
127
 
            option_str = option_str + wrapped + '\n'       
128
 
    return subsection_header + option_str + "\n" + doc + "\n"
 
127
            option_str = option_str + wrapped + '\n'
 
128
 
 
129
    aliases_str = ""
 
130
    if cmd.aliases:
 
131
        if len(cmd.aliases) > 1:
 
132
            aliases_str += '\n    Aliases: '
 
133
        else:
 
134
            aliases_str += '\n    Alias: '
 
135
        aliases_str += ', '.join(cmd.aliases)
 
136
        aliases_str += '\n'
 
137
 
 
138
    return subsection_header + option_str + aliases_str + "\n" + doc + "\n"
129
139
 
130
140
 
131
141
##
138
148
.. Generation time: %(timestamp)s
139
149
 
140
150
=============================================
141
 
Man page for %(bzrcmd)s (bazaar-ng)
 
151
Man page for Bazaar (%(bzrcmd)s)
142
152
=============================================
143
153
 
144
154
:Date: %(datestamp)s
153
163
rstx_head = """\
154
164
Name
155
165
====
156
 
%(bzrcmd)s - bazaar-ng next-generation distributed version control
 
166
Bazaar (%(bzrcmd)s) - next-generation distributed version control
157
167
 
158
168
Synopsis
159
169
========
166
176
 
167
177
Description
168
178
===========
169
 
bazaar-ng (or **%(bzrcmd)s**) is a project of Canonical to develop
 
179
Bazaar (or **%(bzrcmd)s**) is a project of Canonical to develop
170
180
an open source distributed version control system that is powerful,
171
181
friendly, and scalable. Version control means a system
172
182
that keeps track of previous revisions of software source code
186
196
**EMAIL**
187
197
                E-Mail address of the user. Overriddes default user config.
188
198
 
 
199
**BZR_EDITOR**
 
200
                Editor for editing commit messages
 
201
 
 
202
**EDITOR**
 
203
                Editor for editing commit messages
 
204
 
 
205
**BZR_PLUGIN_PATH**
 
206
                Paths where bzr should look for plugins
 
207
 
 
208
**BZR_HOME**
 
209
                Home directory for bzr
 
210
 
 
211
 
189
212
Files
190
213
=====
191
214
 
192
 
**On Linux**:  ``~/.bazaar/bazaar.conf/``
 
215
**On Linux**:  ``~/.bazaar/bazaar.conf``
193
216
 
194
217
**On Windows**: ``C:\\Documents and Settings\\username\\Application Data\\bazaar\\2.0\\bazaar.conf``
195
218
 
196
 
Contains the default user config. Only one section, ``[DEFAULT]`` is allowed.
197
 
A typical default config file may be similiar to::
198
 
 
199
 
    [DEFAULT]
200
 
    email=John Doe <jdoe@isp.com>
 
219
Contains the users default configuration. The section ``[DEFAULT]`` is
 
220
used to define general configuration that will be applied everywhere.
 
221
The section ``[ALIASES]`` can be used to create command aliases for
 
222
commonly used options.
 
223
 
 
224
A typical config file might look something like::
 
225
 
 
226
  [DEFAULT]
 
227
  email=John Doe <jdoe@isp.com>
 
228
 
 
229
  [ALIASES]
 
230
  commit = commit --strict
 
231
  log10 = log --short -r -10..-1
201
232
 
202
233
 
203
234
See also
207
238
--------------------
208
239
 
209
240
.. Contents::
210
 
        **Index**
 
241
    **Index**
211
242
"""