summaryrefslogtreecommitdiffstats
path: root/Doc/lib/xmldomminidom.tex
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-285/+0
|
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.
* SF Bug #1341934: Fix a representation of "\n" to use a proper tag.Hye-Shik Chang2005-10-301-1/+1
|
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-011-1/+1
|
* minor doc tweaks for writexmlSkip Montanaro2004-09-281-5/+9
|
* - make sure the methods minidom adds to the basic DOM are attributedFred Drake2004-03-251-15/+10
| | | | | | | to Node objects in the index (closes SF bug #832251) - fix a variety of markup nits Someone should backport this patch to Python 2.3.x.
* Change email address.Martin v. Löwis2003-04-181-1/+1
|
* Update an example to use the DOM implementation object. Explain thatFred Drake2002-10-241-8/+28
| | | | | the parse() and parseString() functions use a separate parser, not actually implement a parser. (This is a common question.)
* Implement the encoding argument for toxml and toprettyxml.Martin v. Löwis2002-06-301-1/+36
| | | | Document toprettyxml.
* Fix up a number of small problems with the DOM documentation.Fred Drake2001-10-261-14/+19
| | | | There's still a lot to do, but it's better now.
* Move the long minidom example to a separate file; \verbatiminput does theFred Drake2001-09-021-67/+1
| | | | | | right thing with page breaks in long examples, while the verbatim environment does not. This causes the example to wrap to the next page instead of overwriting the page footer and bottom margin.
* Change some wording to make this work with PDF generation -- using a PDFFred Drake2001-01-221-2/+3
| | | | | | hyperlink at the start of the paragraph confused pdflatex; it saw the link start while still in vertical mode, which is not allowed. Including text before the link forces horizontal mode.
* Lots of additional information. Not done, but much better.Fred Drake2000-12-071-5/+2
|
* Substantial re-organization of the DOM documentation. The abstract APIFred Drake2000-11-291-0/+294
is now separated from the supplied standard implementation. Not all interfaces are documented yet, but the structure is better set up to do so. There is still a lot to do here, but the shape of the documentation is coming into line.