Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I add stylesheet reference with XSLT?

I'm trying to strip down some large input XML with the first transform, and need the second transform to be applied on the client. Thus the first transform has to output the correct reference, e.g.:

<?xml-stylesheet type="text/xsl" href="client.xsl"?>

To recap it's XML->transform1(server)->XML->transform2(client)->HTML

The only way I can make it to work so far is by using xsl:text disable-output-escaping and CDATA:

<xsl:text disable-output-escaping="yes"><![CDATA[<?xml-stylesheet type="text/xsl" href="/efo/efo_class.xsl"?>]]>

Surely there must be a better method.

share|improve this question
Useful link regarding processing instructions xml.com/pub/a/2000/09/13/xslt/index.html – Tomasz Aug 19 '09 at 16:00

1 Answer

up vote 11 down vote accepted

Based on the XSLT spec, Creating Processing Instructions:

<xsl:processing-instruction name="xml-stylesheet">
  <xsl:text>type="text/xsl" href="client.xsl"</xsl:text>
</xsl:processing-instruction>

would create the processing instruction:

<?xml-stylesheet type="text/xsl" href="client.xsl"?>
share|improve this answer
1  
+1 - I would probably wrap the value in an <xsl:text> and add line breaks to increase readability. – Tomalak Aug 19 '09 at 15:42
Good idea, edited. You should be writing the examples in the spec :) – legoscia Aug 19 '09 at 15:49
Given the fact that most code samples in white papers, specs and knowledge bases and so on serve as blueprint "good code" examples, they tend to get much too little love. – Tomalak Aug 19 '09 at 15:56
It has to be type="text/xsl" but other than that it solved the problem. Thanks! – Tomasz Aug 19 '09 at 15:56
@Taveren: The code way copied off the spec verbatim. A little cognitive work must be left to the one who asked the question, don't you think? ;-) – Tomalak Aug 19 '09 at 15:58
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.