You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Amy Roh <am...@betaversion.org> on 2001/03/20 02:43:55 UTC

TOMCAT 4.x SSI Status

Bip,

What's the status on the SSI feature that you were working on.  I would like to 
help you finish all the features and commit the code if you'd like.  Status?  

Amy

Re: TOMCAT 4.x SSI Status

Posted by Bip Thelin <bi...@razorfish.com>.
Attached is the latest SSI package, it's not heavily tested. It supports expiration on
the SSI page and buffering. Check below how to use it also ook below on what's implemented
and what's not. Amy, check the files and mail me and we can decide how to work on the
package towards a "stable" release.

BTW; Anyone know where to buy those old pimp-ass Kung Fu movies in San Francisco?
I'm talking about stuff like: 36chambers, Chess Boxing, 5 deadly Venoms, Wu-tang.

	Cheers, Bip

---------------------------------------------------------------------------------------

::::::: Implemented / Not implemented
#+Echo
#Config
	*errmsg
	*sizefmt
	timefmt
#@Fsize
flastmod
exec
#@include
--------------------------------------------------------
* == fully supported.
# == partly supported.
@ == virtual directive not supported.
+ == Missing enviromental variables: 
DOCUMENT_NAME: The current filename. 
DOCUMENT_URI: The virtual path to this document (such as /docs/tutorials/foo.shtml). 
QUERY_STRING_UNESCAPED: The unescaped version of any search query the client sent, with all shell-special characters escaped with \. 
DATE_LOCAL: The current date, local time zone. Subject to the timefmt parameter to the config command. 
DATE_GMT: Same as DATE_LOCAL but in Greenwich mean time. 
LAST_MODIFIED: The last modification date of the current document. Subject to timefmt like the others. 


::::::: To use add the following to your web.xml:
------------------------------------8<--------------------------------------
<servlet>
	<servlet-name>ssi</servlet-name>
	<servlet-class>org.apache.catalina.servlets.SsiInvokerServlet</servlet-class>
	<init-param>
		<!-- debug > 0 == debug enabled -->
		<param-name>debug</param-name>
		<param-value>1</param-value>
	</init-param>
	<init-param>
		<!-- time in seconds before the SSI page expires -->
		<param-name>expires</param-name>
		<param-value>666</param-value>
	</init-param>
	<init-param>
		<!-- 0 == false; 1 == true -->
		<param-name>buffered</param-name>
		<param-value>1</param-value>
	</init-param>
	<load-on-startup>5</load-on-startup>
</servlet>
....
<servlet-mapping>
	<servlet-name>ssi</servlet-name>
	<url-pattern>*.shtml</url-pattern>
</servlet-mapping>
------------------------------------8<--------------------------------------

Re: TOMCAT 4.x SSI Status

Posted by Bip Thelin <bi...@razorfish.com>.
Amy Roh wrote:
> 
> Bip,
> 
> What's the status on the SSI feature that you were working on.  I would like to
> help you finish all the features and commit the code if you'd like.  Status?

Hi, I'll mail the latest source later on today(Pacific time). I've had my ass full
of good 'ol work-work lately. That's why I haven't already mailed something out.

I'll give you a quick update on status and my thoughts around it when I mail out the
source.

Aiight!

	..bip