~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/configuration.txt

  • Committer: Vincent Ladeuil
  • Date: 2011-12-14 16:30:09 UTC
  • mto: This revision was merged to the branch mainline in revision 6378.
  • Revision ID: v.ladeuil+lp@free.fr-20111214163009-ed32rropyxxky4ka
Fix as per jelmer's review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
As a Bazaar developer there are a few things you need to know about
8
8
configuration:
9
9
 
10
 
* add a new option,
11
 
 
12
 
* add a new stack,
13
 
 
14
 
* add a new store.
 
10
* how to add a new option,
 
11
 
 
12
* how add a new stack,
 
13
 
 
14
* how add a new store.
15
15
 
16
16
The first sections in this document summarize the steps needed when adding a
17
17
new configuration item, the rest of the document gives more internal details
87
87
  * ``BranchConfig`` became ``BranchStack`` (or in this case,
88
88
    ``get_config()`` became ``get_config_stack()``.
89
89
 
90
 
* replace the custom accessor calls by ``conf.get(option_name)``.
 
90
* replace the custom accessor calls with ``conf.get(option_name)``.
91
91
 
92
92
The new config code provides some help for commonly encountered use cases
93
93
that can allow further simplifications like: