xsl-list
[Top] [All Lists]

Re: tansforming an XML into another XML help needed !

2005-04-20 08:12:38


Hi,

       Please find below the stylesheet that does what you want.

Cheers,
Omprakash.V


<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                   version="1.0"
          >
<xsl:output method="xml" indent="yes" />

<xsl:template match="/record">

<xsl:copy>
<xsl:copy-of select="@*"/>

<xsl:apply-templates select="*">
<xsl:with-param name="lang" select="''"/>
</xsl:apply-templates>

</xsl:copy>

</xsl:template>

<xsl:template match="item">
<xsl:param name="lang"/>

<xsl:choose>
<xsl:when test="@name='PageName'">

 <item name="common">
        <value>
     <xsl:copy>
     <xsl:copy-of select="@*"/>
     </xsl:copy>
     <value>
     <xsl:value-of select="value"/>
     </value>

     </value>

    </item>
</xsl:when>
<xsl:when test="@name = 'Title_EN'">
 <item name="English">
<value>
          <item name="Title">
          <value>
          <xsl:value-of select="normalize-space(value)"/>
          </value>
       </item>
       <xsl:apply-templates select="following-sibling::*[(_at_)name
='Paragraph']" mode="ahead">
      <xsl:with-param name="lang" select="'EN'"/>
       </xsl:apply-templates>

     </value>
   </item>
</xsl:when>
<xsl:when test="@name = 'Title_FR'">
 <item name="French">
<value>
          <item name="Title">
       <value>
          <xsl:value-of select="normalize-space(value)"/>
       </value>
       </item>

       <xsl:apply-templates select="following-sibling::*[(_at_)name
='Paragraph']" mode="ahead">
       <xsl:with-param name="lang" select="'FR'"/>
       </xsl:apply-templates>

     </value>
   </item>
</xsl:when>

</xsl:choose>
</xsl:template>

<xsl:template match="item" mode="ahead">
<xsl:param name="lang"/>

<xsl:choose>
<xsl:when test="@name='Paragraph'">

<item name="Paragraph">
        <value>
  <xsl:apply-templates select="value/item[contains(@name, $lang)]" mode
="ahead">
      <xsl:with-param name="lang" select="$lang"/>
      </xsl:apply-templates>

      </value>
     </item>

</xsl:when>
<xsl:when test="@name= concat('SubParagraph_', $lang)">
  <item name="SubParagraph">
               <value>
          <xsl:value-of select="normalize-space(.)"/>
          </value>
   </item>
</xsl:when>
<xsl:otherwise>

</xsl:otherwise>
</xsl:choose>

</xsl:template>

</xsl:stylesheet>



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