Re: [xml-dev] ganttproject xsl layout challange

From
David Carlisle <>
To
Date
2006-11-28T11:19:52Z
ID
<>
Thread
Re: [xml-dev] ganttproject xsl layout challange
[task-id = current()/id]

That's looking for child elements called task-id and  id but these are
attributes, you need @task-id and @id  (it could also be made more
efficient using keys, but get it working first)

David