Project

General

Profile

Actions

Mod ssi » History » Revision 3

« Previous | Revision 3/28 (diff) | Next »
jan, 2006-08-21 11:41
expr is supported, added some examples, fixed layout


{{{
#!rst

====================
Server-Side Includes ====================

---------------
Module: mod_ssi
---------------

.. contents:: Table of Contents

Description ===========

Configuration
-------------

::

server.modules = ( ..., "mod_ssi", ... )
ssi.extension = ( ".shtml" )

Supported Options
-----------------

- ```` ::

- ````
- ````
- ````
- ````
- ````
- ````
- ````
- ````
- ````
- ````
- ```` ::

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:

- nested virtual
- config.errmsg
- echo.encoding

}}}

Updated by jan over 17 years ago · 3 revisions