[Python-checkins] python/dist/src/Doc/lib libsgmllib.tex, 1.22,
1.22.36.1
fdrake at users.sourceforge.net
fdrake at users.sourceforge.net
Thu Dec 18 01:03:55 EST 2003
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv5108
Modified Files:
Tag: release23-maint
libsgmllib.tex
Log Message:
apply hackish work-arounds to make sure double hyphens aren't screwed
up in the generated HTML
(this won't be needed on the trunk)
Index: libsgmllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsgmllib.tex,v
retrieving revision 1.22
retrieving revision 1.22.36.1
diff -C2 -d -r1.22 -r1.22.36.1
*** libsgmllib.tex 5 Jul 2001 16:34:36 -0000 1.22
--- libsgmllib.tex 18 Dec 2003 06:03:53 -0000 1.22.36.1
***************
*** 34,40 ****
\item
! SGML comments of the form \samp{<!--\var{text}-->}. Note that
spaces, tabs, and newlines are allowed between the trailing
! \samp{>} and the immediately preceding \samp{--}.
\end{itemize}
--- 34,40 ----
\item
! SGML comments of the form \samp{<!-\code{-}\var{text}-\code{-}>}. Note that
spaces, tabs, and newlines are allowed between the trailing
! \samp{>} and the immediately preceding \samp{-\code{-}}.
\end{itemize}
***************
*** 51,55 ****
\begin{methoddesc}{setnomoretags}{}
Stop processing tags. Treat all following input as literal input
! (CDATA). (This is only provided so the HTML tag
\code{<PLAINTEXT>} can be implemented.)
\end{methoddesc}
--- 51,55 ----
\begin{methoddesc}{setnomoretags}{}
Stop processing tags. Treat all following input as literal input
! (CDATA). (This is only provided so the archaic HTML tag
\code{<PLAINTEXT>} can be implemented.)
\end{methoddesc}
***************
*** 141,146 ****
This method is called when a comment is encountered. The
\var{comment} argument is a string containing the text between the
! \samp{<!--} and \samp{-->} delimiters, but not the delimiters
! themselves. For example, the comment \samp{<!--text-->} will
cause this method to be called with the argument \code{'text'}. The
default method does nothing.
--- 141,146 ----
This method is called when a comment is encountered. The
\var{comment} argument is a string containing the text between the
! \samp{<!-\code{-}} and \samp{-\code{-}>} delimiters, but not the delimiters
! themselves. For example, the comment \samp{<!-\code{-}text-\code{-}>} will
cause this method to be called with the argument \code{'text'}. The
default method does nothing.
More information about the Python-checkins
mailing list