----- Original Message -----
From: "Jim Ray" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, October 26, 2001 2:14 PM
Subject: Using log.xml output


> I found the stylesheet for log.xml but now how do I use
> it?  Do I need to feed it through something like Coocoon
> to get the correct output?
>
> Sorry for the ignorance, but I'm just looking for  a simpler
> way to get HTML output from nightly builds.

You can use a style task in Ant.
<style style="/some/where/log.xsl" in="/some/logs/log.xml"
out="/some/logs/log.html"/>

or process it via Xalan command line or your favorite XSL processor

java org.apache.xalan.xslt.Process  -xsl /some/where/log.xsl -in
/some/logs/log.xml -out /some/logs/log.html

Stephane.

Reply via email to