Update of /cvsroot/py-howto/pyhowto
In directory usw-pr-cvs1:/tmp/cvs-serv5148
Modified Files:
xml-howto.tex
Log Message:
Fix a typo.
Add some additional references.
Convert the use of definition lists for references to "See also" sections.
Index: xml-howto.tex
===================================================================
RCS file: /cvsroot/py-howto/pyhowto/xml-howto.tex,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** xml-howto.tex 2001/09/20 02:34:28 1.11
--- xml-howto.tex 2001/09/20 03:04:32 1.12
***************
*** 117,121 ****
The rest of this HOWTO will assume that you're familiar with the
! relevant terminology. Most section will use XML terms such as
\emph{element} and \emph{attribute}; section~\ref{DOM} on the Document
Object Model will assume that you've read the relevant Working Draft,
--- 117,121 ----
The rest of this HOWTO will assume that you're familiar with the
! relevant terminology. Most sections will use XML terms such as
\emph{element} and \emph{attribute}; section~\ref{DOM} on the Document
Object Model will assume that you've read the relevant Working Draft,
***************
*** 126,129 ****
--- 126,140 ----
\subsection{Related Links}
+ \begin{seealso}
+ \seetitle[http://www.w3.org/XML/]{Extensible Markup Language (XML)}
+ {The World Wide Web Consortium's main page leading to
+ documents relating to XML. Start here for background
+ information and specifications.}
+ \seetitle[http://www.oasis-open.org/cover/sgml-xml.html]{The XML
+ Cover Pages}{Perhaps the leading index of information on
+ XML and SGML.}
+ \end{seealso}
+
+
\section{Installing the XML Toolkit}
***************
*** 176,186 ****
\subsection{Related Links}
! \begin{definitions}
! \term{\url{http://www.python.org/topics/xml/}}
! %
! This is the starting point for Python-related XML topics; it is
! updated to refer to all software, mailing lists, documentation, etc.
- \end{definitions}
\section{SAX: The Simple API for XML}
--- 187,197 ----
\subsection{Related Links}
! \begin{seealso}
! \seetitle[http://www.python.org/topics/xml/]{Python and XML
! Processing}{This is the starting point for Python-related
! XML topics; it is updated to refer to all software,
! mailing lists, documentation, etc.}
! \end{seealso}
\section{SAX: The Simple API for XML}
***************
*** 775,795 ****
\subsection{Related Links}
-
- \begin{definitions}
- \term{\url{http://www.w3.org/DOM/}}
- %
- The World Wide Web Consortium's DOM page.
-
- \term{\url{http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/}}
- %
- The DOM Level 1 Recommendation. Unlike most standards, this one is
- actually pretty readable, particularly if you're only interested in
- the Core XML interfaces.
-
- \end{definitions}
! \section{Glossary}
XML has given rise to a sea of acronyms and terms. This section will
--- 786,802 ----
\subsection{Related Links}
+ \begin{seealso}
+ \seetitle[http://www.w3.org/DOM/]{Document Object Model (DOM)}{The
+ World Wide Web Consortium's DOM page.}
+ \seetitle[http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/]
+ {Document Object Model (DOM) Level 1 Specification}{The DOM
+ Level 1 Recommendation. Unlike most standards, this one
+ is actually pretty readable, particularly if you're only
+ interested in the Core XML interfaces.}
+ \end{seealso}
! \section{Glossary \label{glossary}}
XML has given rise to a sea of acronyms and terms. This section will
|