xsl-list
[Top] [All Lists]

RE: [xsl] Matching a template

2009-10-13 04:50:10
Well, your idAplicatie element doesn't have any text nodes, so the pattern
match="idAplicatie/text()" will never match anything. Change it to

  <xsl:template match="idAplicatie">
    <idAplicatie>
        <xsl:value-of select="$idAplicatie"/>
    </idAplicatie>
  </xsl:template>

Regards,

Michael Kay
http://www.saxonica.com/
http://twitter.com/michaelhkay 

-----Original Message-----
From: claudius teo [mailto:claud108(_at_)yahoo(_dot_)com] 
Sent: 13 October 2009 09:41
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Matching a template

the xsl stylesheet I use is

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="2.0">
    <xsl:output method="xml"/>
    <xsl:param name="idAplicatie">kubera</xsl:param>
      <xsl:template match="*|@*|text()">
              <xsl:copy>
                      <xsl:apply-templates select="*|@*|text()"/>
              </xsl:copy>
      </xsl:template>
      <xsl:template match="/">
              <xsl:processing-instruction 
name="xml-stylesheet">href="https://localhost:8443/exist/rest/
/db/xsltforms/xsltforms.xsl" 
type="text/xsl"</xsl:processing-instruction>
              <xsl:copy>
                      <xsl:apply-templates select="*|@*|text()"/>
              </xsl:copy>
      </xsl:template> 
    <xsl:template match="idAplicatie/text()">
              <xsl:value-of select="$idAplicatie"/>
    </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>
--~--



--~------------------------------------------------------------------
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>