|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: How would I do this?
Henry Fieglein wrote:
>
...
> What I would like to do is define a stub which then references the data:
> -- errorhead.xml --
> <?xml version="1.0" encoding="UTF-8">
> <!DOCTYPE ERRORS SYSTEM "errors.dtd">
> <ERRORS>
> <XLINK "errors.xml">
> </ERRORS>
>
> and then the data would grow in the errors.xml file.
>
I would "refer the honourable member to my previous answer" (to Ravi
Ramamirtham) but it doesn't seem to have got through yet.
I don't know how you feel about XSLT. I imagine it is more heavyweight
than xlink, but it is in a reasonably advanced state of implementation
and adoption. You could do what you want by processing errorhead.xml
with the following server-side XSLT, or as the XSLT rec becomes adopted
by MS (and possibly Mozilla), doing it client-side:
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- stick an xpath expression matching "ERRORS" here -->
<xsl:template match="//ERRORS">
<!-- specify your replacement file here -->
<xsl:copy-of select="document('errors.xml')" />
</xsl:template>
<!-- just copy everything else -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@x...&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








