blob: 07123c2ce6b390a1a34884454f6925820c035583 [file] [log] [blame]
Daniel Veillard35925471999-02-25 08:46:07 +00001<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
Daniel Veillard1566d3a1999-07-15 14:24:29 +00002<!entity SAX SYSTEM "sgml/SAX.sgml">
Daniel Veillard294cbca1999-12-03 13:19:09 +00003<!entity entities SYSTEM "sgml/entities.sgml">
4<!entity encoding SYSTEM "sgml/encoding.sgml">
5<!entity parser SYSTEM "sgml/parser.sgml">
6<!entity parserInternals SYSTEM "sgml/parserInternals.sgml">
Daniel Veillard61b33d52001-04-24 13:55:12 +00007<!entity error SYSTEM "sgml/xmlerror.sgml">
Daniel Veillard1566d3a1999-07-15 14:24:29 +00008<!entity HTMLparser SYSTEM "sgml/HTMLparser.sgml">
9<!entity HTMLtree SYSTEM "sgml/HTMLtree.sgml">
Daniel Veillard294cbca1999-12-03 13:19:09 +000010<!entity debugXML SYSTEM "sgml/debugXML.sgml">
11<!entity tree SYSTEM "sgml/tree.sgml">
Daniel Veillard8f621982000-03-20 13:07:15 +000012<!entity uri SYSTEM "sgml/uri.sgml">
Daniel Veillard294cbca1999-12-03 13:19:09 +000013<!entity xpath SYSTEM "sgml/xpath.sgml">
Daniel Veillard29a11cc2000-10-25 13:32:39 +000014<!entity xpathInternals SYSTEM "sgml/xpathInternals.sgml">
Daniel Veillardb732a0e2000-10-15 11:27:01 +000015<!entity xpointer SYSTEM "sgml/xpointer.sgml">
Daniel Veillard28929b22000-11-13 18:22:49 +000016<!entity xinclude SYSTEM "sgml/xinclude.sgml">
Daniel Veillard294cbca1999-12-03 13:19:09 +000017<!entity xmlIO SYSTEM "sgml/xmlIO.sgml">
Daniel Veillard7d6fd212001-05-10 15:34:11 +000018<!entity catalog SYSTEM "sgml/catalog.sgml">
19<!entity DOCBparser SYSTEM "sgml/DOCBparser.sgml">
Daniel Veillard6bd26dc1999-09-03 14:28:40 +000020<!entity xmlmemory SYSTEM "sgml/xmlmemory.sgml">
Daniel Veillard7f7d1111999-09-22 09:46:25 +000021<!entity nanohttp SYSTEM "sgml/nanohttp.sgml">
Daniel Veillardaeea04f2000-01-25 19:27:27 +000022<!entity nanoftp SYSTEM "sgml/nanoftp.sgml">
Daniel Veillard294cbca1999-12-03 13:19:09 +000023<!entity valid SYSTEM "sgml/valid.sgml">
Daniel Veillard35925471999-02-25 08:46:07 +000024]>
25
26<book>
27 <bookinfo>
Daniel Veillard00fdf371999-10-08 09:40:39 +000028 <title>Gnome XML Library Reference Manual</title>
29 <authorgroup>
30 <author>
31 <firstname>Daniel</firstname>
32 <surname>Veillard</surname>
33 <affiliation>
34 <address>
35 <email>Daniel.Veillard@w3.org</email>
36 </address>
37 </affiliation>
38 </author>
39 </authorgroup>
40 <copyright>
41 <year>1999</year>
42 <holder>Daniel Veillard</holder>
43 </copyright>
44
45 <legalnotice>
46 <para>Permission is granted to make and distribute verbatim
47 copies of this manual provided the copyright notice and this
48 permission notice are preserved on all copies.</para>
49
50 <para>Permission is granted to copy and distribute modified
51 versions of this manual under the conditions for verbatim
52 copying, provided also that the entire resulting derived work is
53 distributed under the terms of a permission notice identical to
54 this one.</para>
55
56 <para>Permission is granted to copy and distribute translations
57 of this manual into another language, under the above conditions
58 for modified versions.</para>
59 </legalnotice>
60
61 <abstract>
Daniel Veillard0caf07a1999-12-21 16:25:49 +000062 <para>This manual documents the interfaces of the libxml
Daniel Veillard00fdf371999-10-08 09:40:39 +000063 library and has some short notes to help get you up to speed
64 with using the library.</para>
65 </abstract>
Daniel Veillard35925471999-02-25 08:46:07 +000066 </bookinfo>
67
Daniel Veillard00fdf371999-10-08 09:40:39 +000068 <chapter id="libxml-notes">
69 <title>Libxml Programming Notes</title>
70
71 <para>Libxml is an XML toolkit library, it allows to parse, edit
72 search and write XML documents. There is also an HTML parser front-end
73 so the same range of tools can be used with HTML input.</para>
74 </chapter>
75 <chapter id="libxml-lib">
76 <title>Libxml Library Reference</title>
77
78 <para>This section contains the API reference for libxml. All
79 the public interfaces are documented here. This reference guide is
80 build by extracting comments from the code sources. </para>
81
Daniel Veillard6bd26dc1999-09-03 14:28:40 +000082 &parser;
83 &SAX;
84 &tree;
85 &entities;
86 &valid;
Daniel Veillard8f621982000-03-20 13:07:15 +000087 &uri;
Daniel Veillard6bd26dc1999-09-03 14:28:40 +000088 &error;
89 &HTMLparser;
90 &HTMLtree;
91 &xpath;
Daniel Veillard29a11cc2000-10-25 13:32:39 +000092 &xpathInternals;
Daniel Veillardb732a0e2000-10-15 11:27:01 +000093 &xpointer;
Daniel Veillard28929b22000-11-13 18:22:49 +000094 &xinclude;
Daniel Veillard00fdf371999-10-08 09:40:39 +000095 &nanohttp;
Daniel Veillardaeea04f2000-01-25 19:27:27 +000096 &nanoftp;
Daniel Veillard294cbca1999-12-03 13:19:09 +000097 &xmlIO;
Daniel Veillard7d6fd212001-05-10 15:34:11 +000098 &catalog;
99 &DOCBparser;
Daniel Veillard6bd26dc1999-09-03 14:28:40 +0000100 &parserInternals;
Daniel Veillard294cbca1999-12-03 13:19:09 +0000101 &encoding;
102 &debugXML;
Daniel Veillard6bd26dc1999-09-03 14:28:40 +0000103 &xmlmemory;
Daniel Veillard35925471999-02-25 08:46:07 +0000104 </chapter>
105</book>
106