Package org.apache.catalina.ssi
package org.apache.catalina.ssi
This package contains code that is used by the SsiInvoker.
This class consists of SsiMediator.java
which works as a
mediator between the different SsiCommands. To add a command you have to
implement the SsiCommand
interface and extend the
SsiMediator
. Commands currently implemented are
- SsiConfig - Implementation of the NCSA command Config i.e. <!--#config errmsg="error?"-->
- SsiEcho - Implementation of the NCSA command Echo i.e. <!--#echo var="SERVER_NAME"-->
- SsiExec - Not implemented
- SsiFlastMod - Implementation of the NCSA command flastmod i.e. <!--#flastmod virtual="file"-->
- SsiFsize - Implementation of the NCSA command fsize i.e. <!--#fsize file="file"-->
- SsiInclude - Implementation of the NCSA command Include i.e. <!--#config virtual="includefile"-->
-
ClassDescriptionClass that extends ServletOutputStream, used as a wrapper from within
SsiInclude
Represents a parsed expression.Parses an expression string to return the individual tokens.An HttpServletResponseWrapper, used fromSSIServletExternalResolver
The interface that all SSI commands ( SSIEcho, SSIInclude, ...) must implement.SSI command that handles all conditional directives.Implements the Server-side #exec commandReturn the result associated with the supplied Server Variable.Implements the Server-side #exec commandInterface used by SSIMediator to talk to the 'outside world' ( usually a servlet )Filter to process SSI requests within a webpage.Implements the Server-side #flastmod commandImplements the Server-side #fsize commandImplements the Server-side #include commandAllows the different SSICommand implementations to share data/talk to each otherImplements the Server-side #printenv commandThe entry point to SSI processing.Servlet to process SSI requests within a webpage.An implementation of SSIExternalResolver that is used with servlets.Implements the Server-side #set commandException used to tell SSIProcessor that it should stop processing SSI commands.