~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/option.py

  • Committer: John Arbash Meinel
  • Date: 2007-07-18 20:42:38 UTC
  • mfrom: (2625 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2643.
  • Revision ID: john@arbash-meinel.com-20070718204238-5gi11fx04q7zt72d
[merge] bzr.dev 2625

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    def short_name(self):
153
153
        if self._short_name:
154
154
            return self._short_name
155
 
        else:
156
 
            # remove this when SHORT_OPTIONS is removed
157
 
            # XXX: This is accessing a DeprecatedDict, so we call the super 
158
 
            # method to avoid warnings
159
 
            for (k, v) in dict.iteritems(Option.SHORT_OPTIONS):
160
 
                if v == self:
161
 
                    return k
162
155
 
163
156
    def set_short_name(self, short_name):
164
157
        self._short_name = short_name
380
373
_global_option('basis', type=str)
381
374
_global_option('bound')
382
375
_global_option('diff-options', type=str)
383
 
_global_option('help',
384
 
               help='Show help message.',
385
 
               short_name='h')
386
376
_global_option('file', type=unicode, short_name='F')
387
377
_global_option('force')
388
378
_global_option('format', type=unicode)
389
379
_global_option('forward')
390
380
_global_option('message', type=unicode,
391
 
               short_name='m')
 
381
               short_name='m',
 
382
               help='Message string.')
392
383
_global_option('no-recurse')
393
384
_global_option('profile',
394
385
               help='Show performance profiling information.')
398
389
               help='See \'help revisionspec\' for details.')
399
390
_global_option('show-ids',
400
391
               help='Show internal object ids.')
401
 
_global_option('timezone',
 
392
_global_option('timezone', 
402
393
               type=str,
403
 
               help='Display timezone as local, original, or utc.')
 
394
               help='display timezone as local, original, or utc')
404
395
_global_option('unbound')
405
396
_global_option('verbose',
406
397
               help='Display more information.',
411
402
_global_registry_option('log-format', "Use specified log format.",
412
403
                        log.log_formatter_registry, value_switches=True,
413
404
                        title='Log format')
414
 
_global_option('long',
415
 
        help='Use detailed log format.  Same as --log-format long.',
416
 
        short_name='l')
417
 
_global_option('short',
418
 
        help='Use moderately short log format. Same as --log-format short.')
419
 
_global_option('line', help='Use log format with one line per revision. Same as --log-format line.')
 
405
_global_option('long', help='Use detailed log format. Same as --log-format long',
 
406
               short_name='l')
 
407
_global_option('short', help='Use moderately short log format. Same as --log-format short')
 
408
_global_option('line', help='Use log format with one line per revision. Same as --log-format line')
420
409
_global_option('root', type=str)
421
410
_global_option('no-backup')
422
411
_global_registry_option('merge-type', 'Select a particular merge algorithm.',
432
421
               help="Show what would be done, but don't actually do anything.")
433
422
_global_option('name-from-revision', help='The path name in the old tree.')
434
423
 
435
 
 
436
 
# prior to 0.14 these were always globally registered; the old dict is
437
 
# available for plugins that use it but it should not be used.
438
 
Option.SHORT_OPTIONS = symbol_versioning.DeprecatedDict(
439
 
    symbol_versioning.zero_fourteen,
440
 
    'SHORT_OPTIONS',
441
 
    {
442
 
        'F': Option.OPTIONS['file'],
443
 
        'h': Option.OPTIONS['help'],
444
 
        'm': Option.OPTIONS['message'],
445
 
        'r': Option.OPTIONS['revision'],
446
 
        'v': Option.OPTIONS['verbose'],
447
 
        'l': Option.OPTIONS['long'],
448
 
        'q': Option.OPTIONS['quiet'],
449
 
    },
450
 
    'Set the short option name when constructing the Option.',
451
 
    )
 
424
_help_option = Option('help',
 
425
                      help='Show help message.',
 
426
                      short_name='h')