Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A1A53E479 for ; Wed, 16 Jan 2013 00:34:05 +0000 (UTC) Received: (qmail 22700 invoked by uid 500); 16 Jan 2013 00:34:05 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 22643 invoked by uid 500); 16 Jan 2013 00:34:05 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 22636 invoked by uid 99); 16 Jan 2013 00:34:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2013 00:34:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2013 00:34:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 430C923889E1; Wed, 16 Jan 2013 00:33:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1433768 - /httpd/httpd/trunk/docs/manual/howto/ssi.xml Date: Wed, 16 Jan 2013 00:33:45 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130116003345.430C923889E1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rbowen Date: Wed Jan 16 00:33:44 2013 New Revision: 1433768 URL: http://svn.apache.org/viewvc?rev=1433768&view=rev Log: Provide an example in the introduction in order to motivate the lengthy setup process. Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.xml?rev=1433768&r1=1433767&r2=1433768&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/ssi.xml (original) +++ httpd/httpd/trunk/docs/manual/howto/ssi.xml Wed Jan 16 00:33:44 2013 @@ -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.