| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Lib/xml/sax/xmlreader.py - import the exceptions this module can raise | Moshe Zadka | 2001-04-13 | 1 | -0/+3 |
| | | |||||
| * | Fixed minor problem with reset(). | Lars Gustäbel | 2000-10-14 | 1 | -1/+2 |
| | | |||||
| * | Added parent attribute with getters and setters on XMLFilterBase. | Lars Gustäbel | 2000-10-11 | 1 | -0/+12 |
| | | |||||
| * | _exceptions: Format a missing system id as <unknown>. | Martin v. Löwis | 2000-10-09 | 2 | -5/+7 |
| | | | | | expatreader: Use the error handler instead of raising exception directly. | ||||
| * | In an incremental parser, close the parser after feeding everything. | Martin v. Löwis | 2000-10-06 | 1 | -0/+1 |
| | | |||||
| * | Don't use a file object as system id; try to propagate the file name to | Martin v. Löwis | 2000-10-06 | 1 | -1/+3 |
| | | | | | the InputSource. | ||||
| * | Don't report a final chunk for an external entity parser. | Martin v. Löwis | 2000-10-06 | 1 | -1/+0 |
| | | |||||
| * | Move translation from expat.error to SAXParseException into feed, so that | Martin v. Löwis | 2000-10-06 | 1 | -17/+19 |
| | | | | | | | | | | | callers of feed will get a SAXException. In close, feed the last chunk first before calling endDocument, so that the parser may report errors before the end of the document. Don't do anything in a nested parser. Don't call endDocument in parse; that will be called in close. Use self._source for finding the SystemID; XML_GetBase will be cleared in case of an error. | ||||
| * | Add SAXReaderNotAvailable, and use it to distinguish between an | Martin v. Löwis | 2000-10-06 | 3 | -3/+25 |
| | | | | | ImportError, and a missing driver. | ||||
| * | Support non-namespace elements in *ElementNS of XMLGenerator. | Martin v. Löwis | 2000-10-03 | 1 | -2/+10 |
| | | |||||
| * | Use string functions instead of methods to allow sharing this module with PyXML | Martin v. Löwis | 2000-09-29 | 1 | -3/+5 |
| | | |||||
| * | Remove dependency from saxutils when loading xmlreader | Martin v. Löwis | 2000-09-29 | 1 | -2/+1 |
| | | |||||
| * | Fix handling of file inputs on Windows; passing them to urllib.urlopen() | Fred Drake | 2000-09-26 | 1 | -3/+5 |
| | | | | | | | | | caused the drive letter to cause urlopen() to think it was an unrecognized URL scheme. This only passes system ids to urlopen() if the file does not exist. It works on Windows & Unix. It should work everywhere else as well. | ||||
| * | Fix inconsistent use of space/tabs. | Thomas Wouters | 2000-09-25 | 1 | -4/+4 |
| | | |||||
| * | [Patch 101634] | Martin v. Löwis | 2000-09-24 | 2 | -26/+11 |
| | | | | | | | | xml.sax: Fix parse and parseString not to rely on ExpatParser Greatly simplify import logic by using __import__ saxutils: Support Unicode strings and files as parameters to prepare_input_source | ||||
| * | Find feature names in handler. | Martin v. Löwis | 2000-09-24 | 1 | -3/+3 |
| | | |||||
| * | Fixed another bug. | Lars Gustäbel | 2000-09-24 | 1 | -1/+0 |
| | | |||||
| * | Improvements to doco strings. | Lars Gustäbel | 2000-09-24 | 4 | -14/+27 |
| | | | | | Tiny bug fix to expatreader.py (endDocument was only called after errors). | ||||
| * | Added EntityResolver and DTDHandler (patch 101631) with test cases. | Lars Gustäbel | 2000-09-24 | 3 | -21/+54 |
| | | |||||
| * | Added back the InputSource class (patch 101630). | Lars Gustäbel | 2000-09-24 | 4 | -31/+138 |
| | | |||||
| * | Updated to final Attributes interface (patch 101632). | Lars Gustäbel | 2000-09-24 | 2 | -13/+72 |
| | | |||||
| * | Updated to new *NS signatures (patch 101573). | Lars Gustäbel | 2000-09-24 | 1 | -25/+25 |
| | | |||||
| * | Added back missing argument to ignorableWhitespace signature. | Lars Gustäbel | 2000-09-24 | 1 | -1/+1 |
| | | |||||
| * | Bug fix to namespace handling in XMLGenerator (now adds declarations). | Lars Gustäbel | 2000-09-24 | 1 | -5/+13 |
| | | | | | | Bug fixes to XMLFilterBase (wrong ignorableWhitespace signature and did not inherit set*Handler methods from XMLReader.) | ||||
| * | Conform more closely with the Python style guide. | Fred Drake | 2000-09-23 | 1 | -11/+11 |
| | | |||||
| * | Use the public name for the Expat parser; "pyexpat" is deprecated. | Fred Drake | 2000-09-23 | 1 | -11/+7 |
| | | |||||
| * | More whitespace cleanup, to satisfy tabnanny.py. Don't trust -tt! | Guido van Rossum | 2000-09-22 | 1 | -15/+15 |
| | | |||||
| * | White space cleanup, including one item that was an error under -tt. | Fred Drake | 2000-09-22 | 1 | -5/+5 |
| | | |||||
| * | Paul Prescod <paul@prescod.net>: | Fred Drake | 2000-09-21 | 1 | -17/+27 |
| | | | | | | | | | | Add support for parsing already-opened files. Make sure the parse() method closes exactly those files that it opens. Modified by FLD for better conformance to the Python style guide. This closes SourceForge patch #101512. | ||||
| * | SAXException.__getitem__(): Raise AttributeError instead of NameError. | Fred Drake | 2000-09-21 | 1 | -1/+1 |
| | | |||||
| * | fix bogus references to imp; makes test_minidom succeed | Jeremy Hylton | 2000-09-21 | 1 | -2/+2 |
| | | |||||
| * | Added the make_parser function (patch 101571). | Lars Gustäbel | 2000-09-21 | 1 | -2/+67 |
| | | |||||
| * | Updated XMLGenerator to new DocumentHandler interface (patch 101572). | Lars Gustäbel | 2000-09-21 | 1 | -11/+30 |
| | | |||||
| * | Updated to correct DocumentHandler signatures. (patch 101570) | Lars Gustäbel | 2000-09-21 | 1 | -6/+23 |
| | | |||||
| * | Reduce the number of imports needed. | Fred Drake | 2000-09-18 | 1 | -20/+23 |
| | | | | | Make the code conform better to the Python style guide. | ||||
| * | Remove two unnecessary imports. | Fred Drake | 2000-09-18 | 1 | -26/+26 |
| | | | | | | | | Update the module docstring to reflect the actual list of modules in the xml.sax package. Make the code better conform to the Python style guide. | ||||
| * | Once we're done with the sys module, remove it from the namespace so | Fred Drake | 2000-09-18 | 1 | -13/+11 |
| | | | | | this module is "import *" safe. | ||||
| * | Fixed some typos. Removed one obsolete comment. | Paul Prescod | 2000-09-15 | 1 | -3/+2 |
| | | |||||
| * | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| | | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
| * | fix inconsistent use of tabs and spaces | Jeremy Hylton | 2000-07-07 | 1 | -10/+10 |
| | | |||||
| * | fixed indentation in several places | Skip Montanaro | 2000-07-06 | 1 | -19/+19 |
| | | |||||
| * | fix indentation in one docstring | Skip Montanaro | 2000-07-06 | 1 | -1/+1 |
| | | |||||
| * | fix indentation in three docstrings | Skip Montanaro | 2000-07-06 | 1 | -3/+3 |
| | | |||||
| * | Used original SAX handling form. | Paul Prescod | 2000-07-04 | 1 | -11/+10 |
| | | |||||
| * | Removed unncessary dependency. | Paul Prescod | 2000-07-01 | 1 | -1/+1 |
| | | |||||
| * | Tightened xml.sax.__init__.py | Paul Prescod | 2000-07-01 | 1 | -5/+5 |
| | | |||||
| * | Reference cycle fixes | Paul Prescod | 2000-07-01 | 1 | -0/+24 |
| | | |||||
| * | Paul Prescod <paul@prescod.net>: | Fred Drake | 2000-06-29 | 5 | -0/+960 |
| | | | | | SAX interfaces for Python. | ||||
| * | Package docstring and initialization. | Fred Drake | 2000-06-29 | 1 | -0/+25 |
