Changeset 57b11363


Ignore:
Timestamp:
04/10/2006 06:40:34 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
10ce9fe
Parents:
38e4f06
Message:

Added the 'User Notes' wiki link to each package page; changed all instances of .[so,a] to .{so,a} (brackets changed to braces); changed all replaceable tags to use angle brackets instead of square brackets to encapsulate the text - commit #12

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

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r38e4f06 r57b11363  
    1 <!ENTITY day          "09">                   <!-- Always 2 digits -->
     1<!ENTITY day          "10">                   <!-- Always 2 digits -->
    22<!ENTITY month        "04">                   <!-- Always 2 digits -->
    33<!ENTITY year         "2006">
  • introduction/important/bootscripts.xml

    r38e4f06 r57b11363  
    4444  requested from BLFS Bootscripts, simply change to the directory and as the
    4545  <systemitem class="username">root</systemitem> user, execute the given
    46   <command>make install-<replaceable>[init-script]</replaceable></command>
     46  <command>make install-<replaceable>&lt;init-script&gt;</replaceable></command>
    4747  command. This command installs the init script to its proper location (along
    4848  with any auxiliary configuration scripts) and also creates the appropriate
  • introduction/important/building-notes.xml

    r38e4f06 r57b11363  
    111111    to the md5sum data shown in the BLFS book.</para>
    112112
    113 <screen><userinput>md5sum <replaceable>[name_of_downloaded_file]</replaceable></userinput></screen>
     113<screen><userinput>md5sum <replaceable>&lt;name_of_downloaded_file&gt;</replaceable></userinput></screen>
    114114
    115115  </sect2>
     
    122122    files are also useful for debugging and keeping records. The following
    123123    command allows you to create an installation log. Replace
    124     <replaceable>[command]</replaceable> with the command you intend to execute.</para>
    125 
    126 <screen><userinput>( <replaceable>[command]</replaceable> 2&gt;&amp;1 | tee compile.log &amp;&amp; exit $PIPESTATUS )</userinput></screen>
     124    <replaceable>&lt;command&gt;</replaceable> with the command you intend to execute.</para>
     125
     126<screen><userinput>( <replaceable>&lt;command&gt;</replaceable> 2&gt;&amp;1 | tee compile.log &amp;&amp; exit $PIPESTATUS )</userinput></screen>
    127127
    128128    <para><option>2&gt;&amp;1</option> redirects error messages to the same
     
    131131    around the command run the entire command in a subshell and finally the
    132132    <command>exit $PIPESTATUS</command> command ensures the result of the
    133     <replaceable>[command]</replaceable> is returned as the result and not the
     133    <replaceable>&lt;command&gt;</replaceable> is returned as the result and not the
    134134    result of the <command>tee</command> command.</para>
    135135
  • introduction/important/locale-issues.xml

    r38e4f06 r57b11363  
    113113
    114114<screen><userinput>convmv -f iso-8859-1 -t cp850 -r --nosmart --notest \
    115     <replaceable>[/path/to/unzipped/files]</replaceable></userinput></screen>
     115    <replaceable>&lt;/path/to/unzipped/files&gt;</replaceable></userinput></screen>
    116116
    117117        <para>Step 2. Do the correct conversion instead:</para>
    118118
    119119<screen><userinput>convmv -f cp866 -t koi8-r -r --nosmart --notest \
    120     <replaceable>[/path/to/unzipped/files]</replaceable></userinput></screen>
     120    <replaceable>&lt;/path/to/unzipped/files&gt;</replaceable></userinput></screen>
    121121      </blockquote>
    122122
  • introduction/welcome/askhelp.xml

    r38e4f06 r57b11363  
    3737        <systemitem class='username'>root</systemitem> user to see if it's
    3838        loaded. Check the <filename>sys.log</filename> file or run
    39         <command>modprobe <replaceable>[driver]</replaceable></command> to
     39        <command>modprobe <replaceable>&lt;driver&gt;</replaceable></command> to
    4040        review any error message. If it loads properly, you may need to add
    4141        the <command>modprobe</command> command to your boot scripts.</para>
     
    4545        uses groups to make these settings easier, but it also adds the step of
    4646        adding users to groups to allow access. A simple <command>moduser
    47         -G audio <replaceable>[user]</replaceable></command> may be all that's
     47        -G audio <replaceable>&lt;user&gt;</replaceable></command> may be all that's
    4848        necessary for that user to have access to the sound system. Any question
    4949        that starts out with <quote>It works as root, but not as ...</quote>
     
    5252      <listitem>
    5353        <para>BLFS liberally uses <filename
    54         class='directory'>/opt/<replaceable>[package]</replaceable></filename>.
     54        class='directory'>/opt/<replaceable>&lt;package&gt;</replaceable></filename>.
    5555        The main objection to this centers around the need to expand your
    5656        environment variables for each package placed there (e.g.,
  • introduction/welcome/changelog.xml

    r38e4f06 r57b11363  
    4343
    4444    <listitem>
     45      <para>April 10th, 2006</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Added the 'User Notes' wiki link to each package
     49          page.</para>
     50        </listitem>
     51        <listitem>
     52          <para>[randy] - Changed all instances of .[so,a] to .{so,a}
     53          (brackets changed to braces).</para>
     54        </listitem>
     55        <listitem>
     56          <para>[randy] - Changed all <replaceable>[some_text]</replaceable>
     57          instances to <replaceable>&lt;some_text&gt;</replaceable> (square
     58          brackets changed to angle brackets).</para>
     59        </listitem>
     60      </itemizedlist>
     61    </listitem>
     62
     63    <listitem>
    4564      <para>April 9th, 2006</para>
    4665      <itemizedlist>
  • introduction/welcome/conventions.xml

    r38e4f06 r57b11363  
    7272  </blockquote>
    7373
    74   <para><replaceable>[REPLACED TEXT]</replaceable></para>
     74  <para><replaceable>&lt;REPLACED TEXT&gt;</replaceable></para>
    7575
    7676  <blockquote>
  • template/template.xml

    r38e4f06 r57b11363  
    101101    <para role="optional"><ulink url="http://www.some.url/">EXTERNAL DEPENDENCY</ulink></para>
    102102
     103    <para condition="html" role="usernotes">User Notes:
     104    <ulink url="&blfs-wiki;/template"/></para>
     105
    103106  </sect2>
    104107
     
    271274
    272275      <varlistentry id="libLIBRARY1">
    273         <term><filename class='libraryfile'>libLIBRARY1.[so,a]</filename></term>
     276        <term><filename class='libraryfile'>libLIBRARY1.{so,a}</filename></term>
    274277        <listitem>
    275278          <para>contains functions that .....</para>
    276279          <indexterm zone="TEMPLATE libLIBRARY1">
    277             <primary sortas="c-libLIBRARY1">libLIBRARY1.[so,a]</primary>
     280            <primary sortas="c-libLIBRARY1">libLIBRARY1.{so,a}</primary>
    278281          </indexterm>
    279282        </listitem>
Note: See TracChangeset for help on using the changeset viewer.