~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/newinventory.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-05 06:49:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050405064902-0ddd0e6b29762088
new "rename" command

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
def write_inventory(inv, f):
21
21
    el = Element('inventory', {'version': '2'})
22
 
    el.text = '\n'
23
22
    
24
 
    root = Element('root_directory', {'id': inv.root.file_id})
25
 
    root.tail = root.text = '\n'
 
23
    root = Element('root_directory', {'id': 'bogus-root-id'})
26
24
    el.append(root)
27
25
 
28
26
    def descend(parent_el, ie):
44
42
        parent_el.append(el)
45
43
 
46
44
        if kind == 'directory':
47
 
            el.text = '\n' # break before having children
48
45
            l = ie.children.items()
49
46
            l.sort()
50
47
            for child_name, child_ie in l:
53
50
        
54
51
    # walk down through inventory, adding all directories
55
52
 
56
 
    l = inv.root.children.items()
 
53
    l = inv._root.children.items()
57
54
    l.sort()
58
55
    for entry_name, ie in l:
59
56
        descend(root, ie)
63
60
 
64
61
 
65
62
 
66
 
def escape_attr(text):
67
 
    return text.replace("&", "&") \
68
 
           .replace("'", "'") \
69
 
           .replace('"', """) \
70
 
           .replace("<", "&lt;") \
71
 
           .replace(">", "&gt;")
72
 
 
73
 
 
74
 
# This writes out an inventory without building an XML tree first,
75
 
# just to see if it's faster.  Not currently used.
76
63
def write_slacker_inventory(inv, f):
77
64
    def descend(ie):
78
65
        kind = ie.kind
79
 
        f.write('<%s name="%s" id="%s" ' % (kind, escape_attr(ie.name),
80
 
                                            escape_attr(ie.file_id)))
 
66
        f.write('<%s name="%s" id="%s" ' % (kind, ie.name, ie.file_id))
81
67
 
82
68
        if kind == 'file':
83
69
            if ie.text_id:
100
86
            bailout('unknown InventoryEntry kind %r' % kind)
101
87
 
102
88
    f.write('<inventory>\n')
103
 
    f.write('<root_directory id="%s">\n' % escape_attr(inv.root.file_id))
 
89
    f.write('<root_directory id="bogus-root-id">\n')
104
90
 
105
 
    l = inv.root.children.items()
 
91
    l = inv._root.children.items()
106
92
    l.sort()
107
93
    for entry_name, ie in l:
108
94
        descend(ie)
141
127
 
142
128
    inv = Inventory()
143
129
    for el in root_el:
144
 
        descend(inv.root, el)
 
130
        descend(inv._root, el)