[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Generating variable DOCTYPE


Subject: RE: [xsl] Generating variable DOCTYPE
From: "Yates, Danny (ANTS)" <danny.yates@xxxxxxxxxx>
Date: Thu, 16 Jan 2003 09:59:52 -0000

Ismaël,

This only works if your result is a serialised XML document. If,
instead of writing to a file or socket or whatever, you were to
send the output of the transform to a DOM tree, you'd end up with
a text node containing a bunch of characters which looks like a 
DOCTYPE definition. You would NOT end up with a proper DOCTYPE
node in the DOM tree.

Dan.

-- 
Danny Yates
Technical Architect
Abbey National Treasury Services
E-mail: Danny.Yates@xxxxxxxxxx
Phone: +44 20 7756 5012
Fax: +44 20 7612 4342


-----Original Message-----
From: Cams Ismael [mailto:Ismael.Cams@xxxxxxxxxxxxxxx]
Sent: 16 January 2003 09:19
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE: [xsl] Generating variable DOCTYPE


Hello Edward,

this works. Thank you very much !

Kind regards,
Ismaël

-----Original Message-----
From: Edward.Middleton@xxxxxxxxxxx [mailto:Edward.Middleton@xxxxxxxxxxx]
Sent: donderdag 16 januari 2003 10:07
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Generating variable DOCTYPE


Like this

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:param name="DTDLocation"/>
	<xsl:template match="/">
		<xsl:text disable-output-escaping="yes"><![CDATA[
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN" "]]></xsl:text>
		<xsl:value-of select="$DTDLocation"/>
		<xsl:text
disable-output-escaping="yes"><![CDATA[">]]></xsl:text>
	</xsl:template>
</xsl:stylesheet>

Edward Middleton


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


***************************************************************************
This communication (including any attachments) contains confidential information.  If you are not the intended recipient and you have received this communication in error, you should destroy it without copying, disclosing or otherwise using its contents.  Please notify the sender immediately of the error.

Internet communications are not necessarily secure and may be intercepted or changed after they are sent.  Abbey National Treasury Services plc does not accept liability for any loss you may suffer as a result of interception or any liability for such changes.  If you wish to confirm the origin or content of this communication, please contact the sender by using an alternative means of communication.

This communication does not create or modify any contract and, unless otherwise stated, is not intended to be contractually binding.

Abbey National Treasury Services plc. Registered Office:  Abbey National House, 2 Triton Square, Regents Place, London NW1 3AN.  Registered in England under Company Registration Number: 2338548.  Regulated by the Financial Services Authority (FSA).
***************************************************************************


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



Current Thread
Keywords