~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/configuration.txt

  • Committer: Jelmer Vernooij
  • Date: 2012-03-15 02:42:48 UTC
  • mto: This revision was merged to the branch mainline in revision 6510.
  • Revision ID: jelmer@samba.org-20120315024248-7nyk2zxc52i1u8gj
extention -> extension.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
* convert the unicode string provided by the user into a suitable
99
99
  representation (integer, list, etc).
100
100
 
101
 
If you start migrating a given option to the config stacks, don't stop
102
 
mid-way, all its uses should be covered (tests included). There are some
103
 
edge cases where updates via one API will be not be seen by the other API
104
 
(see http://pad.lv/948339 and http://pad.lv/948344 for details). Roughly,
105
 
the old API always trigger an IO while the new one cache values to avoid
106
 
them. This works fine as long as a given option is handled via a single API.
107
 
 
108
101
Adding a new stack
109
102
------------------
110
103