1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3               "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
4<!ENTITY xslt SYSTEM "xml/xslt.xml">
5<!ENTITY functions SYSTEM "xml/functions.xml">
6<!ENTITY pattern SYSTEM "xml/pattern.xml">
7<!ENTITY templates SYSTEM "xml/templates.xml">
8<!ENTITY transform SYSTEM "xml/transform.xml">
9<!ENTITY xsltutils SYSTEM "xml/xsltutils.xml">
10<!ENTITY attributes SYSTEM "xml/attributes.xml">
11<!ENTITY imports SYSTEM "xml/imports.xml">
12<!ENTITY namespaces SYSTEM "xml/namespaces.xml">
13<!ENTITY variables SYSTEM "xml/variables.xml">
14<!ENTITY extensions SYSTEM "xml/extensions.xml">
15<!ENTITY keys SYSTEM "xml/keys.xml">
16<!ENTITY xsltInternals SYSTEM "xml/xsltInternals.xml">
17<!ENTITY numbersInternals SYSTEM "xml/numbersInternals.xml">
18]>
19
20<book>
21  <bookinfo>
22    <title>GNOME XSLT Library Reference Manual</title>
23    <authorgroup>
24      <author>
25        <firstname>Daniel</firstname>
26        <surname>Veillard</surname>
27        <affiliation>
28	  <address>
29	    <email>daniel@veillard.com</email>
30	  </address>
31        </affiliation>
32      </author>
33    </authorgroup>
34    <copyright>
35      <year>2001</year>
36      <holder>Daniel Veillard</holder>
37    </copyright>	
38
39    <legalnotice>
40      <para>Permission is granted to make and distribute verbatim
41      copies of this manual provided the copyright notice and this
42      permission notice are preserved on all copies.</para>
43
44      <para>Permission is granted to copy and distribute modified
45      versions of this manual under the conditions for verbatim
46      copying, provided also that the entire resulting derived work is
47      distributed under the terms of a permission notice identical to
48      this one.</para>
49
50      <para>Permission is granted to copy and distribute translations
51      of this manual into another language, under the above conditions
52      for modified versions.</para>
53    </legalnotice>
54
55    <abstract>
56      <para>This manual documents the interfaces of the libxslt
57      library and has some short notes to help get you up to speed
58      with using the library.</para>
59    </abstract>
60  </bookinfo>
61
62  <chapter id="libxslt-notes">
63     <title>Libxslt Programming Notes</title>
64
65     <para>Libxslt is an XSLT toolkit library, which allows you to transform
66     XML documents. It uses the XML parser, tree and XPath functionalities
67     of libxml2</para>
68  </chapter>
69  <chapter id="libxslt-lib">
70    <title>Libxslt Library Reference</title>
71
72    <para>This section contains the API reference for libxslt. All
73    the public interfaces are documented here. This reference guide is
74    build by extracting comments from the code sources. </para>
75
76    &xslt;
77    &functions;
78    &pattern;
79    &templates;
80    &transform;
81    &xsltutils;
82    &attributes;
83    &imports;
84    &extensions;
85    &namespaces;
86    &variables;
87    &keys;
88    &xsltInternals;
89    &numbersInternals;
90  </chapter>
91</book>
92
93