
December 24th, 2003, 12:33 PM
|
|
Registered User
|
|
Join Date: Nov 2003
Location: Lexington, KY
Posts: 12
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
How do I transform XLink/XPointer into HTML using XSL?
This might be as simple as "It can't be done," but that takes all the fun out of it.
I have an XML document that consists of blocks similar to this
Code:
<turn ts="20031222145620">
<act show="n">See also this<ref xlink:type="simple" xlink:href="xpointer(id('20031215125307'))">post</ref>.</act>
...
</turn>
I output it to HTML using an XSL stylesheet. I have successfully implemented HTML <a> tags, but don't know how to implement the XLink. The text is displayed, but is not an active link.
Does it need to be (can it be) parsed in XSL? Is it a browser issue (IE6, NN7)? Am I using XLink incorrectly?
Please help.
|