~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-28 09:46:27 UTC
  • mfrom: (1684.1.6 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060428094627-39fe69886455ed98
(mbp) add --diff-prefix

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
 
163
165
_global_option('basis', type=str)
164
166
_global_option('bound')
165
167
_global_option('diff-options', type=str)
 
168
_global_option('diff-prefix', type=str, 
 
169
               help='Set prefixes to added to old and new filenames, as two values separated by a colon')
166
170
_global_option('help',
167
171
               help='show help message')
168
172
_global_option('file', type=unicode)