summaryrefslogtreecommitdiff
path: root/doc/ssi.txt
diff options
context:
space:
mode:
authorstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2015-09-18 15:15:18 +0000
committerstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2015-09-18 15:15:18 +0000
commit8b2630a82fbecfd57fa38aebb397a755936690e5 (patch)
treea9cfcd7bb5bea87d63fc8ef81c8456a130a249bc /doc/ssi.txt
parente57c8295ebe92b58ca3e68fa8ea8f70d4b0b4cee (diff)
downloadlighttpd-8b2630a82fbecfd57fa38aebb397a755936690e5.tar.gz
add README to point to lighttpd-1.4.x as stableHEADmaster
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@3041 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'doc/ssi.txt')
-rw-r--r--doc/ssi.txt76
1 files changed, 0 insertions, 76 deletions
diff --git a/doc/ssi.txt b/doc/ssi.txt
deleted file mode 100644
index ce0665b1..00000000
--- a/doc/ssi.txt
+++ /dev/null
@@ -1,76 +0,0 @@
-====================
-Server-Side Includes
-====================
-
----------------
-Module: mod_ssi
----------------
-
-:Author: Jan Kneschke
-:Date: $Date: 2005-03-28T08:30:05.699628Z $
-:Revision: $Revision: 227 $
-
-:abstract:
- The module for server-side includes provides a compatability
- layer for NSCA/Apache SSI.
-
-.. meta::
- :keywords: lighttpd, ssi, Server-Side Includes
-
-.. contents:: Table of Contents
-
-Description
-===========
-
-Configuration
--------------
-
-::
-
- server.modules = ( ..., "mod_ssi", ... )
- ssi.extension = ( ".shtml" )
-
-Supported Options
------------------
-
-- ``<!--#echo var="..." -->``
-- ``<!--#include (file="..."\|virtual="...") -->``
-- ``<!--#flastmod (file="..."\|virtual="...") -->``
-- ``<!--#fsize (file="..."\|virtual="...") -->``
-- ``<!--#config timefmt="..." sizefmt="(bytes|abbrev)" -->``
-- ``<!--#printenv -->``
-- ``<!--#set var="..." value="..." -->``
-- ``<!--#if expr="..." -->``
-- ``<!--#elif expr="..." -->``
-- ``<!--#else -->``
-- ``<!--#endif -->``
-
-Expression Handling
--------------------
-
-Every ''expr'' is interpreted:
-
-- logical: AND, OR, !
-- compare: =, <, <=, >, =>, !=
-- precedence: (, )
-- quoted strings: 'string with a dollar: $FOO'
-- variable substitution: $REMOTE_ADDR
-- unquoted strings: string
-
-Flow Control
-------------
-
-if, elif, else and endif can only be used to insert content under special
-conditions.
-
-Unsupported Features
---------------------
-
-The original SSI module from NCSA and Apache provided some more options
-which are not supported by this module for various reasons:
-
-- exec
-- nested virtual
-- config.errmsg
-- echo.encoding
-