~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml4.py

  • Committer: Martin Pool
  • Date: 2005-10-04 11:13:33 UTC
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1403.
  • Revision ID: mbp@sourcefrog.net-20051004111332-f7b8a6bd41b9fe22
- tweak capture_tree formatting

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
1
3
# This program is free software; you can redistribute it and/or modify
2
4
# it under the terms of the GNU General Public License as published by
3
5
# the Free Software Foundation; either version 2 of the License, or
4
6
# (at your option) any later version.
5
 
#
 
7
 
6
8
# This program is distributed in the hope that it will be useful,
7
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
8
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9
11
# GNU General Public License for more details.
10
 
#
 
12
 
11
13
# You should have received a copy of the GNU General Public License
12
14
# along with this program; if not, write to the Free Software
13
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14
16
 
15
17
 
16
 
from bzrlib.xml_serializer import ElementTree, SubElement, Element, Serializer
 
18
from bzrlib.xml import ElementTree, SubElement, Element, Serializer
17
19
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
18
20
import bzrlib.inventory as inventory
19
21
from bzrlib.revision import Revision        
27
29
class _Serializer_v4(Serializer):
28
30
    """Version 0.0.4 serializer
29
31
 
30
 
    You should use the serializer_v4 singleton."""
 
32
    You should use the serialzer_v4 singleton."""
31
33
    
32
34
    __slots__ = []
33
35
    
34
36
    def _pack_inventory(self, inv):
35
37
        """Convert to XML Element"""
36
 
        # v4 serialization is not used any more.
37
 
        raise NotImplementedError(self._pack_inventory)
38
38
        e = Element('inventory')
39
39
        e.text = '\n'
40
40
        if inv.root.file_id not in (None, ROOT_ID):
116
116
        else:
117
117
            raise BzrError("unknown kind %r" % kind)
118
118
 
119
 
        ## mutter("read inventoryentry: %r", elt.attrib)
 
119
        ## mutter("read inventoryentry: %r" % (elt.attrib))
120
120
 
121
121
        return ie
122
122