Re: Help Needed: Using SVG command "use xlink:href="#local_variable_name" in XSLT

Patrick Soh wrote:

> Hi,
> I am trying to put into XSL file the SVG command "use 
> xlink:href="#local_variable_name" but XSL keeps rejecting it. The Error 
> Message is "Error in input XSL: Error: Reference to undeclared namespace 
> prefix:'xlink'.

Hi,

I think you should declare xlink namespace in your stylesheet :

<xsl:stylesheet version="1.0"
		xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
		xmlns:xlink="http://www.w3.org/1999/xlink">

alex

Received on Tuesday, 20 January 2004 06:54:31 UTC