Home | Trees | Index | Help |
---|
Package pyGlobus :: Module GSISOAP :: Class SOAPParser |
|
ContentHandler
--+
|
SOAPParser
Method Summary | |
---|---|
__init__(self,
rules)
| |
characters(self,
c)
| |
convertDateTime(self,
value,
kind)
| |
convertType(self,
d,
t,
attrs)
| |
Receive notification of the end of a document. | |
Signals the end of an element in namespace mode. | |
End the scope of a prefix-URI mapping. | |
popFrame(self)
| |
pushFrame(self,
frame)
| |
startArray(self,
name,
kind,
attrs,
elemsname)
| |
Signals the start of an element in namespace mode. | |
Begin the scope of a prefix-URI Namespace mapping. | |
Inherited from ContentHandler | |
Signals the end of an element in non-namespace mode. | |
Receive notification of ignorable whitespace in element content. | |
Receive notification of a processing instruction. | |
Called by the parser to give the application a locator for locating the origin of document events. | |
Receive notification of a skipped entity. | |
Receive notification of the beginning of a document. | |
Signals the start of an element in non-namespace mode. |
Class Variable Summary | |
---|---|
str |
arrayre = '^(?:(?P<ns>[^:]*):)?(?P<type>[^[]+)(?:\\[(?P<...
|
classobj |
DATETIMECONSTS = pyGlobus.GSISOAP.DATETIMECONSTS |
dict |
floatlimits = {'double': (0.0, -1.7976931348623157e+308,...
|
classobj |
Frame = pyGlobus.GSISOAP.Frame |
dict |
intlimits = {'negative-integer': (0, None, -1), 'unsigne...
|
str |
zerofloatre = '[1-9]'
|
Method Details |
---|
endDocument(self)Receive notification of the end of a document. The SAX parser will invoke this method only once, and it will be the last method invoked during the parse. The parser shall not invoke this method until it has either abandoned parsing (because of an unrecoverable error) or reached the end of input.
|
endElementNS(self, name, qname)Signals the end of an element in namespace mode. The name parameter contains the name of the element type, just as with the startElementNS event.
|
endPrefixMapping(self, prefix)End the scope of a prefix-URI mapping. See startPrefixMapping for details. This event will always occur after the corresponding endElement event, but the order of endPrefixMapping events is not otherwise guaranteed.
|
startElementNS(self, name, qname, attrs)Signals the start of an element in namespace mode. The name parameter contains the name of the element type as a (uri, localname) tuple, the qname parameter the raw XML 1.0 name used in the source document, and the attrs parameter holds an instance of the Attributes class containing the attributes of the element. The uri part of the name tuple is None for elements which have no namespace.
|
startPrefixMapping(self, prefix, uri)Begin the scope of a prefix-URI Namespace mapping. The information from this event is not necessary for normal Namespace processing: the SAX XML reader will automatically replace prefixes for element and attribute names when the http://xml.org/sax/features/namespaces feature is true (the default). There are cases, however, when applications need to use prefixes in character data or in attribute values, where they cannot safely be expanded automatically; the start/endPrefixMapping event supplies the information to the application to expand prefixes in those contexts itself, if necessary. Note that start/endPrefixMapping events are not guaranteed to be properly nested relative to each-other: all startPrefixMapping events will occur before the corresponding startElement event, and all endPrefixMapping events will occur after the corresponding endElement event, but their order is not guaranteed.
|
Class Variable Details |
---|
arrayre
|
floatlimits
|
zerofloatre
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Tue Apr 4 14:32:56 2006 | http://epydoc.sf.net |