~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Martin Pool
  • Date: 2005-09-06 02:26:28 UTC
  • Revision ID: mbp@sourcefrog.net-20050906022628-66d65f0feb4a9e80
- implement version 5 xml storage, and tests

  This stores files identified by the version that introduced the 
  text, and the version that introduced the name.  Entry kinds are
  given by the xml tag not an explicit kind field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    # directories, etc etc.
101
101
 
102
102
    __slots__ = ['text_sha1', 'text_size', 'file_id', 'name', 'kind',
103
 
                 'text_id', 'parent_id', 'children', ]
 
103
                 'text_id', 'parent_id', 'children',
 
104
                 'text_version', 'entry_version', ]
104
105
 
105
106
    def __init__(self, file_id, name, kind, parent_id, text_id=None):
106
107
        """Create an InventoryEntry
117
118
        Traceback (most recent call last):
118
119
        BzrCheckError: InventoryEntry name 'src/hello.c' is invalid
119
120
        """
 
121
        assert isinstance(name, basestring), name
120
122
        if '/' in name or '\\' in name:
121
123
            raise BzrCheckError('InventoryEntry name %r is invalid' % name)
122
124