Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{xmllib} --- |
Fred Drake | 3425011 | 1999-02-19 23:45:06 +0000 | [diff] [blame] | 2 | A parser for XML documents} |
| 3 | |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{xmllib} |
Fred Drake | 3425011 | 1999-02-19 23:45:06 +0000 | [diff] [blame] | 5 | \modulesynopsis{A parser for XML documents.} |
Fred Drake | 191f285 | 1998-12-22 18:06:02 +0000 | [diff] [blame] | 6 | \moduleauthor{Sjoerd Mullender}{Sjoerd.Mullender@cwi.nl} |
| 7 | \sectionauthor{Sjoerd Mullender}{Sjoerd.Mullender@cwi.nl} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 8 | |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 9 | |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 10 | \index{XML} |
Fred Drake | 5cb48a4 | 1998-12-22 18:46:13 +0000 | [diff] [blame] | 11 | \index{Extensible Markup Language} |
| 12 | |
Fred Drake | 296b8f5 | 2000-10-02 22:14:09 +0000 | [diff] [blame] | 13 | \deprecated{2.0}{Use \refmodule{xml.sax} instead. The newer XML |
| 14 | package includes full support for XML 1.0.} |
| 15 | |
Fred Drake | 806d332 | 2001-11-06 22:10:47 +0000 | [diff] [blame^] | 16 | \versionchanged[Added namespace support]{1.5.2} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 17 | |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 18 | This module defines a class \class{XMLParser} which serves as the basis |
Fred Drake | 5cb48a4 | 1998-12-22 18:46:13 +0000 | [diff] [blame] | 19 | for parsing text files formatted in XML (Extensible Markup Language). |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 20 | |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 21 | \begin{classdesc}{XMLParser}{} |
Guido van Rossum | e7f1920 | 1999-08-26 15:57:44 +0000 | [diff] [blame] | 22 | The \class{XMLParser} class must be instantiated without |
| 23 | arguments.\footnote{Actually, a number of keyword arguments are |
| 24 | recognized which influence the parser to accept certain non-standard |
| 25 | constructs. The following keyword arguments are currently |
Fred Drake | 011028c | 2000-07-06 04:45:14 +0000 | [diff] [blame] | 26 | recognized. The defaults for all of these is \code{0} (false) except |
| 27 | for the last one for which the default is \code{1} (true). |
Guido van Rossum | e7f1920 | 1999-08-26 15:57:44 +0000 | [diff] [blame] | 28 | \var{accept_unquoted_attributes} (accept certain attribute values |
| 29 | without requiring quotes), \var{accept_missing_endtag_name} (accept |
| 30 | end tags that look like \code{</>}), \var{map_case} (map upper case to |
| 31 | lower case in tags and attributes), \var{accept_utf8} (allow UTF-8 |
| 32 | characters in input; this is required according to the XML standard, |
| 33 | but Python does not as yet deal properly with these characters, so |
Fred Drake | 011028c | 2000-07-06 04:45:14 +0000 | [diff] [blame] | 34 | this is not the default), \var{translate_attribute_references} (don't |
| 35 | attempt to translate character and entity references in attribute values).} |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 36 | \end{classdesc} |
| 37 | |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 38 | This class provides the following interface methods and instance variables: |
| 39 | |
| 40 | \begin{memberdesc}{attributes} |
| 41 | A mapping of element names to mappings. The latter mapping maps |
| 42 | attribute names that are valid for the element to the default value of |
| 43 | the attribute, or if there is no default to \code{None}. The default |
Guido van Rossum | 09da65e | 1999-02-02 17:55:12 +0000 | [diff] [blame] | 44 | value is the empty dictionary. This variable is meant to be |
| 45 | overridden, not extended since the default is shared by all instances |
| 46 | of \class{XMLParser}. |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 47 | \end{memberdesc} |
| 48 | |
| 49 | \begin{memberdesc}{elements} |
| 50 | A mapping of element names to tuples. The tuples contain a function |
| 51 | for handling the start and end tag respectively of the element, or |
| 52 | \code{None} if the method \method{unknown_starttag()} or |
| 53 | \method{unknown_endtag()} is to be called. The default value is the |
Guido van Rossum | 09da65e | 1999-02-02 17:55:12 +0000 | [diff] [blame] | 54 | empty dictionary. This variable is meant to be overridden, not |
| 55 | extended since the default is shared by all instances of |
| 56 | \class{XMLParser}. |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 57 | \end{memberdesc} |
| 58 | |
| 59 | \begin{memberdesc}{entitydefs} |
| 60 | A mapping of entitynames to their values. The default value contains |
| 61 | definitions for \code{'lt'}, \code{'gt'}, \code{'amp'}, \code{'quot'}, |
| 62 | and \code{'apos'}. |
| 63 | \end{memberdesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 64 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 65 | \begin{methoddesc}{reset}{} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 66 | Reset the instance. Loses all unprocessed data. This is called |
| 67 | implicitly at the instantiation time. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 68 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 69 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 70 | \begin{methoddesc}{setnomoretags}{} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 71 | Stop processing tags. Treat all following input as literal input |
| 72 | (CDATA). |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 73 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 74 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 75 | \begin{methoddesc}{setliteral}{} |
Guido van Rossum | f484a33 | 1998-12-07 21:59:56 +0000 | [diff] [blame] | 76 | Enter literal mode (CDATA mode). This mode is automatically exited |
| 77 | when the close tag matching the last unclosed open tag is encountered. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 78 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 79 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 80 | \begin{methoddesc}{feed}{data} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 81 | Feed some text to the parser. It is processed insofar as it consists |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 82 | of complete tags; incomplete data is buffered until more data is |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 83 | fed or \method{close()} is called. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 84 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 85 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 86 | \begin{methoddesc}{close}{} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 87 | Force processing of all buffered data as if it were followed by an |
| 88 | end-of-file mark. This method may be redefined by a derived class to |
| 89 | define additional processing at the end of the input, but the |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 90 | redefined version should always call \method{close()}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 91 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 92 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 93 | \begin{methoddesc}{translate_references}{data} |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 94 | Translate all entity and character references in \var{data} and |
Fred Drake | d8a41e6 | 1999-02-19 17:54:10 +0000 | [diff] [blame] | 95 | return the translated string. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 96 | \end{methoddesc} |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 97 | |
Sjoerd Mullender | 1c8feae | 2000-08-31 10:27:00 +0000 | [diff] [blame] | 98 | \begin{methoddesc}{getnamespace}{} |
| 99 | Return a mapping of namespace abbreviations to namespace URIs that are |
| 100 | currently in effect. |
| 101 | \end{methoddesc} |
| 102 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 103 | \begin{methoddesc}{handle_xml}{encoding, standalone} |
| 104 | This method is called when the \samp{<?xml ...?>} tag is processed. |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 105 | The arguments are the values of the encoding and standalone attributes |
| 106 | in the tag. Both encoding and standalone are optional. The values |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 107 | passed to \method{handle_xml()} default to \code{None} and the string |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 108 | \code{'no'} respectively. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 109 | \end{methoddesc} |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 110 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 111 | \begin{methoddesc}{handle_doctype}{tag, pubid, syslit, data} |
Fred Drake | 46479d3 | 2000-08-11 20:34:27 +0000 | [diff] [blame] | 112 | This\index{DOCTYPE declaration} method is called when the |
| 113 | \samp{<!DOCTYPE...>} declaration is processed. The arguments are the |
| 114 | tag name of the root element, the Formal Public\index{Formal Public |
| 115 | Identifier} Identifier (or \code{None} if not specified), the system |
| 116 | identifier, and the uninterpreted contents of the internal DTD subset |
| 117 | as a string (or \code{None} if not present). |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 118 | \end{methoddesc} |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 119 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 120 | \begin{methoddesc}{handle_starttag}{tag, method, attributes} |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 121 | This method is called to handle start tags for which a start tag |
| 122 | handler is defined in the instance variable \member{elements}. The |
Fred Drake | 46479d3 | 2000-08-11 20:34:27 +0000 | [diff] [blame] | 123 | \var{tag} argument is the name of the tag, and the |
| 124 | \var{method} argument is the function (method) which should be used to |
| 125 | support semantic interpretation of the start tag. The |
| 126 | \var{attributes} argument is a dictionary of attributes, the key being |
| 127 | the \var{name} and the value being the \var{value} of the attribute |
| 128 | found inside the tag's \code{<>} brackets. Character and entity |
| 129 | references in the \var{value} have been interpreted. For instance, |
| 130 | for the start tag \code{<A HREF="http://www.cwi.nl/">}, this method |
| 131 | would be called as \code{handle_starttag('A', self.elements['A'][0], |
| 132 | \{'HREF': 'http://www.cwi.nl/'\})}. The base implementation simply |
| 133 | calls \var{method} with \var{attributes} as the only argument. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 134 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 135 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 136 | \begin{methoddesc}{handle_endtag}{tag, method} |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 137 | This method is called to handle endtags for which an end tag handler |
| 138 | is defined in the instance variable \member{elements}. The \var{tag} |
| 139 | argument is the name of the tag, and the \var{method} argument is the |
| 140 | function (method) which should be used to support semantic |
| 141 | interpretation of the end tag. For instance, for the endtag |
| 142 | \code{</A>}, this method would be called as \code{handle_endtag('A', |
| 143 | self.elements['A'][1])}. The base implementation simply calls |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 144 | \var{method}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 145 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 146 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 147 | \begin{methoddesc}{handle_data}{data} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 148 | This method is called to process arbitrary data. It is intended to be |
| 149 | overridden by a derived class; the base class implementation does |
| 150 | nothing. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 151 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 152 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 153 | \begin{methoddesc}{handle_charref}{ref} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 154 | This method is called to process a character reference of the form |
Fred Drake | 7f6e2c4 | 1998-02-13 14:38:23 +0000 | [diff] [blame] | 155 | \samp{\&\#\var{ref};}. \var{ref} can either be a decimal number, |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 156 | or a hexadecimal number when preceded by an \character{x}. |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 157 | In the base implementation, \var{ref} must be a number in the |
| 158 | range 0-255. It translates the character to \ASCII{} and calls the |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 159 | method \method{handle_data()} with the character as argument. If |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 160 | \var{ref} is invalid or out of range, the method |
| 161 | \code{unknown_charref(\var{ref})} is called to handle the error. A |
| 162 | subclass must override this method to provide support for character |
| 163 | references outside of the \ASCII{} range. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 164 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 165 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 166 | \begin{methoddesc}{handle_comment}{comment} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 167 | This method is called when a comment is encountered. The |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 168 | \var{comment} argument is a string containing the text between the |
Fred Drake | 7f6e2c4 | 1998-02-13 14:38:23 +0000 | [diff] [blame] | 169 | \samp{<!--} and \samp{-->} delimiters, but not the delimiters |
| 170 | themselves. For example, the comment \samp{<!--text-->} will |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 171 | cause this method to be called with the argument \code{'text'}. The |
| 172 | default method does nothing. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 173 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 174 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 175 | \begin{methoddesc}{handle_cdata}{data} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 176 | This method is called when a CDATA element is encountered. The |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 177 | \var{data} argument is a string containing the text between the |
Fred Drake | 7f6e2c4 | 1998-02-13 14:38:23 +0000 | [diff] [blame] | 178 | \samp{<![CDATA[} and \samp{]]>} delimiters, but not the delimiters |
| 179 | themselves. For example, the entity \samp{<![CDATA[text]]>} will |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 180 | cause this method to be called with the argument \code{'text'}. The |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 181 | default method does nothing, and is intended to be overridden. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 182 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 183 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 184 | \begin{methoddesc}{handle_proc}{name, data} |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 185 | This method is called when a processing instruction (PI) is |
| 186 | encountered. The \var{name} is the PI target, and the \var{data} |
| 187 | argument is a string containing the text between the PI target and the |
| 188 | closing delimiter, but not the delimiter itself. For example, the |
| 189 | instruction \samp{<?XML text?>} will cause this method to be called |
| 190 | with the arguments \code{'XML'} and \code{'text'}. The default method |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 191 | does nothing. Note that if a document starts with \samp{<?xml |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 192 | ..?>}, \method{handle_xml()} is called to handle it. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 193 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 194 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 195 | \begin{methoddesc}{handle_special}{data} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 196 | This method is called when a declaration is encountered. The |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 197 | \var{data} argument is a string containing the text between the |
Fred Drake | 7f6e2c4 | 1998-02-13 14:38:23 +0000 | [diff] [blame] | 198 | \samp{<!} and \samp{>} delimiters, but not the delimiters |
Fred Drake | 46479d3 | 2000-08-11 20:34:27 +0000 | [diff] [blame] | 199 | themselves. For example, the \index{ENTITY declaration}entity |
| 200 | declaration \samp{<!ENTITY text>} will cause this method to be called |
| 201 | with the argument \code{'ENTITY text'}. The default method does |
| 202 | nothing. Note that \samp{<!DOCTYPE ...>} is handled separately if it |
| 203 | is located at the start of the document. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 204 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 205 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 206 | \begin{methoddesc}{syntax_error}{message} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 207 | This method is called when a syntax error is encountered. The |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 208 | \var{message} is a description of what was wrong. The default method |
| 209 | raises a \exception{RuntimeError} exception. If this method is |
Thomas Wouters | f831663 | 2000-07-16 19:01:10 +0000 | [diff] [blame] | 210 | overridden, it is permissible for it to return. This method is only |
Fred Drake | 3b5da76 | 1998-03-12 15:33:05 +0000 | [diff] [blame] | 211 | called when the error can be recovered from. Unrecoverable errors |
| 212 | raise a \exception{RuntimeError} without first calling |
| 213 | \method{syntax_error()}. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 214 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 215 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 216 | \begin{methoddesc}{unknown_starttag}{tag, attributes} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 217 | This method is called to process an unknown start tag. It is intended |
| 218 | to be overridden by a derived class; the base class implementation |
| 219 | does nothing. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 220 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 221 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 222 | \begin{methoddesc}{unknown_endtag}{tag} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 223 | This method is called to process an unknown end tag. It is intended |
| 224 | to be overridden by a derived class; the base class implementation |
| 225 | does nothing. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 226 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 227 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 228 | \begin{methoddesc}{unknown_charref}{ref} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 229 | This method is called to process unresolvable numeric character |
| 230 | references. It is intended to be overridden by a derived class; the |
| 231 | base class implementation does nothing. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 232 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 233 | |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 234 | \begin{methoddesc}{unknown_entityref}{ref} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 235 | This method is called to process an unknown entity reference. It is |
| 236 | intended to be overridden by a derived class; the base class |
Guido van Rossum | e7f1920 | 1999-08-26 15:57:44 +0000 | [diff] [blame] | 237 | implementation calls \method{syntax_error()} to signal an error. |
Fred Drake | fc57619 | 1998-04-04 07:15:02 +0000 | [diff] [blame] | 238 | \end{methoddesc} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 239 | |
Fred Drake | 3425011 | 1999-02-19 23:45:06 +0000 | [diff] [blame] | 240 | |
Fred Drake | c8c40ff | 1999-04-22 20:16:02 +0000 | [diff] [blame] | 241 | \begin{seealso} |
Fred Drake | ae86d43 | 2000-09-12 17:53:48 +0000 | [diff] [blame] | 242 | \seetitle[http://www.w3.org/TR/REC-xml]{Extensible Markup Language |
| 243 | (XML) 1.0}{The XML specification, published by the World |
| 244 | Wide Web Consortium (W3C), defines the syntax and |
| 245 | processor requirements for XML. References to additional |
| 246 | material on XML, including translations of the |
| 247 | specification, are available at |
| 248 | \url{http://www.w3.org/XML/}.} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 249 | |
Fred Drake | ae86d43 | 2000-09-12 17:53:48 +0000 | [diff] [blame] | 250 | \seetitle[http://www.python.org/topics/xml/]{Python and XML |
| 251 | Processing}{The Python XML Topic Guide provides a great |
| 252 | deal of information on using XML from Python and links to |
| 253 | other sources of information on XML.} |
Fred Drake | c8c40ff | 1999-04-22 20:16:02 +0000 | [diff] [blame] | 254 | |
Fred Drake | ae86d43 | 2000-09-12 17:53:48 +0000 | [diff] [blame] | 255 | \seetitle[http://www.python.org/sigs/xml-sig/]{SIG for XML |
| 256 | Processing in Python}{The Python XML Special Interest |
| 257 | Group is developing substantial support for processing XML |
| 258 | from Python.} |
Fred Drake | c8c40ff | 1999-04-22 20:16:02 +0000 | [diff] [blame] | 259 | \end{seealso} |
| 260 | |
| 261 | |
Fred Drake | 3425011 | 1999-02-19 23:45:06 +0000 | [diff] [blame] | 262 | \subsection{XML Namespaces \label{xml-namespace}} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 263 | |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 264 | This module has support for XML namespaces as defined in the XML |
| 265 | Namespaces proposed recommendation. |
Fred Drake | 3425011 | 1999-02-19 23:45:06 +0000 | [diff] [blame] | 266 | \indexii{XML}{namespaces} |
Guido van Rossum | a10768a | 1997-11-18 15:11:22 +0000 | [diff] [blame] | 267 | |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 268 | Tag and attribute names that are defined in an XML namespace are |
| 269 | handled as if the name of the tag or element consisted of the |
Fred Drake | 907e76b | 2001-07-06 20:30:11 +0000 | [diff] [blame] | 270 | namespace (the URL that defines the namespace) followed by a |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 271 | space and the name of the tag or attribute. For instance, the tag |
| 272 | \code{<html xmlns='http://www.w3.org/TR/REC-html40'>} is treated as if |
| 273 | the tag name was \code{'http://www.w3.org/TR/REC-html40 html'}, and |
| 274 | the tag \code{<html:a href='http://frob.com'>} inside the above |
| 275 | mentioned element is treated as if the tag name were |
| 276 | \code{'http://www.w3.org/TR/REC-html40 a'} and the attribute name as |
Fred Drake | 2c4f554 | 2000-10-10 22:00:03 +0000 | [diff] [blame] | 277 | if it were \code{'http://www.w3.org/TR/REC-html40 href'}. |
Guido van Rossum | 02505e4 | 1998-01-29 14:55:24 +0000 | [diff] [blame] | 278 | |
Guido van Rossum | b083a9f | 1998-12-18 20:17:13 +0000 | [diff] [blame] | 279 | An older draft of the XML Namespaces proposal is also recognized, but |
| 280 | triggers a warning. |
Fred Drake | ae86d43 | 2000-09-12 17:53:48 +0000 | [diff] [blame] | 281 | |
| 282 | \begin{seealso} |
| 283 | \seetitle[http://www.w3.org/TR/REC-xml-names/]{Namespaces in XML}{ |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 284 | This World Wide Web Consortium recommendation describes the |
Fred Drake | ae86d43 | 2000-09-12 17:53:48 +0000 | [diff] [blame] | 285 | proper syntax and processing requirements for namespaces in |
| 286 | XML.} |
| 287 | \end{seealso} |