summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-05 02:24:39 (GMT)
committerFred Drake <fdrake@acm.org>2000-07-05 02:24:39 (GMT)
commitb5316188ee5f197b5a15db6671718839170be409 (patch)
tree42fa96099be27861359999db3aae96cc72eb33f9
parentc05cbb05270405afe1ffc2c3f3c659ecb778b212 (diff)
downloadcpython-b5316188ee5f197b5a15db6671718839170be409.zip
cpython-b5316188ee5f197b5a15db6671718839170be409.tar.gz
cpython-b5316188ee5f197b5a15db6671718839170be409.tar.bz2
Created a new chapter on structured markup processing, including the
existing SGML, HTML, & XML support, and providing a home for the new XML support as it becomes documented.
-rw-r--r--Doc/Makefile.deps2
-rw-r--r--Doc/lib/lib.tex11
-rw-r--r--Doc/lib/markup.tex10
3 files changed, 19 insertions, 4 deletions
diff --git a/Doc/Makefile.deps b/Doc/Makefile.deps
index 7fbdd6b..9a547bb 100644
--- a/Doc/Makefile.deps
+++ b/Doc/Makefile.deps
@@ -166,6 +166,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
../lib/libuserdict.tex \
../lib/libdis.tex \
../lib/libxmllib.tex \
+ ../lib/libpyexpat.tex \
../lib/libqueue.tex \
../lib/liblocale.tex \
../lib/libbasehttp.tex \
@@ -187,6 +188,7 @@ LIBFILES= $(MANSTYLES) $(COMMONTEX) \
../lib/libthreading.tex \
../lib/internet.tex \
../lib/netdata.tex \
+ ../lib/markup.tex \
../lib/libpycompile.tex \
../lib/libcompileall.tex \
../lib/libshlex.tex \
diff --git a/Doc/lib/lib.tex b/Doc/lib/lib.tex
index 2eaa1e5..79a226b 100644
--- a/Doc/lib/lib.tex
+++ b/Doc/lib/lib.tex
@@ -215,9 +215,6 @@ and how to embed it in other applications.
\input{libasyncore}
\input{netdata} % Internet Data Handling
-\input{libsgmllib}
-\input{libhtmllib}
-\input{libxmllib}
\input{libformatter}
\input{librfc822}
\input{libmimetools}
@@ -237,7 +234,13 @@ and how to embed it in other applications.
\input{libnetrc}
\input{librobotparser}
-\input{librestricted}
+\input{markup} % Structured Markup Processing Tools
+\input{libsgmllib}
+\input{libhtmllib}
+\input{libxmllib}
+\input{libpyexpat}
+
+\input{librestricted} % Restricted Execution
\input{librexec}
\input{libbastion}
diff --git a/Doc/lib/markup.tex b/Doc/lib/markup.tex
new file mode 100644
index 0000000..66934c4
--- /dev/null
+++ b/Doc/lib/markup.tex
@@ -0,0 +1,10 @@
+\chapter{Structured Markup Processing Tools
+ \label{markup}}
+
+Python supports a variety of modules to work with various forms of
+structured data markup. This includes modules to work with the
+Standard Generalized Markup Language (SGML) and the Hypertext Markup
+Language (HTML), and several interfaces for working with the
+Extensible Markup Language (XML).
+
+\localmoduletable