summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2004-05-17 08:19:52 +0000
committerMike Hommey <mh@glandium.org>2004-05-17 08:19:52 +0000
commitee4e24c6210ad1795eaff631ecfd0b58ea21541f (patch)
treef102307713d68ded1d494c2c9be51038906502d7
parentb80239e51945c3c9ab5d10697c1ce0a26fe03713 (diff)
downloadlibxml2-ee4e24c6210ad1795eaff631ecfd0b58ea21541f.tar.gz
Finalize release 2.6.10-1
-rwxr-xr-xconfig.guess39
-rwxr-xr-xconfig.sub28
-rw-r--r--debian/changelog8
-rwxr-xr-xdebian/rules2
-rw-r--r--doc/index.html362
5 files changed, 333 insertions, 106 deletions
diff --git a/config.guess b/config.guess
index e8c6fc0..51fab47 100755
--- a/config.guess
+++ b/config.guess
@@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
-timestamp='2004-01-05'
+timestamp='2004-03-12'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -197,12 +197,18 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
echo "${machine}-${os}${release}"
exit 0 ;;
+ amd64:OpenBSD:*:*)
+ echo x86_64-unknown-openbsd${UNAME_RELEASE}
+ exit 0 ;;
amiga:OpenBSD:*:*)
echo m68k-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
arc:OpenBSD:*:*)
echo mipsel-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
+ cats:OpenBSD:*:*)
+ echo arm-unknown-openbsd${UNAME_RELEASE}
+ exit 0 ;;
hp300:OpenBSD:*:*)
echo m68k-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
@@ -239,10 +245,24 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
*:OpenBSD:*:*)
echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
exit 0 ;;
+ *:ekkoBSD:*:*)
+ echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
+ exit 0 ;;
+ macppc:MirBSD:*:*)
+ echo powerppc-unknown-mirbsd${UNAME_RELEASE}
+ exit 0 ;;
+ *:MirBSD:*:*)
+ echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
+ exit 0 ;;
alpha:OSF1:*:*)
- if test $UNAME_RELEASE = "V4.0"; then
+ case $UNAME_RELEASE in
+ *4.0)
UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
- fi
+ ;;
+ *5.*)
+ UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
+ ;;
+ esac
# According to Compaq, /usr/sbin/psrinfo has been available on
# OSF/1 and Tru64 systems produced since 1995. I hope that
# covers most systems running today. This code pipes the CPU
@@ -280,11 +300,12 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
"EV7.9 (21364A)")
UNAME_MACHINE="alphaev79" ;;
esac
+ # A Pn.n version is a patched version.
# A Vn.n version is a released version.
# A Tn.n version is a released field test version.
# A Xn.n version is an unreleased experimental baselevel.
# 1.2 uses "1.2" for uname -r.
- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
+ echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
exit 0 ;;
Alpha*:OpenVMS:*:*)
echo alpha-hp-vms
@@ -405,6 +426,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
*:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
echo m68k-unknown-mint${UNAME_RELEASE}
exit 0 ;;
+ m68k:machten:*:*)
+ echo m68k-apple-machten${UNAME_RELEASE}
+ exit 0 ;;
powerpc:machten:*:*)
echo powerpc-apple-machten${UNAME_RELEASE}
exit 0 ;;
@@ -829,6 +853,9 @@ EOF
ia64:Linux:*:*)
echo ${UNAME_MACHINE}-unknown-linux-gnu
exit 0 ;;
+ m32r*:Linux:*:*)
+ echo ${UNAME_MACHINE}-unknown-linux-gnu
+ exit 0 ;;
m68*:Linux:*:*)
echo ${UNAME_MACHINE}-unknown-linux-gnu
exit 0 ;;
@@ -1230,8 +1257,8 @@ EOF
SEI:*:*:SEIUX)
echo mips-sei-seiux${UNAME_RELEASE}
exit 0 ;;
- *:DRAGONFLY:*:*)
- echo ${UNAME_MACHINE}-unknown-dragonfly${UNAME_RELEASE}
+ *:DragonFly:*:*)
+ echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
exit 0 ;;
esac
diff --git a/config.sub b/config.sub
index 463186d..ba33103 100755
--- a/config.sub
+++ b/config.sub
@@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
-timestamp='2004-01-05'
+timestamp='2004-03-12'
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software
@@ -237,7 +237,7 @@ case $basic_machine in
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
| i370 | i860 | i960 | ia64 \
| ip2k | iq2000 \
- | m32r | m68000 | m68k | m88k | mcore \
+ | m32r | m32rle | m68000 | m68k | m88k | mcore \
| mips | mipsbe | mipseb | mipsel | mipsle \
| mips16 \
| mips64 | mips64el \
@@ -262,7 +262,7 @@ case $basic_machine in
| pyramid \
| sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
| sh64 | sh64le \
- | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \
+ | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \
| strongarm \
| tahoe | thumb | tic4x | tic80 | tron \
| v850 | v850e \
@@ -308,7 +308,7 @@ case $basic_machine in
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
| i*86-* | i860-* | i960-* | ia64-* \
| ip2k-* | iq2000-* \
- | m32r-* \
+ | m32r-* | m32rle-* \
| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
| m88110-* | m88k-* | mcore-* \
| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
@@ -336,7 +336,7 @@ case $basic_machine in
| sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
| sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
- | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
+ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
| tahoe-* | thumb-* \
| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
| tron-* \
@@ -363,6 +363,9 @@ case $basic_machine in
basic_machine=a29k-amd
os=-udi
;;
+ abacus)
+ basic_machine=abacus-unknown
+ ;;
adobe68k)
basic_machine=m68010-adobe
os=-scout
@@ -442,12 +445,20 @@ case $basic_machine in
basic_machine=j90-cray
os=-unicos
;;
+ cr16c)
+ basic_machine=cr16c-unknown
+ os=-elf
+ ;;
crds | unos)
basic_machine=m68k-crds
;;
cris | cris-* | etrax*)
basic_machine=cris-axis
;;
+ crx)
+ basic_machine=crx-unknown
+ os=-elf
+ ;;
da30 | da30-*)
basic_machine=m68k-da30
;;
@@ -1070,7 +1081,7 @@ case $basic_machine in
sh64)
basic_machine=sh64-unknown
;;
- sparc | sparcv9 | sparcv9b)
+ sparc | sparcv8 | sparcv9 | sparcv9b)
basic_machine=sparc-sun
;;
cydra)
@@ -1143,8 +1154,9 @@ case $os in
| -aos* \
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
- | -hiux* | -386bsd* | -knetbsd* | -netbsd* | -openbsd* | -kfreebsd* | -freebsd* | -riscix* \
- | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
+ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
+ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
+ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
| -chorusos* | -chorusrdb* \
diff --git a/debian/changelog b/debian/changelog
index 8d55d13..0594d1c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,12 @@
libxml2 (2.6.10-1) unstable; urgency=low
- * (NOT RELEASED YET) New upstream release
+ * New upstream release:
+ + Fixes xincludes fallback issues. Closes: #243580.
+ + Fixes output formatting issues. Closes: #246181.
+ * debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.10)'", since
+ version 2.6.10 introduces some few new functions.
- -- Mike Hommey <mh@glandium.org> Mon, 17 May 2004 16:03:18 +0900
+ -- Mike Hommey <mh@glandium.org> Mon, 17 May 2004 17:16:44 +0900
libxml2 (2.6.9-2) unstable; urgency=low
diff --git a/debian/rules b/debian/rules
index a640bc4..3eddfbd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -80,7 +80,7 @@ binary-arch: build install
dh_strip
dh_compress
dh_fixperms
- dh_makeshlibs -V 'libxml2 (>= 2.6.8)'
+ dh_makeshlibs -V 'libxml2 (>= 2.6.10)'
dh_installdeb
dh_shlibdeps
dh_gencontrol
diff --git a/doc/index.html b/doc/index.html
index 0bb2873..1ef7dc9 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -12,7 +12,8 @@ H2 {font-family: Verdana,Arial,Helvetica}
H3 {font-family: Verdana,Arial,Helvetica}
A:link, A:visited, A:active { text-decoration: underline }
</style>
- <title>The XML C parser and toolkit of Gnome</title>
+ <title>The XML C parser and toolkit of Gnome
+</title>
</head>
<body bgcolor="#8b7765" text="#000000" link="#000000" vlink="#000000">
<table border="0" width="100%" cellpadding="5" cellspacing="0" align="center">
@@ -45,8 +46,10 @@ A:link, A:visited, A:active { text-decoration: underline }
<table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd">
<tr>
<td align="center">
- <h1>The XML C parser and toolkit of Gnome</h1>
- <h2>libxml</h2>
+ <h1>The XML C parser and toolkit of Gnome
+</h1>
+ <h2>libxml
+</h2>
</td>
</tr>
</table>
@@ -69,7 +72,8 @@ A:link, A:visited, A:active { text-decoration: underline }
<tr>
<td colspan="1" bgcolor="#eecfa1" align="center">
<center>
- <b>Main Menu</b>
+ <b>Main Menu
+</b>
</center>
</td>
</tr>
@@ -81,61 +85,80 @@ A:link, A:visited, A:active { text-decoration: underline }
</form>
<ul>
<li>
- <a href="index.html">Home</a>
+ <a href="index.html">Home
+</a>
</li>
<li>
- <a href="intro.html">Introduction</a>
+ <a href="intro.html">Introduction
+</a>
</li>
<li>
- <a href="FAQ.html">FAQ</a>
+ <a href="FAQ.html">FAQ
+</a>
</li>
<li>
- <a href="docs.html" style="font-weight:bold">Developer Menu</a>
+ <a href="docs.html" style="font-weight:bold">Developer Menu
+</a>
</li>
<li>
- <a href="bugs.html">Reporting bugs and getting help</a>
+ <a href="bugs.html">Reporting bugs and getting help
+</a>
</li>
<li>
- <a href="help.html">How to help</a>
+ <a href="help.html">How to help
+</a>
</li>
<li>
- <a href="downloads.html">Downloads</a>
+ <a href="downloads.html">Downloads
+</a>
</li>
<li>
- <a href="news.html">News</a>
+ <a href="news.html">News
+</a>
</li>
<li>
- <a href="XMLinfo.html">XML</a>
+ <a href="XMLinfo.html">XML
+</a>
</li>
<li>
- <a href="XSLT.html">XSLT</a>
+ <a href="XSLT.html">XSLT
+</a>
</li>
<li>
- <a href="xmldtd.html">Validation &amp; DTDs</a>
+ <a href="xmldtd.html">Validation &amp; DTDs
+</a>
</li>
<li>
- <a href="encoding.html">Encodings support</a>
+ <a href="encoding.html">Encodings support
+</a>
</li>
<li>
- <a href="catalog.html">Catalog support</a>
+ <a href="catalog.html">Catalog support
+</a>
</li>
<li>
- <a href="namespaces.html">Namespaces</a>
+ <a href="namespaces.html">Namespaces
+</a>
</li>
<li>
- <a href="contribs.html">Contributions</a>
+ <a href="contribs.html">Contributions
+</a>
</li>
<li>
- <a href="examples/index.html" style="font-weight:bold">Code Examples</a>
+ <a href="examples/index.html" style="font-weight:bold">Code Examples
+</a>
</li>
<li>
- <a href="html/index.html" style="font-weight:bold">API Menu</a>
+ <a href="html/index.html" style="font-weight:bold">API Menu
+</a>
</li>
<li>
- <a href="guidelines.html">XML Guidelines</a>
+ <a href="guidelines.html">XML Guidelines
+</a>
</li>
<li>
- <a href="ChangeLog.html">ChangeLog</a>
+ <a href="ChangeLog.html">ChangeLog
+</a>
</li>
</ul>
</td>
@@ -145,7 +168,8 @@ A:link, A:visited, A:active { text-decoration: underline }
<tr>
<td colspan="1" bgcolor="#eecfa1" align="center">
<center>
- <b>Related links</b>
+ <b>Related links
+</b>
</center>
</td>
</tr>
@@ -153,34 +177,44 @@ A:link, A:visited, A:active { text-decoration: underline }
<td bgcolor="#fffacd">
<ul>
<li>
- <a href="http://mail.gnome.org/archives/xml/">Mail archive</a>
+ <a href="http://mail.gnome.org/archives/xml/">Mail archive
+</a>
</li>
<li>
- <a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a>
+ <a href="http://xmlsoft.org/XSLT/">XSLT libxslt
+</a>
</li>
<li>
- <a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a>
+ <a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2
+</a>
</li>
<li>
- <a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a>
+ <a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec
+</a>
</li>
<li>
- <a href="ftp://xmlsoft.org/">FTP</a>
+ <a href="ftp://xmlsoft.org/">FTP
+</a>
</li>
<li>
- <a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a>
+ <a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries
+</a>
</li>
<li>
- <a href="http://garypennington.net/libxml2/">Solaris binaries</a>
+ <a href="http://garypennington.net/libxml2/">Solaris binaries
+</a>
</li>
<li>
- <a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a>
+ <a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries
+</a>
</li>
<li>
- <a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a>
+ <a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings
+</a>
</li>
<li>
- <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a>
+ <a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker
+</a>
</li>
</ul>
</td>
@@ -202,77 +236,227 @@ A:link, A:visited, A:active { text-decoration: underline }
<td bgcolor="#fffacd">
<p></p>
<p style="text-align: right; font-style: italic; font-size: 10pt">"Programming
-with libxml2 is like the thrilling embrace of an exotic stranger." <a href="http://diveintomark.org/archives/2004/02/18/libxml2">Mark
-Pilgrim</a></p>
+with libxml2 is like the thrilling embrace of an exotic stranger."
+ <a href="http://diveintomark.org/archives/2004/02/18/libxml2">Mark
+Pilgrim
+</a>
+</p>
<p>Libxml2 is the XML C parser and toolkit developed for the Gnome project
(but usable outside of the Gnome platform), it is free software available
-under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT
-License</a>. XML itself is a metalanguage to design markup languages, i.e.
+under the
+ <a href="http://www.opensource.org/licenses/mit-license.html">MIT
+License
+</a>
+. XML itself is a metalanguage to design markup languages, i.e.
text language where semantic and structure are added to the content using
extra "markup" information enclosed between angle brackets. HTML is the most
-well-known markup language. Though the library is written in C <a href="python.html">a variety of language bindings</a> make it available in
-other environments.</p>
+well-known markup language. Though the library is written in C
+ <a href="python.html">a variety of language bindings
+</a>
+ make it available in
+other environments.
+</p>
<p>Libxml2 is known to be very portable, the library should build and work
without serious troubles on a variety of systems (Linux, Unix, Windows,
-CygWin, MacOS, MacOS X, RISC Os, OS/2, VMS, QNX, MVS, ...)</p>
+CygWin, MacOS, MacOS X, RISC Os, OS/2, VMS, QNX, MVS, ...)
+</p>
<p>Libxml2 implements a number of existing standards related to markup
-languages:</p>
- <ul><li>the XML standard: <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</a></li>
- <li>Namespaces in XML: <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/</a></li>
- <li>XML Base: <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a></li>
- <li><a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396</a> :
- Uniform Resource Identifiers <a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a></li>
- <li>XML Path Language (XPath) 1.0: <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath</a></li>
- <li>HTML4 parser: <a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a></li>
- <li>XML Pointer Language (XPointer) Version 1.0: <a href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr</a></li>
- <li>XML Inclusions (XInclude) Version 1.0: <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/</a></li>
- <li>ISO-8859-x encodings, as well as <a href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044</a> [UTF-8]
- and <a href="http://www.cis.ohio-state.edu/rfc/rfc2781.txt">rfc2781</a>
- [UTF-16] Unicode encodings, and more if using iconv support</li>
- <li>part of SGML Open Technical Resolution TR9401:1997</li>
- <li>XML Catalogs Working Draft 06 August 2001: <a href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html</a></li>
- <li>Canonical XML Version 1.0: <a href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n</a>
- and the Exclusive XML Canonicalization CR draft <a href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n</a></li>
- <li>Relax NG, ISO/IEC 19757-2:2003, <a href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html</a></li>
- <li>W3C XML Schemas Part 2: Datatypes <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May
- 2001</a></li>
- <li>W3C <a href="http://www.w3.org/TR/xml-id/">xml:id</a> Working Draft 7
- April 2004</li>
+languages:
+</p>
+ <ul> <li>the XML standard:
+ <a href="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml
+</a>
+</li>
+
+
+ <li>Namespaces in XML:
+ <a href="http://www.w3.org/TR/REC-xml-names/">http://www.w3.org/TR/REC-xml-names/
+</a>
+</li>
+
+
+ <li>XML Base:
+ <a href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/
+</a>
+</li>
+
+
+ <li> <a href="http://www.cis.ohio-state.edu/rfc/rfc2396.txt">RFC 2396
+</a>
+ :
+ Uniform Resource Identifiers
+ <a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt
+</a>
+</li>
+
+
+ <li>XML Path Language (XPath) 1.0:
+ <a href="http://www.w3.org/TR/xpath">http://www.w3.org/TR/xpath
+</a>
+</li>
+
+
+ <li>HTML4 parser:
+ <a href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/
+</a>
+</li>
+
+
+ <li>XML Pointer Language (XPointer) Version 1.0:
+ <a href="http://www.w3.org/TR/xptr">http://www.w3.org/TR/xptr
+</a>
+</li>
+
+
+ <li>XML Inclusions (XInclude) Version 1.0:
+ <a href="http://www.w3.org/TR/xinclude/">http://www.w3.org/TR/xinclude/
+</a>
+</li>
+
+
+ <li>ISO-8859-x encodings, as well as
+ <a href="http://www.cis.ohio-state.edu/rfc/rfc2044.txt">rfc2044
+</a>
+ [UTF-8]
+ and
+ <a href="http://www.cis.ohio-state.edu/rfc/rfc2781.txt">rfc2781
+</a>
+
+ [UTF-16] Unicode encodings, and more if using iconv support
+</li>
+
+
+ <li>part of SGML Open Technical Resolution TR9401:1997
+</li>
+
+
+ <li>XML Catalogs Working Draft 06 August 2001:
+ <a href="http://www.oasis-open.org/committees/entity/spec-2001-08-06.html">http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
+</a>
+</li>
+
+
+ <li>Canonical XML Version 1.0:
+ <a href="http://www.w3.org/TR/xml-c14n">http://www.w3.org/TR/xml-c14n
+</a>
+
+ and the Exclusive XML Canonicalization CR draft
+ <a href="http://www.w3.org/TR/xml-exc-c14n">http://www.w3.org/TR/xml-exc-c14n
+</a>
+</li>
+
+
+ <li>Relax NG, ISO/IEC 19757-2:2003,
+ <a href="http://www.oasis-open.org/committees/relax-ng/spec-20011203.html">http://www.oasis-open.org/committees/relax-ng/spec-20011203.html
+</a>
+</li>
+
+
+ <li>W3C XML Schemas Part 2: Datatypes
+ <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">REC 02 May
+ 2001
+</a>
+</li>
+
+
+ <li>W3C
+ <a href="http://www.w3.org/TR/xml-id/">xml:id
+</a>
+ Working Draft 7
+ April 2004
+</li>
+
+
</ul>
<p>In most cases libxml2 tries to implement the specifications in a
relatively strictly compliant way. As of release 2.4.16, libxml2 passed all
-1800+ tests from the <a href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests
-Suite</a>.</p>
+1800+ tests from the
+ <a href="http://www.oasis-open.org/committees/xml-conformance/">OASIS XML Tests
+Suite
+</a>
+.
+</p>
<p>To some extent libxml2 provides support for the following additional
-specifications but doesn't claim to implement them completely:</p>
- <ul><li>Document Object Model (DOM) <a href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/</a>
+specifications but doesn't claim to implement them completely:
+</p>
+ <ul> <li>Document Object Model (DOM)
+ <a href="http://www.w3.org/TR/DOM-Level-2-Core/">http://www.w3.org/TR/DOM-Level-2-Core/
+</a>
+
the document model, but it doesn't implement the API itself, gdome2 does
- this on top of libxml2</li>
- <li><a href="http://www.cis.ohio-state.edu/rfc/rfc959.txt">RFC 959</a> :
- libxml2 implements a basic FTP client code</li>
- <li><a href="http://www.cis.ohio-state.edu/rfc/rfc1945.txt">RFC 1945</a> :
- HTTP/1.0, again a basic HTTP client code</li>
- <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible
- with early expat versions</li>
+ this on top of libxml2
+</li>
+
+
+ <li> <a href="http://www.cis.ohio-state.edu/rfc/rfc959.txt">RFC 959
+</a>
+ :
+ libxml2 implements a basic FTP client code
+</li>
+
+
+ <li> <a href="http://www.cis.ohio-state.edu/rfc/rfc1945.txt">RFC 1945
+</a>
+ :
+ HTTP/1.0, again a basic HTTP client code
+</li>
+
+
+ <li>SAX: a SAX2 like interface and a minimal SAX1 implementation compatible
+ with early expat versions
+</li>
+
+
</ul>
- <p>A partial implementation of <a href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">XML Schemas Part
-1: Structure</a> is being worked on but it would be far too early to make any
-conformance statement about it at the moment.</p>
- <p>Separate documents:</p>
- <ul><li><a href="http://xmlsoft.org/XSLT/">the libxslt page</a> providing an
+ <p>A partial implementation of
+ <a href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">XML Schemas Part
+1: Structure
+</a>
+ is being worked on but it would be far too early to make any
+conformance statement about it at the moment.
+</p>
+ <p>Separate documents:
+</p>
+ <ul> <li> <a href="http://xmlsoft.org/XSLT/">the libxslt page
+</a>
+ providing an
implementation of XSLT 1.0 and common extensions like EXSLT for
- libxml2</li>
- <li><a href="http://www.cs.unibo.it/~casarini/gdome2/">the gdome2 page</a>
- : a standard DOM2 implementation for libxml2</li>
- <li><a href="http://www.aleksey.com/xmlsec/">the XMLSec page</a>: an
- implementation of <a href="http://www.w3.org/TR/xmldsig-core/">W3C XML
- Digital Signature</a> for libxml2</li>
- <li>also check the related links section below for more related and active
- projects.</li>
+ libxml2
+</li>
+
+
+ <li> <a href="http://www.cs.unibo.it/~casarini/gdome2/">the gdome2 page
+</a>
+
+ : a standard DOM2 implementation for libxml2
+</li>
+
+
+ <li> <a href="http://www.aleksey.com/xmlsec/">the XMLSec page
+</a>
+: an
+ implementation of
+ <a href="http://www.w3.org/TR/xmldsig-core/">W3C XML
+ Digital Signature
+</a>
+ for libxml2
+</li>
+
+
+ <li>also check the related links section below for more related and active
+ projects.
+</li>
+
+
</ul>
- <p>Logo designed by <a href="mailto:liyanage@access.ch">Marc Liyanage</a>.</p>
+ <p>Logo designed by
+ <a href="mailto:liyanage@access.ch">Marc Liyanage
+</a>
+.
+</p>
<p>
- <a href="bugs.html">Daniel Veillard</a>
+ <a href="bugs.html">Daniel Veillard
+</a>
</p>
</td>
</tr>