/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/mutabletree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-08 00:04:05 UTC
  • mfrom: (5704 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5705.
  • Revision ID: jelmer@samba.org-20110308000405-sgvkkcjm1dz8em4z
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        # used on media which doesn't differentiate the case of names.
81
81
        self.case_sensitive = True
82
82
 
 
83
    def is_control_filename(self, filename):
 
84
        """True if filename is the name of a control file in this tree.
 
85
 
 
86
        :param filename: A filename within the tree. This is a relative path
 
87
        from the root of this tree.
 
88
 
 
89
        This is true IF and ONLY IF the filename is part of the meta data
 
90
        that bzr controls in this tree. I.E. a random .bzr directory placed
 
91
        on disk will not be a control file for this tree.
 
92
        """
 
93
        raise NotImplementedError(self.is_control_filename)
 
94
 
83
95
    @needs_tree_write_lock
84
96
    def add(self, files, ids=None, kinds=None):
85
97
        """Add paths to the set of versioned paths.