summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/test_pye.py
blob: 9f6d8d08b658245d658d6505281fdcd27219b32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Very simple test - Parse a file and print what happens

# XXX TypeErrors on calling handlers, or on bad return values from a
# handler, are obscure and unhelpful.
        
import sys, string
import os

import pyexpat
                
class Outputter:
    def StartElementHandler(self, name, attrs):
        print 'Start element:\n\t', name, attrs
        
    def EndElementHandler(self, name):
        print 'End element:\n\t', name

    def CharacterDataHandler(self, data):
        data = string.strip(data)
        if data:
            print 'Character data:'
            print '\t', repr(data)

    def ProcessingInstructionHandler(self, target, data):
        print 'PI:\n\t', target, data

    def StartNamespaceDeclHandler(self, prefix, uri):
        print 'NS decl:\n\t', prefix, uri

    def EndNamespaceDeclHandler(self, prefix):
        print 'End of NS decl:\n\t', prefix

    def StartCdataSectionHandler(self):
        print 'Start of CDATA section'

    def EndCdataSectionHandler(self):
        print 'End of CDATA section'

    def CommentHandler(self, text):
        print 'Comment:\n\t', repr(text)

    def NotationDeclHandler(self, *args):
        name, base, sysid, pubid = args
        print 'Notation declared:', args

    def UnparsedEntityDeclHandler(self, *args):
        entityName, base, systemId, publicId, notationName = args
        print 'Unparsed entity decl:\n\t', args
    
    def NotStandaloneHandler(self, userData):
        print 'Not standalone'
        return 1
        
    def ExternalEntityRefHandler(self, context, base, sysId, pubId):
        print 'External entity ref:', context, base, sysId, pubId
        return 1

    def DefaultHandler(self, userData):
        pass

    def DefaultHandlerExpand(self, userData):
        pass


out = Outputter()
parser = pyexpat.ParserCreate(namespace_separator='!')
for name in ['StartElementHandler', 'EndElementHandler',
             'CharacterDataHandler', 'ProcessingInstructionHandler',
             'UnparsedEntityDeclHandler', 'NotationDeclHandler',
             'StartNamespaceDeclHandler', 'EndNamespaceDeclHandler',
             'CommentHandler', 'StartCdataSectionHandler',
             'EndCdataSectionHandler',
             'DefaultHandler', 'DefaultHandlerExpand',
             #'NotStandaloneHandler',
             'ExternalEntityRefHandler'
             ]:
    setattr(parser, name, getattr(out, name) )

data = """<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
<?xml-stylesheet href="stylesheet.css"?>
<!-- comment data -->
<!DOCTYPE quotations SYSTEM "quotations.dtd" [
<!ELEMENT root ANY>
<!NOTATION notation SYSTEM "notation.jpeg">
<!ENTITY acirc "&#226;">
<!ENTITY external_entity SYSTEM "entity.file">
<!ENTITY unparsed_entity SYSTEM "entity.file" NDATA notation>
%unparsed_entity;
]>

<root>
<myns:subelement xmlns:myns="http://www.python.org/namespace">
     Contents of subelements
</myns:subelement>
<sub2><![CDATA[contents of CDATA section]]></sub2>
&external_entity;
</root>
"""

try:
    parser.Parse(data, 1)
except pyexpat.error:
    print '** Error', parser.ErrorCode, pyexpat.ErrorString( parser.ErrorCode)
    print '** Line', parser.ErrorLineNumber
    print '** Column', parser.ErrorColumnNumber
    print '** Byte', parser.ErrorByteIndex