Recently I was stuck with a problem implementing the SQL Extension code.

When I was copying the document to the result tree using
<xslt:copy-of select="$table" /> and my document has the following
structure.

<row-set>
    <column-header/>
    <column-header/>
    <column-header/>
    <row>
        <col/>
        <col/>
        <col/>
    </row>
</row-set>

I would get the correct tree except that the <col> node was only an open

tag, there was no corresponding close tag. While trying to debug the
problem, I changed the depth to make col at the same level as
column-header
and it was still broken, then I changed the name and it worked just
fine.
A grep through the source shows that the xsltc code defines "col" along
with a few other strings. Is it true ??

Thanks
John G


Reply via email to