Ignore:
Timestamp:
04/01/2005 09:25:35 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b4b813f
Parents:
0fa91c66
Message:

Fixed broken commands in the for loop in the DocBook XML DTD instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3616 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pst/xml/docbook.xml

    r0fa91c66 r9c9fb93c  
    7272    /usr/share/xml/docbook/xml-dtd-&DocBook-version;</command></userinput></screen>
    7373
    74 <para>Create and populate the <filename>/etc/xml/docbook</filename> catalog
    75 file by running the following commands as the root user:</para>
     74<para>Create (or update) and populate the
     75<filename>/etc/xml/docbook</filename> catalog file by running the following
     76commands as the root user:</para>
    7677
    7778<screen><userinput role='root'><command>if [ ! -e /etc/xml/docbook ]; then
     
    123124    /etc/xml/docbook</command></userinput></screen>
    124125
    125 <para>Create and populate the <filename>/etc/xml/catalog</filename> catalog
    126 file by running the following commands as the root user:</para>
     126<para>Create (or update) and populate the
     127<filename>/etc/xml/catalog</filename> catalog file by running the following
     128commands as the root user:</para>
    127129
    128130<screen><userinput role='root'><command>if [ ! -e /etc/xml/catalog ]; then
     
    131133xmlcatalog --noout --add "delegatePublic" \
    132134    "-//OASIS//ENTITIES DocBook XML" \
    133     "file:///etc/xml/docbook" /etc/xml/catalog &amp;&amp;
     135    "file:///etc/xml/docbook" \
     136    /etc/xml/catalog &amp;&amp;
    134137xmlcatalog --noout --add "delegatePublic" \
    135138    "-//OASIS//DTD DocBook XML" \
    136     "file:///etc/xml/docbook" /etc/xml/catalog &amp;&amp;
     139    "file:///etc/xml/docbook" \
     140    /etc/xml/catalog &amp;&amp;
    137141xmlcatalog --noout --add "delegateSystem" \
    138142    "http://www.oasis-open.org/docbook/" \
    139     "file:///etc/xml/docbook" /etc/xml/catalog &amp;&amp;
     143    "file:///etc/xml/docbook" \
     144    /etc/xml/catalog &amp;&amp;
    140145xmlcatalog --noout --add "delegateURI" \
    141146    "http://www.oasis-open.org/docbook/" \
    142     "file:///etc/xml/docbook" /etc/xml/catalog</command></userinput></screen>
     147    "file:///etc/xml/docbook" \
     148    /etc/xml/catalog</command></userinput></screen>
    143149
    144150</sect2>
     
    175181    "-//OASIS//DTD DocBook XML V$DTDVERSION//EN" \
    176182    "http://www.oasis-open.org/docbook/xml/$DTDVERSION/docbookx.dtd" \
    177     /etc/xml/docbook &amp;&amp;
     183    /etc/xml/docbook
    178184  xmlcatalog --noout --add "rewriteSystem" \
    179185    "http://www.oasis-open.org/docbook/xml/$DTDVERSION" \
    180186    "file:///usr/share/xml/docbook/xml-dtd-&DocBook-version;" \
    181     /etc/xml/docbook &amp;&amp;
     187    /etc/xml/docbook
    182188  xmlcatalog --noout --add "rewriteURI" \
    183189    "http://www.oasis-open.org/docbook/xml/$DTDVERSION" \
    184190    "file:///usr/share/xml/docbook/xml-dtd-&DocBook-version;" \
    185     /etc/xml/docbook &amp;&amp;
     191    /etc/xml/docbook
    186192  xmlcatalog --noout --add "delegateSystem" \
    187193    "http://www.oasis-open.org/docbook/xml/$DTDVERSION/" \
    188194    "file:///etc/xml/docbook" \
    189     /etc/xml/catalog &amp;&amp;
     195    /etc/xml/catalog
    190196  xmlcatalog --noout --add "delegateURI" \
    191197    "http://www.oasis-open.org/docbook/xml/$DTDVERSION/" \
    192198    "file:///etc/xml/docbook" \
    193     /etc/xml/catalog &amp;&amp;
     199    /etc/xml/catalog
    194200done</command></userinput></screen>
    195201</sect3>
Note: See TracChangeset for help on using the changeset viewer.