XSLT Service

The XSLT service is a simple way to transform a well-formed XML document into web content for your site. This may be dynamic or static content. You can easily integrate the XSLT service into a Turbine screen module, or you can use the existing org.apache.turbine.modules.layouts.VelocityXslLayout class to produce dynamic content.

Configuration

# -------------------------------------------------------------------
#
#  S E R V I C E S
#
# -------------------------------------------------------------------
# Classes for Turbine Services should be defined here.
# Format: services.[name].classname=[implementing class]
#
# To specify properties of a service use the following syntax:
# service.[name].[property]=[value]

services.XSLTService.classname=org.apache.turbine.services.xslt.TurbineXSLTService
.
.
.
# -------------------------------------------------------------------
#
#  X S L T  S E R V I C E
#
# -------------------------------------------------------------------
services.XSLTService.path = /WEB-INF/stylesheets
services.XSLTService.cache = false

Usage

Please look at the org.apache.turbine.modules.layouts.VelocityXslLayout for an example usage pattern.