/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/hooks.txt

  • Committer: Andrew Bennetts
  • Date: 2008-10-01 05:40:45 UTC
  • mfrom: (3753 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3756.
  • Revision ID: andrew.bennetts@canonical.com-20081001054045-z50qc0d3p9qsc5im
Merge from bzr.dev; resolve osutils.py conflict by reverting my sha import hackery.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
The class of each hook is given immediately after each hook type below.
16
16
 
17
17
 
 
18
open (Branch)
 
19
-------------
 
20
 
 
21
Called after a Branch object is opened, with the Branch object.
 
22
 
 
23
 
18
24
post_push (Branch)
19
25
------------------
20
26
 
186
192
 
187
193
Invoked whenever the server stops serving a directory.
188
194
The hook signature is the same as ``server_started``.
 
195
 
 
196
 
 
197
lock_acquired (LockDir)
 
198
----------------------------
 
199
 
 
200
Called with a LockResult object when a lock has been successfully acquired.
 
201
(New in 1.8.)
 
202
 
 
203
lock_released (LockDir)
 
204
----------------------------
 
205
 
 
206
Called with a LockResult object when a lock has been successfully released.
 
207
(New in 1.8.)