xsl-list
[Top] [All Lists]

RE: [xsl] Why no namespace node KindTest?

2006-08-27 00:12:23
   if ( $arg instance of namespace() ) ...

   if ( $item instance of node()
          and not($item instance of attribute()
                    or $item instance of comment()
                    or $item instance of document-node()
                    or $item instance of element()
                    or $item instance of processing-instruction()
                    or $item instance of text() ) ) ...


Hi Florent,

A more compact expression giving the same result is:


    $item intersect $item/../namespace::*


Only works for a namespace node that has a parent.

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--