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

Re: Rebuild XML file and merge


xml fields
Hi Taco,

You need to pull out your fields in the "field" template and use
for-each instead of just copy-of. Copy-of is a pretty dumb construct,
when what you need is some control over what you're copying.

Instead, where you've got ;

          <xsl:if test="name() = 'field'"> <testing /> </xsl:if>

replace it with an xsl:choose, xsl:when and xsl:otherwise (on the same
test as your original), and when you want to include or overwrite
attributes, add your selection ($fieldCollection/field[
current()/@identity = @identity ]/@*) to the <xsl:for-each
select="@*">. (Or, if you're a bit fancier, just create variables with
your selections and constructs, and copy over "anything" you've found
in a loop :)

Anyways, if you'd also give a sample of your input XML and your
expected result we could help a little better.


Alex



On 7/22/05, Taco Fleur <taco@s...> wrote:
>  
>  
> 
> Hi all.. 
> 
>   
> 
> I am trying to rebuild an XML file and merge it, I am having some difficulty
> getting the XSL right. 
> 
>   
> 
> I need to maintain the structure of the original XML file I feed to this
> transformation, but when I come to the element "field" I need to merge the
> elements from the $fieldCollection variable and have any attributes
> overwritten in the original file by $fieldcollection. Below is what I have
> been able to pull together, but obviously its not working. Any help is very
> much appreciated. 
> 
>   
> 
> <?xml version="1.0" encoding="ISO-8859-1"?>
>  <xsl:stylesheet
>       version="1.0"
>       xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
>  
>       <xsl:output
>            omit-xml-declaration="yes"
>            indent="yes"
>            media-type="string" />
>  
>       <xsl:variable
>            name="fieldCollection"
>           
> select="document('C:\Inetpub\wwwroot\development\shelco_company_registration_form\xml\field.xml')/root"/>
>  
>       <xsl:template match="/">
>            <xsl:apply-templates />
>       </xsl:template>
>  
>       <xsl:template match="*">
>            <xsl:if test="name() = 'field'">
>                 <testing />
>                      <xsl:apply-templates ***** call the field template!!
> ***** />
>            </xsl:if>
>            <xsl:element name="{name()}">
>                 <xsl:for-each select="@*">
>                      <xsl:attribute name="{name()}">
>                           <xsl:value-of select="."/>
>                      </xsl:attribute>
>                 </xsl:for-each>
>                 <xsl:apply-templates />
>            </xsl:element>
>       </xsl:template>
>  
>       <xsl:template match="field">
>                 <xsl:copy>
>                      <xsl:copy-of select="@*" />
>                      <xsl:copy-of select="$fieldCollection/field[
> current()/@identity = @identity ]/@*" />
>                      <xsl:element name="$fieldCollection/field[
> current()/@identity = @identity ]/*">
>                           <xsl:copy-of select="$fieldCollection/field[
> current()/@identity = @identity ]/*" />
>                      </xsl:element>
>                 </xsl:copy>
>       </xsl:template>
>  
>  </xsl:stylesheet> 
> 
>   
> 
> ________________________________ 
> 
> Taco Fleur - E-commerce Development Manager 
> 
> Shelco Searches & Services 
> 
> An Authorised ASIC Information Broker 
> 
> www.shelco.com.au 
> 
> Ph: + 61 7 3236 2605 
> 
>   


-- 
"Ultimately, all things are known because you want to believe you know."
                                                         - Frank Herbert
__ http://shelter.nu/ __________________________________________________

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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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-2007 All Rights Reserved.