~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/doc_generate/autodoc_man.py

  • Committer: Andrew Bennetts
  • Date: 2009-09-08 08:09:25 UTC
  • mto: (4634.6.27 2.0)
  • mto: This revision was merged to the branch mainline in revision 4680.
  • Revision ID: andrew.bennetts@canonical.com-20090908080925-ccmjw4kzzz7bepg7
Fix more tests to cope with new commit_write_group strictness.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
171
171
man_head = """\
172
172
.TH bzr 1 "%(datestamp)s" "%(version)s" "Bazaar"
173
173
.SH "NAME"
174
 
%(bzrcmd)s - Bazaar next-generation distributed version control
 
174
Bazaar (%(bzrcmd)s) - next-generation distributed version control
175
175
.SH "SYNOPSIS"
176
176
.B "%(bzrcmd)s"
177
177
.I "command"
186
186
.B "help"
187
187
.I "command"
188
188
.SH "DESCRIPTION"
189
 
 
190
 
Bazaar (or %(bzrcmd)s) is a distributed version control system that is powerful, 
191
 
friendly, and scalable.  Bazaar is a project of Canonical Ltd and part of 
192
 
the GNU Project to develop a free operating system.
193
 
 
194
 
Bazaar keeps track of changes to software source code (or similar information);
195
 
lets you explore who changed it, when, and why; merges concurrent changes; and
196
 
helps people work together in a team.
 
189
Bazaar (or %(bzrcmd)s) is a project of Canonical to develop an open source
 
190
distributed version control system that is powerful, friendly, and scalable.
 
191
Version control means a system that keeps track of previous revisions
 
192
of software source code or similar information and helps people work on it in teams.
197
193
"""
198
194
 
199
195
man_foot = """\
245
241
.br
246
242
log10 = log --short -r -10..-1
247
243
.SH "SEE ALSO"
248
 
.UR http://bazaar.canonical.com/
249
 
.BR http://bazaar.canonical.com/
 
244
.UR http://www.bazaar-vcs.org/
 
245
.BR http://www.bazaar-vcs.org/
250
246
"""
251
247