xsl-list
[Top] [All Lists]

Re: apply-templates not working

2005-01-19 03:40:49


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(_at_)lists(_dot_)mulberrytech(_dot_)com                                
   
                    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

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