On Fri, 27 Jul 2001, Eric Richardson <[EMAIL PROTECTED]>
wrote:
> <style destdir="${output.dir}"
> extension=".html"
> style="${xhtml.driver}" >
> <include name="${input.dir}/${input.file}"/>
> </style>
Should probably be
<style basedir="${input.dir}"
destdir="${output.dir}"
extension=".html"
style="${xhtml.driver}" >
<include name="${input.file}"/>
</style>
You also may want to look at the in/out attributes if you only want to
transform a single file at a time.
> Loading stylesheet
>
>/home/maxwell/jdocbook2/docroot/src/example/home/maxwell/jdocbook2/drivers/xhtmldriver.xsl
should be fixed if you use a recent nightly build. In Ant 1.3 the
style attribute has been interpreted as a path relative to the basedir
attribute, no matter how it looked like.
> I could use help with how to get the classpath to the style
> task.
Again, use a recent nightly build, the <style> task supports custom
classpath settings now. We are quite close to a beta release, so
nightly builds should be reasonably stable at this point.
Stefan