]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport:
authorJoshua Slive <slive@apache.org>
Mon, 22 Mar 2004 21:37:26 +0000 (21:37 +0000)
committerJoshua Slive <slive@apache.org>
Mon, 22 Mar 2004 21:37:26 +0000 (21:37 +0000)
  Fix reference to variable discussion.

  PR: 27811

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@103085 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/ssi.html.en
docs/manual/howto/ssi.xml

index d306bd29b33f085d699e023be6f1a2b69c23cdec..b2acc156f5f2f64b5d7f6f3c27c6da20b5d34d8a 100644 (file)
@@ -376,16 +376,15 @@ modified?</a></h3>
         &lt;!--#set var="name" value="Rich" --&gt;
 </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
@@ -482,4 +481,4 @@ modified?</a></h3>
 </div><div id="footer">
 <p class="apache">Copyright 1999-2004 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
-</body></html>
\ No newline at end of file
+</body></html>
index 9a01443d21c9234267ab3d08724c986b77a4d738..b58433d8333039652e3669c930bd5025f522911c 100644 (file)
@@ -383,16 +383,16 @@ modified?</title>
         &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