diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-05-20 13:23:02 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-05-20 13:23:02 +0000 |
commit | 43f6596668257a8e57fd14657c4bd2a04ffb03ec (patch) | |
tree | a19c071e42769cc7b7e2e6ef9ab28cfa81ff84c2 | |
parent | 62297def13ed8fd6c8ddcb93dd142d4bb98d6db1 (diff) | |
download | libxslt-43f6596668257a8e57fd14657c4bd2a04ffb03ec.tar.gz libxslt-43f6596668257a8e57fd14657c4bd2a04ffb03ec.tar.bz2 libxslt-43f6596668257a8e57fd14657c4bd2a04ffb03ec.zip |
Previous commit broke ???
Daniel
-rw-r--r-- | tests/docbook/test/external.xml | 15 | ||||
-rw-r--r-- | tests/docbook/test/subdoc.ent | 3 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/docbook/test/external.xml b/tests/docbook/test/external.xml new file mode 100644 index 00000000..31413b75 --- /dev/null +++ b/tests/docbook/test/external.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" ?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN" + "../dtd/4.0/docbookx.dtd" [ + <!ENTITY subdoc SYSTEM "subdoc.ent"> +]> + +<book lang="en"> +<title>Main document</title> + +<chapter id="main"> +<para>This references to: <link linkend="subdoc"/></para> +</chapter> +&subdoc; + +</book> diff --git a/tests/docbook/test/subdoc.ent b/tests/docbook/test/subdoc.ent new file mode 100644 index 00000000..f30faa73 --- /dev/null +++ b/tests/docbook/test/subdoc.ent @@ -0,0 +1,3 @@ +<chapter id="subdoc"> +<para>This is nothing, but a subdoc</para> +</chapter> |