From 68af27a95317241ab89bd12fb5bce06e7a57e4c2 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Mon, 7 May 2001 00:42:21 +0000 Subject: [PATCH] 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 --- docs/manual/howto/ssi.html.en | 6 ++++-- docs/manual/index.html.en | 2 ++ docs/manual/mod/mod_include.html | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index da17836b41..861545fbe1 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 3bc03115a0..876dd40f16 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 b296e77c66..ee32bf010a 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>
-- 2.40.0