~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
2282
2282
    'editor', Option('editor'),
2283
2283
    help='The command called to launch an editor to enter a message.')
2284
2284
 
 
2285
option_registry.register(
 
2286
    'dirstate.fdatasync', Option('dirstate.fdatasync', default=True),
 
2287
    help='Flush dirstate changes onto physical disk?')
 
2288
 
 
2289
option_registry.register(
 
2290
    'repository.fdatasync',
 
2291
    Option('repository.fdatasync', default=True),
 
2292
    help='Flush repository changes onto physical disk?')
 
2293
 
2285
2294
 
2286
2295
class Section(object):
2287
2296
    """A section defines a dict of option name => value.
2812
2821
class LocationStack(_CompatibleStack):
2813
2822
 
2814
2823
    def __init__(self, location):
 
2824
        """Make a new stack for a location and global configuration.
 
2825
        
 
2826
        :param location: A URL prefix to """
2815
2827
        lstore = LocationStore()
2816
2828
        matcher = LocationMatcher(lstore, location)
2817
2829
        gstore = GlobalStore()