[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

create new elements as output

Subject: create new elements as output
From: Bruce Rosborough <BRosborough@xxxxxxx>
Date: Tue, 27 Mar 2001 12:38:00 -0600
bruce rosborough
Hi.  I appreciate any help that anyone would like to offer.  Thanks.
Problem: Using XSL in trying to transform XML file into another XML file
with differing element names and adding a group element.  Use of "name" for
creating elements is ignored, and don't understand why.

XML input (text lines of various types):

<?xml version='1.0' ?>
<?xml:stylesheet type="text/xsl" href="farerules.xsl"?>
<FareRules>
  <PenRules>this text is penalty rules text</PenRules>   
  <MinStay>this text is minimum stay text</MinStay>
  <PenRules>this text is penalty rules2 text</PenRules>
  <MaxStay>this text is maximum stay text</MaxStay>
</FareRules>

desired XML output: (text lines categorized, using new element names and
adding new element for group)

<Text>
  <PenaltyRules>this text is penalty rules text</PenaltyRules>
  <PenaltyRules>this text is penalty rules2 text</PenaltyRules>
  <MinimumStay>this text is minimum stay text</MinimumStay>
  <MaximumStay>this text is maximum stay text</MaximumStay> 
</Text>


XSL file (used unsuccessfully to try to transform this, aka 'faresrules.xsl'
)

<?xml version="1.0"?>
<!--<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">   
   <xsl:template match="/">
     <xsl:apply-templates/>
   </xsl:template>    
   <xsl:template match="FareRules">
   	<xsl:element name="Text"/>
        <xsl:apply-templates select="PenRules"/>         
        <xsl:apply-templates select="MinStay"/>
        <xsl:apply-templates select="MaxStay"/>      
   </xsl:template>
   <xsl:template match="PenRules">      
     <xsl:element name="PenaltyRules">      
       <xsl:value-of select="."/>
     </xsl:element>	           
   </xsl:template>   
   <xsl:template match="MinStay">
     <xsl:element name="MinimumStay">      
       <xsl:value-of select="."/>
     </xsl:element>	           
   </xsl:template> 
   <xsl:template match="MaxStay">
        <xsl:element name="MaximumStay">      
          <xsl:value-of select="."/>
        </xsl:element>	           
   </xsl:template>     
</xsl:stylesheet>


Thanks again.

Bruce
BRosborough@xxxxxxx
www.xol.com 



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.