4Suite API Documentation

Module Ft.Xml.Domlette

######################################################################## # $Header: /var/local/cvsroot/4Suite/Ft/Xml/Domlette.py,v 1.46 2005/03/19 08:11:01 jkloth Exp $
Classes:
Functions:
Fields:

Classes

class EntityReaderBase(_Reader)

Methods

__init__(self, inputSourceFactory=None)

Methods inherited from class _Reader


class NoExtDtdReaderBase(_Reader)

Methods

__init__(self, inputSourceFactory=None)

Methods inherited from class _Reader


class NonvalidatingReaderBase(_Reader)

Methods

__init__(self, inputSourceFactory=None)

Methods inherited from class _Reader


class ValidatingReaderBase(_Reader)

Methods

__init__(self, inputSourceFactory=None)

Methods inherited from class _Reader

Functions

ConvertDocument(oldDocument, documentURI=u'')
GetAllNs(node)
GetAllNs(node) -> dict

Get all of the namespaces defined in scope of this node.
NonvalParse(isrc[, readExtDtd[, parseAsEntity]])
nonvalParse(isrc[, readExtDtd[, parseAsEntity]]) -> Document
PrettyPrint(root, stream=<open file '<stdout>', mode 'w' at 0x30036068>, encoding='UTF-8', asHtml=None)
SeekNss(node)
SeekNss(node) -> dict

Traverses the tree to seek an approximate set of defined namespaces.
ValParse(isrc, readExtDtd=True)

Fields

EntityReader = <Ft.Xml.Domlette.EntityReaderBase instance>
Non-validating reader instance that accepts well-formed XML External Parsed Entities, created from EntityReader() with no constructor arguments.

Uses the default InputSource factory. If you need to change it,
reassign the inputSourceFactory attribute, or, preferably, just
create a new EntityReader instance.
NoExtDtdReader = <Ft.Xml.Domlette.NoExtDtdReaderBase instance>
The default non-validating, external DTD subset-ignoring reader instance, created from NoExtDtdReaderBase() with no constructor arguments.

Uses the default InputSource factory. If you need to change it,
reassign the inputSourceFactory attribute, or, preferably, just
create a new NoExtDtdReaderBase instance.
NonvalidatingReader = <Ft.Xml.Domlette.NonvalidatingReaderBase instance>
The default non-validating reader instance, created from NonvalidatingReaderBase() with no constructor arguments.

Uses the default InputSource factory. If you need to change it,
reassign the inputSourceFactory attribute, or, preferably, just
create a new NonvalidatingReaderBase instance.
ValidatingReader = <Ft.Xml.Domlette.ValidatingReaderBase instance>
The default validating reader instance, created from ValidatingReaderBase() with no constructor arguments.

Uses the default InputSource factory. If you need to change it,
reassign the inputSourceFactory attribute, or, preferably, just
create a new ValidatingReaderBase instance.
implementation = <DOMImplementation>
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.