HACK for Expand via SSI

Use the Zaltana-XSLT package and specifically the Zaltana::StripXML

Apache config:

# Load module
PerlModule Zaltana::StripXML

# Example include dir for Static includes
Alias /include/ /var/www/YourWebServer
<Location /include/>
	RemoveOutputFilter
	PerlOutputFilterHandler Zaltana::StripXML
</Location>

# Example include dir for Squirrel Mail
Alias /includemail/ /var/www/YourWebServer/mailcode
<Location /includemail/>
	RemoveOutputFilter
	PerlOutputFilterHandler Zaltana::StripXML
</Location>

# Your normal code - e.g. /mydesktop/
<Location /includemydesktop/>
	# Use your normal response handler - e.g. Net::MI or C version !
	SetHandler perl-script
	PerlResponseHandler Net::MI

	# Filters removed, and strip only !
	RemoveOutputFilter
	PerlOutputFilterHandler Zaltana::StripXML

	# Authentication as usual !
	# ...
</Location>

# Example HTML - from a normal directory with normal Zaltana::Style->filter
# 	<!--#include virtual="/includemydesktop/Raw,123" -->

TODO: