Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Re: xsl-list Digest 1 Jun 2006 05:10:01 -0000 Issue 793

From: Chad Chelius <cchelius@--------------->
To:
Date: 6/1/2006 5:42:00 PM
David,

Below is the XSLT that I am currently trying to use. The portion  
above the first comment creates the structure that I want except that  
it doesn't include the <Root> element that the <Story> element is  
contained in. Then when I add the instructions below the first  
comment to try to rename the elements, I lose the structure and tags  
that I want. My XML file structure is as such:



<Root>
	<Story>
		<articleTitle>Content</articleTitle>
		<articleSubTitle>Content</articleSubTitle>
		<author><authorFname>content</authorFname></author>

This is my stylesheet:



<xsl:template match="Story">

       <xsl:copy>

       <BB><TG>

<xsl:apply-templates select="articleTitle|articleSubTitle"/>

       </TG></BB>

       <xsl:apply-templates select="*[not(self::articleTitle or  
self::articleSubTitle)]"/>

       </xsl:copy>

  </xsl:template>

<!--Above this line creates the directory structure that I need-->

    <xsl:template match="Root">

        <DG>

            <xsl:apply-templates select="@*|node()"/>

        </DG>

    </xsl:template>

    <xsl:template match="Story">

        <D>

            <xsl:apply-templates select="@*|node()"/>

        </D>

    </xsl:template>



<chad/>



Chad Chelius
AGI Training
cchelius@xxxxxxxxxxxxxxx


On Jun 1, 2006, at 12:05 PM, David Carlisle wrote:



I need all of the other elements to come over as
well and I need to rename those elements.
yes that's what the
 <xsl:apply-templates select="*[not(self::title or self::subtitle)]"/>
is doing, applying your templates to all the child elements.
Sounds like you don't want document to go to document though so change
 <xsl:copy>  to <D>

and when I said



you just need a standard identity template,
read that as "you just need the templates doing whatever  
transformation

they are doing"



David


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent