xsl-list
[Top] [All Lists]

<a class="..." href="..." problem

2006-01-29 03:59:39
Hi all,

I just began with xsl two days ago, so sorry for this maybe stupid
question.

I am trying to write some xsl stylesheets but I encounter some problems
with next xsl document. 

As you can see it in the "chapter" template section, I try to enumerate
all menu entries through two XPath nodes. <title> corresponds to the
label displayed on the web page and <url> corresponding to the link
pointing to the web page. 

This is working fine except the href variable. It seems I cannot insert
some <xsl:... /> tag into some double quotes being part of another tag.

How can I solve this problem ?

Regards 
Vincent

--------------
 index.xsl
--------------

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet
    version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="xml" encoding="iso-8859-1"

doctype-system="http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd";
            doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN">
</xsl:output>

<xsl:template match="document">
    <html>
    <head>
        <title>
            <xsl:value-of select="title"/>
        </title>
    </head>
    <body>
        <div class="navigation">
            <xsl:apply-templates select="chapter"/>
        </div>
    </body>
    </html>
</xsl:template>

<xsl:template match="chapter">
    <a class="navigation" href="<xsl:value-of select="url"/>"
id="selected">
        <xsl:value-of select="title"/>
    </a>
</xsl:template>

</xsl:stylesheet>



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>