Log:
Removed spaces and slashes from internal fragment names and hrefs. Fixed a couple closing tags.
Note: This one should be complete; previous patches had '-w' as an option to cvs diff, skipping most of the changes. --cp
Index: ssi.html =================================================================== RCS file: /home/cvspublic/httpd-docs-1.3/htdocs/manual/howto/ssi.html,v retrieving revision 1.5 diff -u -d -b -r1.5 ssi.html --- ssi.html 2000/11/10 21:02:39 1.5 +++ ssi.html 2000/11/16 20:57:55 @@ -16,48 +16,48 @@
<ul> <li><a href= -"#apache tutorial: introduction to server side includes">Apache +"#apachetutorial:introductiontoserversideincludes">Apache Tutorial: Introduction to Server Side Includes</a></li>
-<li><a href="#what are ssi">What are SSI?</a></li> +<li><a href="#whataressi">What are SSI?</a></li>
-<li><a href="#configuring your server to permit ssi">Configuring your +<li><a href="#configuringyourservertopermitssi">Configuring your server to permit SSI</a></li>
-<li><a href="#basic ssi directives">Basic SSI directives</a> +<li><a href="#basicssidirectives">Basic SSI directives</a>
<ul> - <li><a href="#today's date">Today's date</a></li> + <li><a href="#today'sdate">Today's date</a></li>
- <li><a href="#modification date of the file">Modification date of the + <li><a href="#modificationdateofthefile">Modification date of the file</a></li>
- <li><a href="#including the results of a cgi program">Including the + <li><a href="#includingtheresultsofacgiprogram">Including the results of a CGI program</a></li> </ul> </li>
-<li><a href="#additional examples">Additional examples</a> +<li><a href="#additionalexamples">Additional examples</a>
<ul> -<li><a href="#when was this document modified">When was this document +<li><a href="#whenwasthisdocumentmodified">When was this document modified?</a></li>
-<li><a href="#including a standard footer">Including a standard +<li><a href="#includingastandardfooter">Including a standard footer</a></li>
-<li><a href="#what else can i config">What else can I config?</a></li> +<li><a href="#whatelsecaniconfig">What else can I config?</a></li>
-<li><a href="#executing commands">Executing commands</a></li> +<li><a href="#executingcommands">Executing commands</a></li> </ul> </li>
-<li><a href="#advanced ssi techniques">Advanced SSI techniques</a> +<li><a href="#advancedssitechniques">Advanced SSI techniques</a>
<ul> -<li><a href="#setting variables">Setting variables</a></li> +<li><a href="#settingvariables">Setting variables</a></li>
-<li><a href="#conditional expressions">Conditional expressions</a></li> +<li><a href="#conditionalexpressions">Conditional expressions</a></li> </ul> </li>
@@ -67,7 +67,7 @@ <!-- INDEX END --> <hr> <h2><a name= -"apache tutorial: introduction to server side includes">Apache +"apachetutorial:introductiontoserversideincludes">Apache Tutorial: Introduction to Server Side Includes</a></h2>
<table border="1"> @@ -105,7 +105,7 @@ conditional statements in your SSI directives.</p>
<hr> -<h2><a name="what are ssi">What are SSI?</a></h2> +<h2><a name="whataressi">What are SSI?</a></h2>
<p>SSI (Server Side Includes) are directives that are placed in HTML pages, and evaluated on the server while the pages are being served. @@ -122,7 +122,7 @@ solution.</p>
<hr> -<h2><a name="configuring your server to permit ssi">Configuring your +<h2><a name="configuringyourservertopermitssi">Configuring your server to permit SSI</a></h2>
<p>To permit SSI on your server, you must have the following directive @@ -201,7 +201,7 @@
<hr> -<h2><a name="basic ssi directives">Basic SSI directives</a></h2> +<h2><a name="basicssidirectives">Basic SSI directives</a></h2>
<p>SSI directives have the following syntax:</p>
@@ -218,7 +218,7 @@ more about most of these in the next installment of this series. For now, here are some examples of what you can do with SSI</p>
-<h3><a name="today's date">Today's date</a></h3> +<h3><a name="today'sdate">Today's date</a></h3>
<pre> <!--#echo var=DATE_LOCAL --> @@ -239,7 +239,7 @@ Today is <!--#echo var=DATE_LOCAL --> </pre>
-<h3><a name="modification date of the file">Modification date of the +<h3><a name="modificationdateofthefile">Modification date of the file</a></h3>
<pre> @@ -249,7 +249,7 @@ <p>This element is also subject to <code>timefmt</code> format configurations.</p>
-<h3><a name="including the results of a cgi program">Including the +<h3><a name="includingtheresultsofacgiprogram">Including the results of a CGI program</a></h3>
<p>This is one of the more common uses of SSI - to output the results @@ -260,13 +260,13 @@ </pre>
<hr> -<h2><a name="additional examples">Additional examples</a></h2> +<h2><a name="additionalexamples">Additional examples</a></h2>
<p>Following are some specific examples of things you can do in your HTML documents with SSI.</p>
<hr> -<h2><a name="when was this document modified">When was this document +<h2><a name="whenwasthisdocumentmodified">When was this document modified?</a></h2>
<p>Earlier, we mentioned that you could use SSI to inform the user when @@ -296,7 +296,7 @@ same.</p>
<hr> -<h2><a name="including a standard footer">Including a standard +<h2><a name="includingastandardfooter">Including a standard footer</a></h2>
<p>If you are managing any site that is more than a few pages, you may @@ -328,7 +328,7 @@ file, and so on.</p>
<hr> -<h2><a name="what else can i config">What else can I config?</a></h2> +<h2><a name="whatelsecaniconfig">What else can I config?</a></h2>
<p>In addition to being able to <code>config</code> the time format, you can also <code>config</code> two other things.</p> @@ -358,7 +358,7 @@ for an abbreviated number in Kb or Mb, as appropriate.</p>
<hr> -<h2><a name="executing commands">Executing commands</a></h2> +<h2><a name="executingcommands">Executing commands</a></h2>
<p>I expect that I'll have an article some time in the coming months about using SSI with small CGI programs. For now, here's something else @@ -394,7 +394,7 @@ <code>Options</code> directive.</p>
<hr> -<h2><a name="advanced ssi techniques">Advanced SSI techniques</a></h2> +<h2><a name="advancedssitechniques">Advanced SSI techniques</a></h2>
<p>In addition to spitting out content, Apache SSI gives you the option of setting variables, and using those variables in comparisons and @@ -408,7 +408,7 @@ sooner. Go on. Do it now. We'll wait.</p>
<hr> -<h2><a name="setting variables">Setting variables</a></h2> +<h2><a name="settingvariables">Setting variables</a></h2>
<p>Using the <code>set</code> directive, you can set variables for later use. We'll need this later in the discussion, so we'll talk about @@ -449,7 +449,7 @@ </pre>
<hr> -<h2><a name="conditional expressions">Conditional expressions</a></h2> +<h2><a name="conditionalexpressions">Conditional expressions</a></h2>
<p>Now that we have variables, and are able to set and compare their values, we can use them to express conditionals. This lets SSI be a