nvdl + schematron + xslt prefix

Post here issues about NVDL, not specifically linked to the oNVDL implementation.
queshaw
Posts: 41
Joined: Wed Aug 08, 2007 5:56 am

nvdl + schematron + xslt prefix

Post by queshaw »

Oxygen complains that the attribute dummy-for-xmlns is not allowed on some element when I assign a prefix to the XSLT namespace in schematron, e.g.:

test.nvdl:

<rules xmlns="http://purl.oclc.org/dsdl/nvdl/ns/structure/1.0">
<anyNamespace>
<validate schema="test.sch" schemaType="application/x-schematron"/>
</anyNamespace>
</rules>

test.sch:

<schema xmlns="http://www.ascc.net/xml/schematron">
<ns prefix="test" uri="http://www.w3.org/1999/XSL/Transform"/>
<pattern name="a">
<rule context="doc">
<assert test="test:transform">Blah.</assert>
</rule>
</pattern>
</schema>

The 1.5 schematron skeleton that I have would have created an attribute with the prefix 'test' named 'dummy-for-xmlns'. Using the above schematron as the schema works, but using the NVDL results in an error message saying attribute test:dummy-for-xmlns is not allowed somewhere.
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Post by sorin_ristache »

Hello,

The error is reported on the internal stylesheet obtained from the Schematron schema and used to validate the XML document. It happens only when the Shematron schema uses elements from the XSLT namespace. We will fix the problem.


Thank you,
Sorin
Post Reply