xsl-list
[Top] [All Lists]

RE: Generating variable DOCTYPE

2003-01-16 02:59:52
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(_dot_)Yates(_at_)ants(_dot_)co(_dot_)uk
Phone: +44 20 7756 5012
Fax: +44 20 7612 4342


-----Original Message-----
From: Cams Ismael [mailto:Ismael(_dot_)Cams(_at_)siemens(_dot_)atea(_dot_)be]
Sent: 16 January 2003 09:19
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: RE: [xsl] Generating variable DOCTYPE


Hello Edward,

this works. Thank you very much !

Kind regards,
Ismaël

-----Original Message-----
From: Edward(_dot_)Middleton(_at_)nikonoa(_dot_)net 
[mailto:Edward(_dot_)Middleton(_at_)nikonoa(_dot_)net]
Sent: donderdag 16 januari 2003 10:07
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
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