diff options
author | Brad King <brad.king@kitware.com> | 2012-09-06 13:05:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-07 14:06:50 (GMT) |
commit | ac25bc0135c3d13ce2de4a77675c3464b1bc7f11 (patch) | |
tree | 5f2bc0cb9360c2633b24688e21d015448fd063a9 /Utilities/xml/docbook-4.5/dbgenent.mod | |
parent | 2b2e86feaabc47baaefd442f0553ffd5e07d8100 (diff) | |
download | CMake-ac25bc0135c3d13ce2de4a77675c3464b1bc7f11.zip CMake-ac25bc0135c3d13ce2de4a77675c3464b1bc7f11.tar.gz CMake-ac25bc0135c3d13ce2de4a77675c3464b1bc7f11.tar.bz2 |
Utilities/xml: Add docbook-4.5 DTD (#13508)
Run the shell code below to put the DTD in Utilities/xml/docbook-4.5:
v=4.5 &&
sha1=b9124233b50668fb508773aa2b3ebc631d7c1620 &&
mkdir Utilities/xml/docbook-$v &&
cd Utilities/xml/docbook-$v &&
wget -c http://www.oasis-open.org/docbook/xml/$v/docbook-xml-$v.zip &&
sha1sum docbook-xml-$v.zip |grep $sha1 &&
unzip docbook-xml-$v.zip &&
rm docbook-xml-$v.zip
Diffstat (limited to 'Utilities/xml/docbook-4.5/dbgenent.mod')
-rw-r--r-- | Utilities/xml/docbook-4.5/dbgenent.mod | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Utilities/xml/docbook-4.5/dbgenent.mod b/Utilities/xml/docbook-4.5/dbgenent.mod new file mode 100644 index 0000000..ff5ba90 --- /dev/null +++ b/Utilities/xml/docbook-4.5/dbgenent.mod @@ -0,0 +1,41 @@ +<!-- ...................................................................... --> +<!-- DocBook additional general entities V4.5 ............................. --> + +<!-- Copyright 1992-2004 HaL Computer Systems, Inc., + O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software + Corporation, Norman Walsh, Sun Microsystems, Inc., and the + Organization for the Advancement of Structured Information + Standards (OASIS). + + In DTD driver files referring to this module, please use an entity + declaration that uses the public identifier shown below: + + <!ENTITY % dbgenent PUBLIC + "-//OASIS//ENTITIES DocBook Additional General Entities V4.5//EN" + "dbgenent.mod"> + %dbgenent; +--> + +<!-- File dbgenent.mod .................................................... --> + +<!-- You can edit this file to add the following: + + o General entity declarations of any kind. For example: + + <!ENTITY productname "WinWidget"> (small boilerplate) + <!ENTITY legal-notice SYSTEM "notice.sgm"> (large boilerplate) + + o Notation declarations. For example: + + <!NOTATION chicken-scratch SYSTEM> + + o Declarations for and references to external parameter entities + containing collections of any of the above. For example: + + <!ENTITY % all-titles PUBLIC "-//DocTools//ELEMENTS Book Titles//EN" + "booktitles.ent"> + %all-titles; +--> + +<!-- End of DocBook additional general entities V4.5 ...................... --> +<!-- ...................................................................... --> |