• Home
  • Raw
  • Download

Lines Matching +full:non +full:- +full:read +full:- +full:only

2 :mod:`xml.sax.handler` --- Base classes for SAX handlers
14 error handlers, and entity resolvers. Applications normally only need to
32 This interface specifies only those DTD events required for basic parsing
58 namespace-prefixes; default).
59 | access: (parsing) read-only; (not parsing) read/write
64 | value: ``"http://xml.org/sax/features/namespace-prefixes"``
69 | access: (parsing) read-only; (not parsing) read/write
74 | value: ``"http://xml.org/sax/features/string-interning"``
76 local names are interned using the built-in intern function.
78 | access: (parsing) read-only; (not parsing) read/write
84 | true: Report all validation errors (implies external-general-entities and
85 external-parameter-entities).
87 | access: (parsing) read-only; (not parsing) read/write
92 | value: ``"http://xml.org/sax/features/external-general-entities"``
95 | access: (parsing) read-only; (not parsing) read/write
100 | value: ``"http://xml.org/sax/features/external-parameter-entities"``
105 | access: (parsing) read-only; (not parsing) read/write
115 | value: ``"http://xml.org/sax/properties/lexical-handler"``
119 | access: read/write
124 | value: ``"http://xml.org/sax/properties/declaration-handler"``
126 | description: An optional extension handler for DTD-related events other
128 | access: read/write
133 | value: ``"http://xml.org/sax/properties/dom-node"``
137 | access: (parsing) read-only; (not parsing) read/write
142 | value: ``"http://xml.org/sax/properties/xml-string"``
146 | access: read-only
154 .. _content-handler-objects:
157 ----------------------
175 document-related event, even if the parser is not reporting an error. Typically,
181 Note that the locator will return correct information only during the invocation
190 The SAX parser will invoke this method only once, before any other methods in
198 The SAX parser will invoke this method only once, and it will be the last method
206 Begin the scope of a prefix-URI Namespace mapping.
222 guaranteed to be properly nested relative to each-other: all
231 End the scope of a prefix-URI mapping.
240 Signals the start of an element in non-namespace mode.
245 interface (see :ref:`attributes-objects`) containing the attributes of
246 the element. The object passed as *attrs* may be re-used by the parser; holding
254 Signals the end of an element in non-namespace mode.
268 :ref:`attributes-ns-objects`)
271 as *attrs* may be re-used by the parser; holding on to a reference to it is not
303 used a more Java-like interface for this method. Since most parsers used from
314 whitespace (see the W3C XML 1.0 recommendation, section 2.10): non-validating
340 The Parser will invoke this method once for each entity skipped. Non-validating
347 .. _dtd-handler-objects:
350 ------------------
365 .. _entity-resolver-objects:
368 ----------------------
374 identifier to read from as a string, or an InputSource to read from. The default
378 .. _sax-error-handler:
381 --------------------
390 only parameter. Errors and warnings may be converted to an exception by raising
391 the passed-in exception object.