Ruby/XSLT v0.3.0 

Copyright (C) 2003, 2004 Gregoire Lejeune <gregoire.lejeune@free.fr>

Ruby/Asp is freely distributable according to the terms of the
GNU General Public License (see the file 'COPYING').

This program is distributed without any warranty. See the file
'COPYING' for details.

-------------------------------------------------------------------------------
Documentation
-------------------------------------------------------------------------------

XML::XSLT - A Ruby class for processing XSLT

SYNOPSIS

require 'xml/xslt'
xslt = XML::XSLT.new()
xslt.xsl = xsl_string
xslt.xml = xml_string
out = xslt.serve()
print out;

METHODS

XML::XSLT.new()
    Returns a new XSLT parser object
XML::XSLT.xml=
    Set XML document
XML::XSLT.xmlfile=
	Set XML file
XML::XSLT.xsl=
    Set XSL document
XML::XSLT.xslfile=
	Set XSL file
XML::XSLT.xml
    Get XML document or file
XML::XSLT.xsl
    Get XSL document or file
XML::XSLT.serve()
    Processes the given XML through the stylesheet. 
    Returns a string containg the result.
XML::XSLT.serve( file )
    Processes the given XML through the stylesheet. 
    Returns a string containg the result and save it to file
-------------------------------------------------------------------------------
