~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# it under the terms of the GNU General Public License as published by
8
8
# the Free Software Foundation; either version 2 of the License, or
9
9
# (at your option) any later version.
10
 
 
 
10
#
11
11
# This program is distributed in the hope that it will be useful,
12
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
14
# GNU General Public License for more details.
15
 
 
 
15
#
16
16
# You should have received a copy of the GNU General Public License
17
17
# along with this program; if not, write to the Free Software
18
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
57
57
    def copy_to(self, name, transport):
58
58
        """Copy this versioned file to name on transport."""
59
59
        raise NotImplementedError(self.copy_to)
60
 
    
 
60
 
61
61
    @deprecated_method(zero_eight)
62
62
    def names(self):
63
63
        """Return a list of all the versions in this versioned file.
173
173
        if self._access_mode != 'w':
174
174
            raise errors.ReadOnlyObjectDirtiedError(self)
175
175
 
 
176
    def enable_cache(self):
 
177
        """Tell this versioned file that it should cache any data it reads.
 
178
        
 
179
        This is advisory, implementations do not have to support caching.
 
180
        """
 
181
        pass
 
182
    
176
183
    def clear_cache(self):
177
 
        """Remove any data cached in the versioned file object."""
 
184
        """Remove any data cached in the versioned file object.
 
185
 
 
186
        This only needs to be supported if caches are supported
 
187
        """
 
188
        pass
178
189
 
179
190
    def clone_text(self, new_version_id, old_version_id, parents):
180
191
        """Add an identical text to old_version_id as new_version_id.