| | |
Methods defined here:
- __init__(self, rules=None)
- characters(self, c)
- convertDateTime(self, value, kind)
- convertToBasicTypes(self, d, t, attrs, config=<Config.SOAPConfig instance>)
- convertToSOAPpyTypes(self, d, t, attrs, config=<Config.SOAPConfig instance>)
- convertType(self, d, t, attrs, config=<Config.SOAPConfig instance>)
- endDocument(self)
- endElementNS(self, name, qname)
- endPrefixMapping(self, prefix)
- popFrame(self)
- pushFrame(self, frame)
- startArray(self, name, kind, attrs, elemsname)
- startElementNS(self, name, qname, attrs)
- startPrefixMapping(self, prefix, uri)
Data and other attributes defined here:
- DATETIMECONSTS = <class Parser.DATETIMECONSTS>
- Frame = <class Parser.Frame>
- arrayre = r'^(?:(?P<ns>[^:]*):)?(?P<type>[^[]+)(?:\[(?P<rank>,*)\])?(?:\[(?P<asize>\d+(?:,\d+)*)?\])$'
- floatlimits = {'double': (0.0, -1.7976931348623157e+308, 1.7976931348623157e+308), 'float': (7.0064923216240854e-46, -3.4028234663852886e+38, 3.4028234663852886e+38)}
- intlimits = {'byte': (0, -128, 127), 'int': (0, -2147483648L, 2147483647), 'long': (1, -9223372036854775808L, 9223372036854775807L), 'negative-integer': (0, None, -1), 'negativeInteger': (0, None, -1), 'non-negative-integer': (0, 0, None), 'non-positive-integer': (0, None, 0), 'nonNegativeInteger': (0, 0, None), 'nonPositiveInteger': (0, None, 0), 'positive-integer': (0, 1, None), ...}
- zerofloatre = '[1-9]'
Methods inherited from xml.sax.handler.ContentHandler:
- endElement(self, name)
- Signals the end of an element in non-namespace mode.
The name parameter contains the name of the element type, just
as with the startElement event.
- ignorableWhitespace(self, whitespace)
- Receive notification of ignorable whitespace in element content.
Validating Parsers must use this method to report each chunk
of ignorable whitespace (see the W3C XML 1.0 recommendation,
section 2.10): non-validating parsers may also use this method
if they are capable of parsing and using content models.
SAX parsers may return all contiguous whitespace in a single
chunk, or they may split it into several chunks; however, all
of the characters in any single event must come from the same
external entity, so that the Locator provides useful
information.
- processingInstruction(self, target, data)
- Receive notification of a processing instruction.
The Parser will invoke this method once for each processing
instruction found: note that processing instructions may occur
before or after the main document element.
A SAX parser should never report an XML declaration (XML 1.0,
section 2.8) or a text declaration (XML 1.0, section 4.3.1)
using this method.
- setDocumentLocator(self, locator)
- Called by the parser to give the application a locator for
locating the origin of document events.
SAX parsers are strongly encouraged (though not absolutely
required) to supply a locator: if it does so, it must supply
the locator to the application by invoking this method before
invoking any of the other methods in the DocumentHandler
interface.
The locator allows the application to determine the end
position of any document-related event, even if the parser is
not reporting an error. Typically, the application will use
this information for reporting its own errors (such as
character content that does not match an application's
business rules). The information returned by the locator is
probably not sufficient for use with a search engine.
Note that the locator will return correct information only
during the invocation of the events in this interface. The
application should not attempt to use it at any other time.
- skippedEntity(self, name)
- Receive notification of a skipped entity.
The Parser will invoke this method once for each entity
skipped. Non-validating processors may skip entities if they
have not seen the declarations (because, for example, the
entity was declared in an external DTD subset). All processors
may skip external entities, depending on the values of the
http://xml.org/sax/features/external-general-entities and the
http://xml.org/sax/features/external-parameter-entities
properties.
- startDocument(self)
- Receive notification of the beginning of a document.
The SAX parser will invoke this method only once, before any
other methods in this interface or in DTDHandler (except for
setDocumentLocator).
- startElement(self, name, attrs)
- Signals the start of an element in non-namespace mode.
The name parameter contains the raw XML 1.0 name of the
element type as a string and the attrs parameter holds an
instance of the Attributes class containing the attributes of
the element.
|