DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23089>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23089 <xsl:fallback> doesn't fallback for xsl:import-table (an XSLT 1.1 element) ------- Additional Comments From [EMAIL PROTECTED] 2003-09-11 19:47 ------- If this helps in the bugs analysis, this stylesheet does take the fallback: ------------------------------------------------------------------------- <?xml version="1.0"?> <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns7="http://www.w3.org/1999/XSL/Transform777777777777" extension-element-prefixes="ns7" > <xsl:template match="/"> <HTML> <HEAD><TITLE>Output Table</TITLE></HEAD> <BODY> <ns7:import-table HREF="blah.asp" name="sample"> <xsl:fallback> <p> This version of the parser does not support the creation of a table with the 'xsl:import-table' element! </p> </xsl:fallback> </ns7:import-table> </BODY> </HTML> </xsl:template> ---------------------------------------------------------- The difference is the "ns7" namespace prefix is added, it is an extension element prefix and the we have ns7:import-table rather than xsl:import-table. I hope the difference in behavior between these two stylesheets helps shed light on the bug. - Brian Minchau
