Re: [xsl] generating rows for tables and footnote numbering problem

Subject: Re: [xsl] generating rows for tables and footnote numbering problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 Jul 2004 15:58:33 +0100
> It works perfectly
> for attribute colname with values of 1 but all other values are not working
> properly

> recordref does not work although correct number is generated - "2" is
> generated

you say it's not working properly but you don't say what you want it to
do. the "2" cases look to be working the same way as the "1" cases to
me.
What output did you expect?


By the way your xml file won't run anywhere other than your machine if
you leave the doctype as you had it. It would have helped people run
your code if you'd just had it as

<PUBLICATION>
...

since you don't actually need all the entity definitions to which you
gave local references.


similarly your xslt file has been scrambled (possibly by your mailer)
<xsl:stylesheet
    version="1.0"
    xmlns:xsl=" http://www.w3.org/1999/XSL/Transform
<http://www.w3.org/1999/XSL/Transform> ">
 
You can't have a space before http and what's that
<http://www.w3.org/1999/XSL/Transform>
doing there

there were several instances of

 <a href=" #{@idref <mailto:#{@idref> }">

which I guess should be

 <a href="#{@idref}">

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread