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

retaining entity declarations while converting from on

Subject: retaining entity declarations while converting from one xml format to another
From: a kusa <akusa8@xxxxxxxxx>
Date: Tue, 15 Dec 2009 17:08:52 -0600
 retaining entity declarations while converting from on
Hi:

I have an input XML file with DOCTYPE entity declarations. I am
preprocessing this data using XSLT and converting it back to the same
xml.

So my input looks like this:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE example[
<!ENTITY spoon.jpg SYSTEM "spoon.jpg">
]>

<houseware>

......

</houseware>

My XSLT looks like this:

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions">
	<xsl:output method="xml"  encoding="utf-8" indent="yes"/>

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


My output looks like this:

<?xml version="1.0" encoding="utf-8"?>
<houseware>

......

</houseware>

How do I retain those doctype entity declarations in my xslt?

Thanks in advance for all your help.

Current Thread

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