~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/configuration.txt

  • Committer: Vincent Ladeuil
  • Date: 2012-02-14 17:22:37 UTC
  • mfrom: (6466 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120214172237-7dv7er3n4uy8d5m4
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
 
214
214
If you need a list value, you should use ``ListOption`` instead.
215
215
 
 
216
For options that take their values from a ``Registry`` object,
 
217
``RegistryOption`` can be used. This will automatically take care of
 
218
looking up the specified values in the dictionary and documenting the
 
219
possible values in help.
216
220
 
217
221
Sections
218
222
--------
301
305
 
302
306
``bzrlib`` provides:
303
307
 
304
 
* ``LocationMatcher(store, location)``: To select all sections that match
305
 
  ``location``.
306
 
 
307
308
* ``NameMatcher(store, unique_id)``: To select a single section matching
308
309
  ``unique_id``.
309
310
 
 
311
* ``LocationMatcher(store, location)``: To select all sections that match
 
312
  ``location`` sorted by decreasing number of path components.
 
313
 
 
314
* ``StartingPathMatcher(store, location)``: To select all sections that
 
315
  match ``location`` in the order they appear in the ``store``.
 
316
 
310
317
Stacks
311
318
------
312
319