org.w3c.jigsaw.ssi.commands |
|
Java Source File Name | Type | Comment |
BasicCommand.java | Class | This class just adds some convenience functions for commands. |
BasicCommandRegistry.java | Class | An implementation of CommandRegistry that uses a hash table
to store the commands. |
Command.java | Interface | This interface is used to supply implementations of SSI
commands. |
CommandRegistry.java | Class | This class represents a group of SSI commands. |
ConfigCommand.java | Class | Implementation of the config SSI command. |
ControlCommand.java | Interface | This interface is used to supply implementations of SSI
commands. |
ControlCommandException.java | Class | |
CookieCommand.java | Class | Cookies access from server side includes. |
CountCommand.java | Class | This command inserts the number of recorded accesses to this resource,
as reported by org.w3c.jigsaw.filter.CounterFilter. |
CounterCommand.java | Class | Implementation of the SSI counter command. |
DefaultCommandRegistry.java | Class | This class provides the most general and commonly used SSI commands.
Compatibility with the NCSA-style directive set has been maintained
as much as it made sense to, and new functionality adequate to Jigsaw
has been added.
In the description that follows, please refer to
the NCSA server-side includes tutorial
for comparison.
The full set of commands of the DefaultCommandRegistry is:
-
config
- The
errmsg tag is not implemented.
-
include
-
The
file and virtual tags are handled in
the same way. |
EchoCommand.java | Class | Implementation of the echo SSI command.
As extensions, it has the parameters "reqstate" (for echoing
Jigsaw request states) and "reqheader" (for echoing request
header).
Also, it can take the flag "here", whose presence means that the
variable is to be interpreted at the deepest request level (in the
case of chained internal requests), instead of doing so at the top
(external request) level. |
ElseCommand.java | Class | Implementation of the SSI else command. |
EndifCommand.java | Class | Implementation of the SSI endif command. |
EndloopCommand.java | Class | Implementation of the SSI endloop command. |
ExecCommand.java | Class | Implementation of the SSI exec command.
It inserts the output from a CGI script or a shell command in the
document. |
ExitloopCommand.java | Class | Implementation of the SSI exitloop command. |
FLastModCommand.java | Class | Implementation of the standard flastmod SSI command. |
FSizeCommand.java | Class | Implementation of the SSI fsize command. |
IfCommand.java | Class | Implementation of the SSI if command. |
IncludeCommand.java | Class | Implementation of the SSI include command. |
LoopCommand.java | Class | Implementation of the SSI loop command. |
SampleCommand.java | Class | |