~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

(vila) Migrate more branch config options to config stacks. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2669
2669
present.
2670
2670
'''))
2671
2671
option_registry.register(
 
2672
    Option('child_submit_format',
 
2673
           help='''The preferred format of submissions to this branch.'''))
 
2674
option_registry.register(
 
2675
    Option('child_submit_to',
 
2676
           help='''Where submissions to this branch are mailed to.'''))
 
2677
option_registry.register(
2672
2678
    Option('create_signatures', default=SIGN_WHEN_REQUIRED,
2673
2679
           from_unicode=signing_policy_from_unicode,
2674
2680
           help='''\
2857
2863
This is automatically set by ``bzr send`` and ``bzr merge``, and is also used
2858
2864
by the ``submit:`` revision spec.
2859
2865
"""))
 
2866
option_registry.register(
 
2867
    Option('submit_to',
 
2868
           help='''Where submissions from this branch are mailed to.'''))
2860
2869
 
2861
2870
 
2862
2871
class Section(object):