~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/option.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-12 18:16:35 UTC
  • mfrom: (1185.84.3 bundles)
  • Revision ID: pqm@pqm.ubuntu.com-20060612181635-930f7114f61dbfcb
Hide diffs for old revisions in bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005 by Canonical Ltd
 
1
# Copyright (C) 2004, 2005, 2006 by 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
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
# TODO: For things like --diff-prefix, we want a way to customize the display
 
18
# of the option argument.
17
19
 
18
20
import re
19
21
 
161
163
_global_option('overwrite', help='Ignore differences between branches and '
162
164
               'overwrite unconditionally')
163
165
_global_option('basis', type=str)
 
166
_global_option('bound')
164
167
_global_option('diff-options', type=str)
165
168
_global_option('help',
166
169
               help='show help message')
170
173
_global_option('forward')
171
174
_global_option('message', type=unicode)
172
175
_global_option('no-recurse')
 
176
_global_option('prefix', type=str, 
 
177
               help='Set prefixes to added to old and new filenames, as '
 
178
                    'two values separated by a colon.')
173
179
_global_option('profile',
174
180
               help='show performance profiling information')
175
181
_global_option('revision', type=_parse_revision_str)
176
 
_global_option('short')
177
182
_global_option('show-ids', 
178
183
               help='show internal object ids')
179
184
_global_option('timezone', 
180
185
               type=str,
181
186
               help='display timezone as local, original, or utc')
 
187
_global_option('unbound')
182
188
_global_option('verbose',
183
189
               help='display more information')
184
190
_global_option('version')
185
191
_global_option('email')
186
192
_global_option('update')
187
 
_global_option('long', help='Use detailed log format')
188
 
_global_option('short', help='Use moderately short log format')
189
 
_global_option('line', help='Use log format with one line per revision')
 
193
_global_option('log-format', type=str, help="Use this log format")
 
194
_global_option('long', help='Use detailed log format. Same as --log-format long')
 
195
_global_option('short', help='Use moderately short log format. Same as --log-format short')
 
196
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
190
197
_global_option('root', type=str)
191
198
_global_option('no-backup')
192
 
_global_option('merge-type', type=_parse_merge_type)
 
199
_global_option('merge-type', type=_parse_merge_type, 
 
200
               help='Select a particular merge algorithm')
193
201
_global_option('pattern', type=str)
194
202
_global_option('quiet')
195
203
_global_option('remember', help='Remember the specified location as a'
212
220
Option.SHORT_OPTIONS['v'] = Option.OPTIONS['verbose']
213
221
Option.SHORT_OPTIONS['l'] = Option.OPTIONS['long']
214
222
Option.SHORT_OPTIONS['q'] = Option.OPTIONS['quiet']
 
223
Option.SHORT_OPTIONS['p'] = Option.OPTIONS['prefix']