~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr_man.py

Update for .bazaar.conf [Hans Ulrich Niedermann]

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
"""
167
167
 
168
168
man_foot = """\
 
169
.SH "EXAMPLES"
 
170
See
 
171
.UR http://bazaar.canonical.com/IntroductionToBzr
 
172
.BR http://bazaar.canonical.com/IntroductionToBzr
169
173
.SH "ENVIRONMENT"
170
174
.TP
 
175
.I "BZR_HOME"
 
176
Per-user \'home\' directory. Default on Unix like systems is
 
177
.I "~"
 
178
.TP
171
179
.I "BZRPATH"
172
180
Path where
173
181
.B "%(bzrcmd)s"
174
182
is to look for external command.
175
183
.TP
176
184
.I "BZREMAIL"
177
 
E-Mail address of the user. Overrides
178
 
.I "~/.bzr.conf/email" and
 
185
E-Mail address of the user. Overrides settings from
 
186
.I "~/.bazaar/bazaar.conf" and
179
187
.IR "EMAIL" .
180
188
Example content:
181
 
.I "John Doe <john@example.com>"
 
189
  John Doe <john@example.com>
182
190
.TP
183
191
.I "EMAIL"
184
 
E-Mail address of the user. Overridden by the content of the file
185
 
.I "~/.bzr.conf/email"
 
192
E-Mail address of the user. Overridden by the settings in the file
 
193
.I "~/.bazaar/bazaar.conf"
186
194
and of the environment variable
187
195
.IR "BZREMAIL" .
188
196
.SH "FILES"
189
197
.TP
190
 
.I "~/.bzr.conf/"
 
198
.I "~/.bazaar/"
191
199
Directory where all the user\'s settings are stored.
192
200
.TP
193
 
.I "~/.bzr.conf/email"
194
 
Stores name and email address of the user. Overrides content of
 
201
.I "~/.bazaar/bazaar.conf"
 
202
Stores default settings like name and email address of the
 
203
user. Settings in this file override the content of
195
204
.I "EMAIL"
196
205
environment variable. Example content:
197
 
.I "John Doe <john@example.com>"
 
206
 
 
207
  [DEFAULT]
 
208
  email=John Doe <john@example.com>
 
209
  editor=/usr/bin/vim
 
210
  check_signatures=check-available
 
211
  create_signatures=when-required
 
212
 
198
213
.SH "SEE ALSO"
199
214
.UR http://www.bazaar-ng.org/
200
215
.BR http://www.bazaar-ng.org/,
201
216
.UR http://www.bazaar-ng.org/doc/
202
 
.BR http://www.bazaar-ng.org/doc/
 
217
.BR http://www.bazaar-ng.org/doc/,
 
218
.UR http://bazaar.canonical.com/BzrDocumentation
 
219
.BR http://bazaar.canonical.com/BzrDocumentation
203
220
"""
204
221
 
205
222
def main():