~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/configuration.txt

  • Committer: paulbrianstewart at gmail
  • Date: 2011-08-13 23:07:36 UTC
  • mto: This revision was merged to the branch mainline in revision 6069.
  • Revision ID: paulbrianstewart@gmail.com-20110813230736-lqi6eek015wh23yv
Added punctuation to the commit message

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
* default: the default value that Stack.get() should return if no
20
20
  value can be found for the option.
21
21
 
22
 
* help: a doc string describing the option, the first line should be a
23
 
  summary and can be followed by a blank line and a more detailed
24
 
  explanation.
25
 
 
26
 
* from_unicode: a callable accepting a unicode string and returning a
27
 
  suitable value for the option. If the string cannot be coerced it should
28
 
  return None.
29
 
 
30
 
* invalid: the action to be taken when an invalid value is encountered in a
31
 
  store (during a Stack.get()).
 
22
Since plugins should be able to lazily register options, the associated help
 
23
is not part of the object but provided at registration time.
32
24
 
33
25
Sections
34
26
--------