Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
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 Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 12th, 2006, 06:15 PM
Authorized User
 
Join Date: Nov 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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]>')
);
 
Old November 12th, 2006, 08:16 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

>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
 
Old November 13th, 2006, 03:39 PM
Authorized User
 
Join Date: Nov 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

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.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Not outputting a specific node zach_1988 XSLT 3 December 2nd, 2008 10:49 AM
outputting to multiple documents? wilgartw XSLT 3 November 7th, 2007 07:52 PM
Outputting Array manih C++ Programming 2 June 14th, 2006 08:24 PM
Outputting table permissions crisan Access 1 May 25th, 2005 06:39 AM
Outputting an end of line y_simonson XSLT 1 February 5th, 2004 05:57 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.