~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/revision-properties.txt

  • Committer: Lukáš Lalinský
  • Date: 2007-08-07 20:45:21 UTC
  • mto: (2755.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2709.
  • Revision ID: lalinsky@gmail.com-20070807204521-q9iwgzhwei1sf96h
Fixes for comments from the mailing list.

 - Raise AssertionError from MutableTree.commit if both author kwarg and revprop are set.
 - Fixed code formatting in LongLogFormatter.log_revision.
 - Fixed punctuation in the developer docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
At the moment, three standardized revision properties are recognized and used
29
29
by bzrlib:
30
30
 
31
 
 * ``author`` - Author of the change, the value is in the same format as
 
31
 * ``author`` - Author of the change. This value is in the same format as
32
32
   the committer-id. This property can be set by passing keyword argument
33
33
   ``author`` to function ``MutableTree.commit``.
34
 
 * ``branch-nick`` - Nick of the branch. It's either the directory name
 
34
 * ``branch-nick`` - Nickname of the branch. It's either the directory name
35
35
   or manually set by ``bzr nick``. The value is set automatically in
36
36
   ``MutableTree.commit``.
37
37
 * ``bugs`` - A list of bug URLs and their statuses. The list is separated
38
38
   by the new-line character (\n) and each entry is in format
39
 
   '<URL> <status>'. Currently bzrlib uses only status 'fixed'. See
 
39
   '<URL> <status>'. Currently, bzrlib uses only status 'fixed'. See
40
40
   `Bug Trackers`_ for more details about using this feature.
41
41
 
42
42
.. _Bug Trackers: ../bug_trackers.htm