1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<?xml version="1.0"?>
<!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY version SYSTEM "version.xml">
]>
<glossary id="glossary">
<title>Glossary</title>
<glossentry id="DTD">
<glossterm>DTD</glossterm>
<glossdef>
<para>
A Document Type Definition, used to define an XML document format. XML
documents can be validated against the DTD.
</para>
</glossdef>
</glossentry>
<glossentry id="SQL">
<glossterm>SQL</glossterm>
<glossdef>
<para>
Structured Query Language is a language for constructing queries against
databases.
</para>
</glossdef>
</glossentry>
<glossentry id="XML">
<glossterm>XML</glossterm>
<glossdef>
<para>
The eXtensible Markup Language defines a set of rules for marking up
documents that are both machine- and human-readable.
</para>
</glossdef>
</glossentry>
</glossary>
|