You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2004/03/22 22:32:12 UTC

cvs commit: httpd-2.0/docs/manual/howto ssi.html.en ssi.xml

slive       2004/03/22 13:32:12

  Modified:    docs/manual/howto ssi.html.en ssi.xml
  Log:
  Fix reference to variable discussion.
  
  PR: 27811
  
  Revision  Changes    Path
  1.28      +9 -10     httpd-2.0/docs/manual/howto/ssi.html.en
  
  Index: ssi.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/howto/ssi.html.en,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -d -b -u -r1.27 -r1.28
  --- ssi.html.en	21 Feb 2004 00:31:32 -0000	1.27
  +++ ssi.html.en	22 Mar 2004 21:32:12 -0000	1.28
  @@ -376,16 +376,15 @@
           <!--#set var="name" value="Rich" -->
   </code></p></div>
   
  -    <p>In addition to merely setting values literally like that,
  -    you can use any other variable, including, for example,
  -    environment variables, or some of the variables we discussed in
  -    the last article (like <code>LAST_MODIFIED</code>, for example)
  -    to give values to your variables. You will specify that
  -    something is a variable, rather than a literal string, by using
  -    the dollar sign ($) before the name of the variable.</p>
  -<div class="example"><p><code>
  -        &lt;!--#set var="modified" value="$LAST_MODIFIED" --&gt;
  -</code></p></div>
  +    <p>In addition to merely setting values literally like that, you
  +    can use any other variable, including <a href="../env.html">environment variables</a> or the variables
  +    discussed above (like <code>LAST_MODIFIED</code>, for example) to
  +    give values to your variables. You will specify that something is
  +    a variable, rather than a literal string, by using the dollar sign
  +    ($) before the name of the variable.</p> 
  +
  +    <div class="example"><p><code> &lt;!--#set var="modified" value="$LAST_MODIFIED" --&gt;
  +    </code></p></div>
   
       <p>To put a literal dollar sign into the value of your
       variable, you need to escape the dollar sign with a
  
  
  
  1.11      +10 -10    httpd-2.0/docs/manual/howto/ssi.xml
  
  Index: ssi.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/howto/ssi.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -d -b -u -r1.10 -r1.11
  --- ssi.xml	9 Feb 2004 20:22:51 -0000	1.10
  +++ ssi.xml	22 Mar 2004 21:32:12 -0000	1.11
  @@ -383,16 +383,16 @@
           &lt;!--#set var="name" value="Rich" --&gt;
   </example>
   
  -    <p>In addition to merely setting values literally like that,
  -    you can use any other variable, including, for example,
  -    environment variables, or some of the variables we discussed in
  -    the last article (like <code>LAST_MODIFIED</code>, for example)
  -    to give values to your variables. You will specify that
  -    something is a variable, rather than a literal string, by using
  -    the dollar sign ($) before the name of the variable.</p>
  -<example>
  -        &lt;!--#set var="modified" value="$LAST_MODIFIED" --&gt;
  -</example>
  +    <p>In addition to merely setting values literally like that, you
  +    can use any other variable, including <a
  +    href="../env.html">environment variables</a> or the variables
  +    discussed above (like <code>LAST_MODIFIED</code>, for example) to
  +    give values to your variables. You will specify that something is
  +    a variable, rather than a literal string, by using the dollar sign
  +    ($) before the name of the variable.</p> 
  +
  +    <example> &lt;!--#set var="modified" value="$LAST_MODIFIED" --&gt;
  +    </example>
   
       <p>To put a literal dollar sign into the value of your
       variable, you need to escape the dollar sign with a