~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-09 09:04:06 UTC
  • mfrom: (6056.2.3 migrate-config-options)
  • Revision ID: pqm@pqm.ubuntu.com-20110809090406-sjx052uyb3t9c6o0
(vila) Migrate some config options to the stack-based API. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2287
2287
option_registry = registry.Registry()
2288
2288
 
2289
2289
 
 
2290
# Registered options in lexicographical order
 
2291
 
 
2292
option_registry.register(
 
2293
    'dirstate.fdatasync', Option('dirstate.fdatasync', default=True),
 
2294
    help='Flush dirstate changes onto physical disk?')
 
2295
option_registry.register(
 
2296
    'default_format', Option('default_format', default='2a'),
 
2297
    help='Format used when creating branches.')
2290
2298
option_registry.register(
2291
2299
    'editor', Option('editor'),
2292
2300
    help='The command called to launch an editor to enter a message.')
2293
 
 
2294
 
option_registry.register(
2295
 
    'dirstate.fdatasync', Option('dirstate.fdatasync', default=True),
2296
 
    help='Flush dirstate changes onto physical disk?')
2297
 
 
 
2301
option_registry.register(
 
2302
    'language', Option('language'),
 
2303
    help='Language to translate messages into.')
 
2304
option_registry.register(
 
2305
    'output_encoding', Option('output_encoding'),
 
2306
    help='Unicode encoding for output (terminal encoding if not specified).')
2298
2307
option_registry.register(
2299
2308
    'repository.fdatasync',
2300
2309
    Option('repository.fdatasync', default=True),