From: Joshua Slive Date: Mon, 7 May 2001 00:42:21 +0000 (+0000) Subject: Bring the mod_include docs up to scratch and link up the ssi tutorial. X-Git-Tag: 2.0.18~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68af27a95317241ab89bd12fb5bce06e7a57e4c2;p=thirdparty%2Fapache%2Fhttpd.git Bring the mod_include docs up to scratch and link up the ssi tutorial. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89042 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index da17836b410..861545fbe11 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -143,8 +143,8 @@ such as .shtml, with the following directives:

         AddType text/html .shtml
-        <FilesMatch "\.shtml[.$]">
-          SetOutputFilter INCLUDES
+ <FilesMatch "\.shtml(\..+)?$"> + SetOutputFilter INCLUDES </FilesMatch>
@@ -516,6 +516,8 @@ ever resorting to CGI.

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.

+ + diff --git a/docs/manual/index.html.en b/docs/manual/index.html.en index 3bc03115a0f..876dd40f167 100644 --- a/docs/manual/index.html.en +++ b/docs/manual/index.html.en @@ -133,6 +133,8 @@ Modules: By Type or Virtual Hosts +Server Side Includes + Dynamic Content with CGI Handlers diff --git a/docs/manual/mod/mod_include.html b/docs/manual/mod/mod_include.html index b296e77c662..ee32bf010ac 100644 --- a/docs/manual/mod/mod_include.html +++ b/docs/manual/mod/mod_include.html @@ -36,7 +36,7 @@ REL="Help"

Summary

-

This module provides a handler which will process files before they +

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 elements. These elements allow conditional text, the inclusion other files or @@ -63,7 +63,7 @@ resulting document the mime type of text/html:

AddType text/html .shtml
-<FilesMatch "\.shtml[.$]">
+<FilesMatch "\.shtml(\..+)?$">
  SetOutputFilter INCLUDES
</FilesMatch>