|
|
 |
| XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the XSLT section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

November 12th, 2006, 06:15 PM
|
|
Authorized User
|
|
Join Date: Nov 2006
Location: , , .
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Outputting Conditional Comments
I'm guessing despite my XSLT newb status that outputting something such as this is actually impossible because its not valid XML.
Code:
<![if !IE]><p>IE ignores this</p><![endif]>
Are there any workarounds?
At the moment I'm considering a PHP hack, as I'm running my XSLT via PHP anyway.
Code:
<ifNotIe><p>IE ignores this</p></ifNotIe>
Code:
$outputFromXslt = str_replace(
$outputFromXslt,
array('<ifNotIe>', '</ifNotIe>'),
array('<![if !IE]>', '<![endif]>')
);
|

November 12th, 2006, 08:16 PM
|
 |
Wrox Author
Points: 12,735, Level: 48 |
|
|
Join Date: Apr 2004
Location: Reading, Berks, United Kingdom.
Posts: 3,923
Thanks: 0
Thanked 82 Times in 80 Posts
|
|
>I'm guessing despite my XSLT newb status that outputting something such as this is actually impossible because its not valid XML.
Yes, that's more-or-less true. You can sometimes handle "almost-XML" output by using disable-output-escaping if your processor supports it, but producing real XML output and then post-processing it as you propose is probably a cleaner solution.
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
|

November 13th, 2006, 03:39 PM
|
|
Authorized User
|
|
Join Date: Nov 2006
Location: , , .
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
OK cool, thats what I did anyway.
There should really be a literal element for this sort of thing that lets you break free from the bounds.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |