XSLT is a standard language whose specification has been standardised by the
W3C. You can find the specification at the following URL:
http://www.w3.org/TR/xslt This specification has been implemented by different vendors and you can also find open-source implementations. Implementations of XSLT processors exists for all major languages (C++,
Java, Perl, etc) and for all platforms.
As soon as you stylesheet is written according to the specification, it can be run with any XSLT processor on any OS.
One of the feature of XSLT is to allow output in many different formats. The 3 output formats that are part of the spec are xml, html and text, but you may also use XSL Formating Objects along with a Formatting Objects Processor. For instance
Apache FOP is an open-source implementation of XSL-FO). Formatting objects allow you to prepare a document including graphics. You can then output this document in various document formats(PDF, PS, SVG).
XSLT processors written in Java will run (and behave) exactly the same on all OSes, assuming you are using the same version of the JDK.
If you want to use a Java based XLST processor, I would recommend
Xalan as it's one of the most widely used. Additionaly, a version of this processor has been included in the lastest JDK 1.4 which runs on all plaforms.
Best luck
[ December 16, 2002: Message edited by: Beno�t d'Oncieu ]