]> granicus.if.org Git - apache/commitdiff
Bring the mod_include docs up to scratch and link up the ssi tutorial.
authorJoshua Slive <slive@apache.org>
Mon, 7 May 2001 00:42:21 +0000 (00:42 +0000)
committerJoshua Slive <slive@apache.org>
Mon, 7 May 2001 00:42:21 +0000 (00:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89042 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/ssi.html.en
docs/manual/index.html.en
docs/manual/mod/mod_include.html

index da17836b410df4ad63260246ab69d4681d6cfd4b..861545fbe117d362eab0eed6c88fc2530ce61294 100644 (file)
@@ -143,8 +143,8 @@ such as <code>.shtml</code>, with the following directives:</p>
 
 <pre>
         AddType text/html .shtml
-        &lt;FilesMatch "\.shtml[.$]"&gt;
-          SetOutputFilter INCLUDES<br>
+        &lt;FilesMatch "\.shtml(\..+)?$"&gt;
+          SetOutputFilter INCLUDES
         &lt;/FilesMatch&gt;
 </pre>
 
@@ -516,6 +516,8 @@ ever resorting to CGI.</p>
 used for generating dynamic web pages. But it is a great way to add
 small amounts of dynamic content to pages, without doing a lot of extra
 work.</p>
+
+<!--#include virtual="footer.html" -->
 </body>
 </html>
 
index 3bc03115a0fdbcf9941a82746aad1babedfd06ce..876dd40f1673669933b725900247f33a9713ee48 100644 (file)
@@ -133,6 +133,8 @@ Modules: <A HREF="mod/index-bytype.html">By Type</A> or
 </td></tr><tr><td>
 <A HREF="vhosts/">Virtual Hosts</A>
 </td></tr><tr><td>
+<A HREF="howto/ssi.html">Server Side Includes</A>
+</td></tr><tr><td>
 <A HREF="howto/cgi.html">Dynamic Content with CGI</A>
 </td></tr><tr><td>
 <A HREF="handler.html">Handlers</A>
index b296e77c662d40d8f0cc2f069c119f60a22a5243..ee32bf010acae12b7c1f8fd57af918d6408e6f25 100644 (file)
@@ -36,7 +36,7 @@ REL="Help"
 
 <h2>Summary</h2>
 
-<p>This module provides a handler which will process files before they
+<p>This module provides a filter which will process files before they
 are sent to the client.  The processing is controlled by specially
 formated SGML comments, referred to as <em>elements</em>.  These
 elements allow conditional text, the inclusion other files or
@@ -63,7 +63,7 @@ resulting document the mime type of <CODE>text/html</CODE>:
 
 <blockquote><code>
 AddType text/html .shtml<br>
-&lt;FilesMatch "\.shtml[.$]"&gt;<br>
+&lt;FilesMatch "\.shtml(\..+)?$"&gt;<br>
 &nbsp;&nbsp;SetOutputFilter INCLUDES<br>
 &lt;/FilesMatch&gt;
 </code></blockquote>