[Python-checkins] CVS: python/dist/src/Doc/lib xmldomminidom.tex,1.2,1.3

Fred L. Drake fdrake@users.sourceforge.net
Mon, 22 Jan 2001 11:06:22 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv30587/lib

Modified Files:
	xmldomminidom.tex 
Log Message:

Change some wording to make this work with PDF generation -- using a PDF
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.


Index: xmldomminidom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/xmldomminidom.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** xmldomminidom.tex	2000/12/07 04:47:51	1.2
--- xmldomminidom.tex	2001/01/22 19:06:20	1.3
***************
*** 215,220 ****
  \subsection{minidom and the DOM standard \label{minidom-and-dom}}
  
! \refmodule{xml.dom.minidom} is basically a DOM 1.0-compatible DOM with
! some DOM 2 features (primarily namespace features). 
  
  Usage of the DOM interface in Python is straight-forward.  The
--- 215,221 ----
  \subsection{minidom and the DOM standard \label{minidom-and-dom}}
  
! The \refmodule{xml.dom.minidom} module is essentially a DOM
! 1.0-compatible DOM with some DOM 2 features (primarily namespace
! features).
  
  Usage of the DOM interface in Python is straight-forward.  The