~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

(vila) Provide a config section matcher respecting the file order. (Vincent
 Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
520
520
            "called with a bzrlib.mutabletree.PostCommitHookParams object. "
521
521
            "The mutable tree the commit was performed on is available via "
522
522
            "the mutable_tree attribute of that object.", (2, 0))
523
 
        self.add_hook('pre_transform',
524
 
            "Called before a tree transform on this tree. The hook is called "
525
 
            "with the tree that is being transformed and the transform.",
526
 
            (2, 5))
527
523
        self.add_hook('post_build_tree',
528
524
            "Called after a completely new tree is built. The hook is "
529
525
            "called with the tree as its only argument.", (2, 5))
530
 
        self.add_hook('post_transform',
531
 
            "Called after a tree transform has been performed on a tree. "
532
 
            "The hook is called with the tree that is being transformed and "
533
 
            "the transform.",
534
 
            (2, 5))
 
526
 
535
527
 
536
528
# install the default hooks into the MutableTree class.
537
529
MutableTree.hooks = MutableTreeHooks()
623
615
            # nb: this relies on someone else checking that the path we're using
624
616
            # doesn't contain symlinks.
625
617
            parent_ie = self._convert_to_directory(parent_ie, inv_dirname)
626
 
        file_id = self.action(self.tree, parent_ie, path, kind)
 
618
        file_id = self.action(self.tree.inventory, parent_ie, path, kind)
627
619
        entry = _mod_inventory.make_entry(kind, basename, parent_ie.file_id,
628
620
            file_id=file_id)
629
621
        self._invdelta[inv_path] = (None, inv_path, entry.file_id, entry)