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: Avoiding disable-output-escaping



 I try to generate JSP from XML. In these JSPīs, I need output tags like this
 one:

 <sw:hpath startscan="0" endscan="100" startpath="2" />

 How can I get such an expression without disable-output-escaping?

In XSLT you don't output tags, but rather a tree of element and
attribute nodes. If you put that line, exactly as is in a template 
(after having declared the sw: namespace prefix in your stylesheet)
then a suitable set of element and attribute nodes will be placed in the
result tree. When that tree is linearised that expression (or an
equivalent one, for example using ' instead of ") will be created.

i>  an external XML file that looks like this:

> <env-entry-value><![CDATA[
                   ^^^^^^^^
your life would be a lot easier without that CDATA section (which tells
the system the content is not XML, when clearly it is
intended to be XML)


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp

 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]