~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-04-22 07:28:09 UTC
  • mfrom: (1551.2.56 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20060422072809-b06e742274a4e9f4
Misc fixes for win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2006 by Canonical Ltd
 
1
# Copyright (C) 2004, 2005 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.
19
17
 
20
18
import re
21
19
 
173
171
_global_option('forward')
174
172
_global_option('message', type=unicode)
175
173
_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.')
179
174
_global_option('profile',
180
175
               help='show performance profiling information')
181
176
_global_option('revision', type=_parse_revision_str)
196
191
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
197
192
_global_option('root', type=str)
198
193
_global_option('no-backup')
199
 
_global_option('merge-type', type=_parse_merge_type, 
200
 
               help='Select a particular merge algorithm')
 
194
_global_option('merge-type', type=_parse_merge_type)
201
195
_global_option('pattern', type=str)
202
196
_global_option('quiet')
203
197
_global_option('remember', help='Remember the specified location as a'
220
214
Option.SHORT_OPTIONS['v'] = Option.OPTIONS['verbose']
221
215
Option.SHORT_OPTIONS['l'] = Option.OPTIONS['long']
222
216
Option.SHORT_OPTIONS['q'] = Option.OPTIONS['quiet']
223
 
Option.SHORT_OPTIONS['p'] = Option.OPTIONS['prefix']