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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#!/bin/sh
cat <<EOF
<?xml version='1.0'?>
<!-- -*- DocBook -*- -->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"/usr/share/sgml/docbook/dtd/xml/4.2/docbookx.dtd" [
<!ENTITY % sgml.features "IGNORE">
<!ENTITY % xml.features "INCLUDE">
<!ENTITY % dbcent PUBLIC
"-//OASIS//ENTITIES DocBook Character Entities V4.2//EN"
"/usr/share/sgml/docbook/dtd/xml/4.2/dbcentx.mod"> %dbcent;
<!ENTITY % commondata SYSTEM "../common.ent" > %commondata;
<!ENTITY % popcon SYSTEM "../popcon.ent" > %popcon;
<!ENTITY % pkgsize SYSTEM "../pkgsize.ent" > %pkgsize;
<!ENTITY % urlsdata SYSTEM "../urls.ent" > %urlsdata;
]>
<book xmlns:xi="http://www.w3.org/2003/XInclude">
<bookinfo>
<title>Debian Reference</title>
<authorgroup>
<author>
<firstname>Osamu</firstname>
<surname>Aoki</surname>
</author>
</authorgroup>
<abstract>
<xi:include href="abstract.en.xml"/>
</abstract>
<copyright>
<year>2007-2008</year>
<holder>Osamu Aoki</holder>
</copyright>
<legalnotice>
<xi:include href="copy.en.xml"/>
</legalnotice>
</bookinfo>
<toc/>
<!-- use XML pages downloaded -->
<xi:include href="preface.en.xml"/>
<xi:include href="tutorial.en.xml"/>
<xi:include href="package.en.xml"/>
<xi:include href="systeminit.en.xml"/>
<xi:include href="auth.en.xml"/>
<xi:include href="network.en.xml"/>
<xi:include href="internetapp.en.xml"/>
<xi:include href="xwindow.en.xml"/>
<xi:include href="i18nl10n.en.xml"/>
<xi:include href="systemtips.en.xml"/>
<xi:include href="datamanagement.en.xml"/>
<xi:include href="dataconversion.en.xml"/>
<xi:include href="program.en.xml"/>
<xi:include href="appendix.en.xml"/>
</book>
EOF
|