This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: two DOMs, one stylesheet


Do you really need a DOM for bar.xml or can you let xslt handle the details,
e.g.:

<xsl:template match="HIPPO">
<HIPPO><xsl:attribute name="yada"> <xsl:value-of
select="document('bar.xml')/ZEBRA" /> </xsl:attribute> </HIPPO>
</xsl:template>

> Is it possible to process two files, foo.xml and bar.xml, using blort.xsl,
> and have blort.xsl build and use a DOM for both foo.xml and bar.xml.
>
> For example, document foo.xml is the main document to be processed, but
> for the template for element HIPPO, we will output the HIPPO element
> unchanged, except that we want to add an attribute to it. That attribute
> should come from element ZEBRA inside the other document, bar.xml.
>
> Does that make sense? How would one accomplish this?
>
Jonathan Borden



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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]