sunlabs.brazil.tcl |
|
Java Source File Name | Type | Comment |
TclFilter.java | Class | Filter for writing Filters in tcl
Run a tcl startup script when the handler is initialized.
anytime a request is made, call the respond callback
in the tcl code, which is provided with the
sunlabs.brazil.server.Request object as an argument.
This provides a bare-bones tcl interface. |
TclHandler.java | Class | Handler for writing handlers in tcl.
Anytime a request is made, call the respond callback
in the tcl code, which is provided with the
sunlabs.brazil.server.Request object as an argument.
This provides a bare-bones tcl interface. |
TclServerTemplate.java | Class | The TclServerTemplate looks for each
<server language="tcl">
tag in an HTML page and treats the following data up to the next
</server> tag as a Tcl script to evaluate.
The reason that Tcl scripts are included in an HTML page is usually
to generate dynamic, server-side content. |