[xsl] Ant XSLT task issues - redo

Subject: [xsl] Ant XSLT task issues - redo
From: "dvint@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 13 Feb 2024 17:30:23 -0000
Sorry had a operator error and sent before completed.

I'm trying to use oXygen's environment to run a conversion effort that will be applied several hundred times to different bundles of DITA content.

oXygen has a transform process that ties into their projects and environments. At is the only "programming" language supported to do this.

I've got the framework of this process working but I'm getting an odd error when from Ant, I use the <xslt> task to process the dita content. I have this:

<target name="asciidoc-conversion">
<echo>=== Process map for navigation and folder structure</echo>
<echo>${normalMap}</echo>
<xslt
basedir="/Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/formatsampleX/dita/out/dita/"
in="/Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/formatsampleX/dita/out/dita/mrc1659720632866.ditamap"
style="/Users/danvint/pubsrc/dita2asciidoc/normal-map2asciidoc.xsl"
destdir="/Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/dummy">
</xslt>
</target>


My understanding is:
- basedir should be where the files live that I want to process
- in should be the file that I want to process
- style is the stylesheet to apply
- destdir where to write the results.

I get this error when running this:

asciidoc-conversion:
[echo] === Process map for navigation and folder structure
[echo] /Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/formatsampleX/dita/out/dita//mrc1659720632866.ditamap
[xslt] Transforming into /Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/dummy
[xslt] Processing /Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/formatsampleX/dita/out/dita/FormatSample-samples2.pdf to /Users/danvint/pubsrc/_src-data-files/asciidoc-processing/Ixia-Source/dita-files/dummy/FormatSample-samples2.html
[xslt] Loading stylesheet /Users/danvint/pubsrc/dita2asciidoc/normal-map2asciidoc.xsl
[xslt] : Error! file:/Users/danvint/pubsrc/dita2asciidoc/normal-map2asciidoc.xsl: line 380: An attribute whose value must be a QName or whitespace-separated list of QNames had the value 'list chunks'


Why is this trying to process FormatSample-samples2.pdf instead of mrc1659720632866.ditamap as I specified?

When I run the stylesheet directly against the mrc1659720632866.ditamap as specified everything works fine.

Current Thread