From 30bcd7d4ea6dc1bd87411c3fe0c94877007dec8d Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Wed, 16 Jan 2013 00:34:26 +0000 Subject: [PATCH] Apply changes from trunk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1433769 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/howto/ssi.xml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/manual/howto/ssi.xml b/docs/manual/howto/ssi.xml index 965c638476..ea616fcd10 100644 --- a/docs/manual/howto/ssi.xml +++ b/docs/manual/howto/ssi.xml @@ -66,14 +66,26 @@ existing HTML documents.

an existing HTML page, without having to serve the entire page via a CGI program, or other dynamic technology.

+

For example, you might place a directive into an existing HTML + page, such as:

+ + + + + +

And, when the page is served, this fragment will be evaluated and replaced with its value:

+ + + Tuesday, 15-Jan-2013 19:28:54 EST + +

The decision of when to use SSI, and when to have your page entirely generated by some program, is usually a matter of how much of the page is static, and how much needs to be recalculated every time the page is served. SSI is a great way - to add small pieces of information, such as the current time. - But if a majority of your page is being generated at the time - that it is served, you need to look for some other - solution.

+ to add small pieces of information, such as the current time - shown + above. But if a majority of your page is being generated at the time + that it is served, you need to look for some other solution.

-- 2.50.1