Changeset 384039a


Ignore:
Timestamp:
05/22/2005 10:28:05 AM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
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:
3ba3f58
Parents:
481b3e8
Message:

Removed remaining inline tags into titles.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gnome/add/gtkhtml.xml

    r481b3e8 r384039a  
    2828
    2929  <sect2 role="package">
    30     <title>Introduction to <application>GtkHTML</application></title>
     30    <title>Introduction to GtkHTML</title>
    3131
    3232    <para>The <application>GtkHTML</application> package contains a
     
    6868
    6969  <sect2 role="installation">
    70     <title>Installation of <application>GtkHTML</application></title>
     70    <title>Installation of GtkHTML</title>
    7171
    7272    <para>Install <application>GtkHTML</application> by running the following
  • postlfs/config/profile.xml

    r481b3e8 r384039a  
    2020  help create an environment.  Each file has a specific use and
    2121  may affect login and interactive environments differently.  The files in
    22   the <filename class="directory">/etc</filename> directory generally provide 
     22  the <filename class="directory">/etc</filename> directory generally provide
    2323  global settings. If an equivalent file exists in your home directory it may
    2424  override the global settings.</para>
    2525
    2626  <para>An interactive login shell is started after a successful login, using
    27   <filename>/bin/login</filename>, by reading the <filename>/etc/passwd</filename> 
    28   file.  This shell invocation normally reads <filename>/etc/profile</filename> 
    29   and its private equivalent <filename>~/.bash_profile</filename> upon 
     27  <filename>/bin/login</filename>, by reading the <filename>/etc/passwd</filename>
     28  file.  This shell invocation normally reads <filename>/etc/profile</filename>
     29  and its private equivalent <filename>~/.bash_profile</filename> upon
    3030  startup.</para>
    3131
     
    4848  interactive login shell.</para>
    4949
    50   <para>To the standard files, <filename>/etc/bashrc</filename> is called from 
    51   the user's <filename>~/.bashrc</filename> for system wide initialization of 
     50  <para>To the standard files, <filename>/etc/bashrc</filename> is called from
     51  the user's <filename>~/.bashrc</filename> for system wide initialization of
    5252  non-login shells.</para>
    5353
    54   <para>For more information see <command>info bash</command> -- 
     54  <para>For more information see <command>info bash</command> --
    5555  <emphasis role="strong">Nodes: Bash Startup Files and Interactive
    5656  Shells.</emphasis></para>
     
    6666    setting up some helper functions and some basic parameters.  It specifies some
    6767    <filename>bash</filename> history parameters and, for security purposes,
    68     disables keeping a permanent history file for the <systemitem 
     68    disables keeping a permanent history file for the <systemitem
    6969    class="username">root</systemitem> user.  It also sets a
    7070    default user prompt.  It then calls small, single purpose scripts in the
     
    8282# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
    8383# modifications by Dagmar d'Surreal &lt;rivyqntzne@pbzpnfg.arg&gt;
    84  
     84
    8585# System wide environment variables and startup programs.
    86  
     86
    8787# System wide aliases and functions should go in /etc/bashrc.  Personal
    8888# environment variables and startup programs should go into
    8989# ~/.bash_profile.  Personal aliases and functions should go into
    9090# ~/.bashrc.
    91  
     91
    9292# Functions to help us manage paths.  Second argument is the name of the
    9393# path variable to be modified (default: PATH)
     
    104104        export $PATHVARIABLE="$NEWPATH"
    105105}
    106  
     106
    107107pathprepend () {
    108108        pathremove $1 $2
     
    110110        export $PATHVARIABLE="$1${!PATHVARIABLE:+:${!PATHVARIABLE}}"
    111111}
    112  
     112
    113113pathappend () {
    114114        pathremove $1 $2
     
    116116        export $PATHVARIABLE="${!PATHVARIABLE:+${!PATHVARIABLE}:}$1"
    117117}
    118  
     118
    119119
    120120# Set the initial path
     
    125125        unset HISTFILE
    126126fi
    127  
     127
    128128# Setup some environment variables.
    129129export HISTSIZE=1000
     
    131131#export PS1="[\u@\h \w]\\$ "
    132132export PS1='\u@\h:\w\$ '
    133  
     133
    134134for script in /etc/profile.d/*.sh ; do
    135135        if [ -r $script ] ; then
     
    137137        fi
    138138done
    139  
     139
    140140# Now to clean up
    141 unset pathremove pathprepend pathappend 
     141unset pathremove pathprepend pathappend
    142142
    143143# End /etc/profile</literal>
     
    151151      </indexterm>
    152152
    153       <para>Now create the <filename class='directory'>/etc/profile.d</filename> 
     153      <para>Now create the <filename class='directory'>/etc/profile.d</filename>
    154154      directory, where the individual initialization scripts are placed.</para>
    155155
     
    175175if [ -f "/etc/dircolors" ] ; then
    176176        eval $(dircolors -b /etc/dircolors)
    177  
     177
    178178        if [ -f "$HOME/.dircolors" ] ; then
    179179                eval $(dircolors -b $HOME/.dircolors)
     
    193193
    194194      <para>This script adds several useful paths to the <envar>PATH</envar> and
    195       <envar>PKG_CONFIG_PATH</envar> environment variables.  If you want, you 
    196       can uncomment the last section to put a dot at the end of your path. This will 
    197       allow executables in the current working directory to be executed without 
    198       specifiying a ./, however you are warned that this is generally considered a 
     195      <envar>PKG_CONFIG_PATH</envar> environment variables.  If you want, you
     196      can uncomment the last section to put a dot at the end of your path. This will
     197      allow executables in the current working directory to be executed without
     198      specifiying a ./, however you are warned that this is generally considered a
    199199      security hazard.</para>
    200  
     200
    201201<screen role="root"><userinput>cat &gt; /etc/profile.d/extrapaths.sh &lt;&lt; "EOF"
    202202<literal>if [ -d /usr/local/lib/pkgconfig ] ; then
     
    232232      </indexterm>
    233233
    234       <para>This script sets up the default <filename>inputrc</filename> 
    235       configuration file. If the user does not have individual settings, it uses the 
     234      <para>This script sets up the default <filename>inputrc</filename>
     235      configuration file. If the user does not have individual settings, it uses the
    236236      global file.</para>
    237237
     
    253253      </indexterm>
    254254
    255       <para>Some applications need a specific <envar>TERM</envar> setting to 
     255      <para>Some applications need a specific <envar>TERM</envar> setting to
    256256      support color.</para>
    257257
    258258<screen role="root"><userinput>cat &gt; /etc/profile.d/tinker-term.sh &lt;&lt; "EOF"
    259 <literal># This will tinker with the value of TERM in order to convince certain 
     259<literal># This will tinker with the value of TERM in order to convince certain
    260260# apps that we can, indeed, display color in their window.
    261  
     261
    262262if [ -n "$COLORTERM" ]; then
    263263  export TERM=xterm-color
    264264fi
    265  
     265
    266266if [ "$TERM" = "xterm" ]; then
    267267  export TERM=xterm-color
     
    277277        <primary sortas="e-etc-profile.d-umask.sh">/etc/profile.d/umask.sh</primary>
    278278      </indexterm>
    279  
    280       <para>Setting the <command>umask</command> value is important for security. 
    281       Here the default group write permissions are turned off for system users and when 
     279
     280      <para>Setting the <command>umask</command> value is important for security.
     281      Here the default group write permissions are turned off for system users and when
    282282      the user name and group name are not the same.</para>
    283283
     
    300300      </indexterm>
    301301
    302       <para>If <application>X</application> is installed, the <envar>PATH</envar> 
     302      <para>If <application>X</application> is installed, the <envar>PATH</envar>
    303303      and <envar>PKG_CONFIG_PATH</envar> variables are also updated.</para>
    304304
     
    321321      </indexterm>
    322322
    323       <para>This script shows an example of a different way of setting the prompt. 
    324       The normal variable, <envar>PS1</envar>, is supplemented by 
    325       <envar>PROMPT_COMMAND</envar>. If set, the value of 
    326       <envar>PROMPT_COMMAND</envar> is executed as a command prior to 
     323      <para>This script shows an example of a different way of setting the prompt.
     324      The normal variable, <envar>PS1</envar>, is supplemented by
     325      <envar>PROMPT_COMMAND</envar>. If set, the value of
     326      <envar>PROMPT_COMMAND</envar> is executed as a command prior to
    327327      issuing each primary prompt.</para>
    328  
     328
    329329<screen role="root"><userinput>cat &gt; /etc/profile.d/xterm-titlebars.sh &lt;&lt; "EOF"
    330330<literal># The substring match ensures this works for "xterm" and "xterm-xfree86".
     
    338338
    339339    <sect3 id="i18n.sh">
    340       <title><filename>/etc/profile.d/i18n.sh</filename></title>
     340      <title>'/etc/profile.d/i18n.sh'</title>
    341341
    342342    <indexterm zone="postlfs-config-profile i18n.sh">
     
    344344    </indexterm>
    345345
    346       <para>This script shows how to set some environment variables necessary for 
    347       native language support. Setting these variables properly gives you:</para> 
     346      <para>This script shows how to set some environment variables necessary for
     347      native language support. Setting these variables properly gives you:</para>
    348348
    349349      <itemizedlist>
     
    352352        </listitem>
    353353        <listitem>
    354           <para>correct classification of characters into letters, digits and 
    355           other classes &ndash; this is necessary for <application>Bash</application> 
     354          <para>correct classification of characters into letters, digits and
     355          other classes &ndash; this is necessary for <application>Bash</application>
    356356          to accept keystrokes properly in non-English locales</para>
    357357        </listitem>
     
    367367      </itemizedlist>
    368368
    369       <para>Replace <replaceable>[ll]</replaceable> with the two-letter code for 
    370       your language (e.g., <quote>en</quote>) and 
    371       <replaceable>[CC]</replaceable> with the two-letter code for your country 
    372       (e.g., <quote>GB</quote>). Also you may need to specify (and this is actually 
    373       the preferred form) your character encoding (e.g., <quote>iso8859-1</quote>) 
    374       after a dot (so that the result is <quote>en_GB.iso8859-1</quote>). Issue the 
     369      <para>Replace <replaceable>[ll]</replaceable> with the two-letter code for
     370      your language (e.g., <quote>en</quote>) and
     371      <replaceable>[CC]</replaceable> with the two-letter code for your country
     372      (e.g., <quote>GB</quote>). Also you may need to specify (and this is actually
     373      the preferred form) your character encoding (e.g., <quote>iso8859-1</quote>)
     374      after a dot (so that the result is <quote>en_GB.iso8859-1</quote>). Issue the
    375375      following command for more information:</para>
    376376
    377377<screen><userinput>man 3 setlocale</userinput></screen>
    378378
    379       <para>The list of all locales supported by <application>Glibc</application> 
     379      <para>The list of all locales supported by <application>Glibc</application>
    380380      can be obtained by running the following command:</para>
    381381
    382 <screen><userinput>locale -a</userinput></screen> 
    383 
    384       <para>After you are sure about your locale settings, create the 
    385       <filename>/etc/profile.d/i18n.sh</filename> file:</para> 
    386  
     382<screen><userinput>locale -a</userinput></screen>
     383
     384      <para>After you are sure about your locale settings, create the
     385      <filename>/etc/profile.d/i18n.sh</filename> file:</para>
     386
    387387<screen role="root"><userinput>cat &gt; /etc/profile.d/i18n.sh &lt;&lt; "EOF"
    388388<literal># Set up i18n variables
     
    392392EOF</userinput></screen>
    393393
    394       <para>The <envar>LC_ALL</envar> variable sets the same value for all locale 
    395       categories. For better control, you may prefer to set values individually for 
    396       all categories listed in the output of the <command>locale</command> 
     394      <para>The <envar>LC_ALL</envar> variable sets the same value for all locale
     395      categories. For better control, you may prefer to set values individually for
     396      all categories listed in the output of the <command>locale</command>
    397397      command.</para>
    398398
    399399      <para>The <envar>G_FILENAME_ENCODING</envar> variable tells applications
    400       such as <application>Glib</application> and <application>GTK+</application> 
     400      such as <application>Glib</application> and <application>GTK+</application>
    401401      that filenames are in the default locale encoding and not in UTF-8 as
    402402      assumed by default.</para>
     
    407407      <title>Other Initialization Values</title>
    408408
    409       <para>Other initialization can easily be added to the 
    410       <filename>profile</filename> by adding additional scripts to the 
     409      <para>Other initialization can easily be added to the
     410      <filename>profile</filename> by adding additional scripts to the
    411411      <filename class='directory'>/etc/profile.d</filename> directory.</para>
    412412
     
    426426
    427427<screen role="root"><userinput>cat &gt; /etc/bashrc &lt;&lt; "EOF"
    428 <literal># Begin /etc/bashrc 
    429 # Written for Beyond Linux From Scratch 
     428<literal># Begin /etc/bashrc
     429# Written for Beyond Linux From Scratch
    430430# by James Robertson &lt;jameswrobertson@earthlink.net&gt;
    431431# updated by Bruce Dubbs &lt;bdubbs@linuxfromscratch.org&gt;
     
    455455# Provides prompt for non-login shells, specifically shells started
    456456# in the X environment. [Review the LFS archive thread titled
    457 # PS1 Environment Variable for a great case study behind this script 
     457# PS1 Environment Variable for a great case study behind this script
    458458# addendum.]
    459459
     
    478478    permissions after the command is run. You can then copy
    479479    <filename>/etc/skel/.bash_profile</filename> to the home directories of already
    480     existing users, including <systemitem class="username">root</systemitem>, 
     480    existing users, including <systemitem class="username">root</systemitem>,
    481481    and set the owner and group appropriately.</para>
    482482
     
    500500     if [ "$DIR" != "$1" ]; then
    501501       NEWPATH=${NEWPATH:+$NEWPATH:}$DIR
    502      fi     
     502     fi
    503503  done
    504  
     504
    505505  # Then append the directory
    506506  export PATH=$NEWPATH:$1
     
    512512
    513513if [ -d "$HOME/bin" ] ; then
    514   append $HOME/bin     
     514  append $HOME/bin
    515515fi
    516516
     
    521521
    522522  </sect2>
    523  
     523
    524524  <sect2 id="bashrc-profile">
    525525    <title>~/.bashrc</title>
     
    544544# ~/.bash_profile.  System wide environment variables and startup
    545545# programs are in /etc/profile.  System wide aliases and functions are
    546 # in /etc/bashrc. 
     546# in /etc/bashrc.
    547547
    548548if [ -f "/etc/bashrc" ] ; then
     
    554554
    555555  </sect2>
    556  
    557  
     556
     557
    558558  <sect2 id="bash_logout-profile">
    559559    <title>~/.bash_logout</title>
     
    579579
    580580  </sect2>
    581  
    582  
     581
     582
    583583  <sect2 id="etc-dircolors-profile">
    584584    <title>/etc/dircolors</title>
     
    595595    run the following command. The <filename class="directory">/etc/skel</filename>
    596596    setup steps seen above also can be used here to provide a
    597     <filename>~/.dircolors</filename> file when a new user is set up. As before, 
     597    <filename>~/.dircolors</filename> file when a new user is set up. As before,
    598598    just change the output file name on the following command and assure the
    599     permissions, owner, and group are correct on the files created and/or 
     599    permissions, owner, and group are correct on the files created and/or
    600600    copied.</para>
    601601
     
    603603
    604604    <para>If you wish to customize the colors used for different file types, you can
    605     edit the <filename>/etc/dircolors</filename> file.  The instructions for setting 
     605    edit the <filename>/etc/dircolors</filename> file.  The instructions for setting
    606606    the colors are embedded in the file.</para>
    607607
  • xsoft/graphweb/dillo.xml

    r481b3e8 r384039a  
    2121  </sect1info>
    2222
    23   <title><application>Dillo</application>-&dillo-version;</title>
     23  <title>Dillo-&dillo-version;</title>
    2424
    2525  <indexterm zone="dillo">
Note: See TracChangeset for help on using the changeset viewer.