~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-11 08:41:33 UTC
  • mfrom: (1650.1.1 bzr.mbp.info)
  • Revision ID: pqm@pqm.ubuntu.com-20060411084133-90aab62d72535e57
(olaf) much improved bzr info output

Show diffs side-by-side

added added

removed removed

Lines of Context:
1444
1444
        """Return the ASCII format string that identifies this format."""
1445
1445
        raise NotImplementedError(self.get_format_string)
1446
1446
 
 
1447
    def get_format_description(self):
 
1448
        """Return the short description for this format."""
 
1449
        raise NotImplementedError(self.get_format_description)
 
1450
 
1447
1451
    def is_supported(self):
1448
1452
        """Is this format supported?
1449
1453
 
1474
1478
    This format modified the hash cache from the format 1 hash cache.
1475
1479
    """
1476
1480
 
 
1481
    def get_format_description(self):
 
1482
        """See WorkingTreeFormat.get_format_description()."""
 
1483
        return "Working tree format 2"
 
1484
 
1477
1485
    def initialize(self, a_bzrdir, revision_id=None):
1478
1486
        """See WorkingTreeFormat.initialize()."""
1479
1487
        if not isinstance(a_bzrdir.transport, LocalTransport):
1542
1550
        """See WorkingTreeFormat.get_format_string()."""
1543
1551
        return "Bazaar-NG Working Tree format 3"
1544
1552
 
 
1553
    def get_format_description(self):
 
1554
        """See WorkingTreeFormat.get_format_description()."""
 
1555
        return "Working tree format 3"
 
1556
 
1545
1557
    _lock_file_name = 'lock'
1546
1558
    _lock_class = LockDir
1547
1559