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: Combining Multiple XML Documents


you want to use ENTITYs:

<?xml version="1.0"?>
<!DOCTYPE apage [
 <!ENTITY banner SYSTEM "sections/banner/b_xx_0001.xml">
 <!ENTITY content SYSTEM "sections/content/c_xx_0001.xml">
 <!ENTITY sidenav SYSTEM "sections/sidenav/sn_xx_0001.xml">
]>
<?xml-stylesheet href="shell.xsl" type="text/xsl"?>
<?cocoon-process type="xslt"?>
<apage>
&banner;
&sidenav;
&content;
</apage>

----- Original Message -----
From: Scott Okupski <Scott.Okupski@WallStreetSystems.com>
To: <XSL-List@mulberrytech.com>
Sent: Tuesday, June 27, 2000 1:20 PM
Subject: Combining Multiple XML Documents


> Can anyone suggest strategies for incrementally building an XML document
> using multiple XML documents as input? I'm happy to hear any ideas using
XSL
> or DOM API. I'm working with Apache Xerces and Xalan java products. Much
> Thanks.
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 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]