[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] Re: apply-templates not working


Subject: [xsl] Re: apply-templates not working
From: omprakash.v@xxxxxxxxxxxxx
Date: Wed, 19 Jan 2005 16:10:49 +0530

Hi all,

I found I have a closing tag arounf the templates and thats why they didnt
get called.

  <xsl:template xmlns:x="http://www.w3.org" match="name"/>

But Iam creating these tags using

<xsl:element name="x:template"
<xsl:attribute name="match">
<xsl:value-of select="@name" />
</xsl:attribute>

Now if I don't close the element here, it puts 2 x:template tags in the
output one having namespace and one without namespace. And where I close
the xsl:element it adds only 1 closing x:template tag. As a result, my
stylesheet is not valid xml.

Can anyone throw some light on this.

Regards,
Omprakash.V






                                                                                                                   
                    omprakash.v                                                                                    
                                         To:     xsl-list@xxxxxxxxxxxxxxxxxxxxxx                                   
                    01/19/2005           cc:                                                                       
                    03:57 PM             Subject:     apply-templates not working                                  
                                                                                                                   
                                                                                                                   



Hi all,

     I have generated a stylesheet from another stylesheet. Now when I try
to transform an xml file using the new stylesheet, the output document is
empty when viewed in browser. The view source reveals output as having been
generated only for the root template (person in this case)

I have narrowed down the cause to the apply-templates not getting called.
Here's my stylesheet. I had to rename the tags back to xsl in order to get
the tags to be recognised as xsl.

Regards,
Omprakash.V



<?xml version = '1.0' encoding = 'iso-8859-1'?>
<xsl:stylesheet version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template xmlns:x="http://www.w3.org" match="person">
      <HTML xmlns:x="http://www.w3.org/1999/XSL/Transform">
         <HEAD>
            <TITLE>XMS</TITLE>
            <script type="text/javascript" language="javascript">function
submitForm(pathStr, actionStr) { this.document.xmsForm.xpath.value =
pathStr; this.document.xmsForm.action.value = actionStr;
this.document.xmsForm.submit(); return true; }</script>
         </HEAD>
         <BODY>
     <some html here>
           <xsl:apply-templates xmlns:x="http://www.w3.org">
                                    <xsl:with-param name="" select
="/person"/>
                                 </xsl:apply-templates>
                   <some more html here>
          </BODY>
</HTML>
<!-- templates below -->
</xsl:template>

  <xsl:template xmlns:x="http://www.w3.org" match="name"/>
      </TR>
         </TD>
            <B>name</B>
       </TD>
   </TR>
        <xsl:template xmlns:x="http://www.w3.org" match="phone"/>

other templates....







This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in


Current Thread
Keywords