~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml4.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        # for now, leaving them as null in the xml form.  in a future
51
51
        # version it will be implied by nested elements.
52
52
        if ie.parent_id != ROOT_ID:
 
53
            assert isinstance(ie.parent_id, basestring)
53
54
            e.set('parent_id', ie.parent_id)
54
55
 
55
56
        e.tail = '\n'
62
63
 
63
64
        :param revision_id: Ignored parameter used by xml5.
64
65
        """
 
66
        assert elt.tag == 'inventory'
65
67
        root_id = elt.get('file_id') or ROOT_ID
66
68
        inv = Inventory(root_id)
67
69
        for e in elt:
73
75
 
74
76
 
75
77
    def _unpack_entry(self, elt):
 
78
        assert elt.tag == 'entry'
 
79
 
76
80
        ## original format inventories don't have a parent_id for
77
81
        ## nodes in the root directory, but it's cleaner to use one
78
82
        ## internally.
129
133
            for i, parent_id in enumerate(rev.parents):
130
134
                p = SubElement(pelts, 'revision_ref')
131
135
                p.tail = '\n'
 
136
                assert parent_id
132
137
                p.set('revision_id', parent_id)
133
138
                if i < len(rev.parent_sha1s):
134
139
                    p.set('revision_sha1', rev.parent_sha1s[i])
156
161
 
157
162
        if pelts:
158
163
            for p in pelts:
 
164
                assert p.tag == 'revision_ref', \
 
165
                       "bad parent node tag %r" % p.tag
159
166
                rev.parent_ids.append(p.get('revision_id'))
160
167
                rev.parent_sha1s.append(p.get('revision_sha1'))
161
168
            if precursor:
162
169
                # must be consistent
163
170
                prec_parent = rev.parent_ids[0]
 
171
                assert prec_parent == precursor
164
172
        elif precursor:
165
173
            # revisions written prior to 0.0.5 have a single precursor
166
174
            # give as an attribute