default namespace scoping
Replies (1)
Please register to reply
Added by Anonymous over 19 years ago
Legacy ID: #3038729 Legacy Poster: marcvc (marcvc)
Michael, I noticed something weird with default namespace scoping. I understood you have fixed various namespace related issues recently, this one might as well be fixed. But to make sure... Consider the following query: declare default element namespace "ABC"; declare namespace p = "ABC"; <e xmlns=""> { <e><e/></e>/e } </e> , <e><e/></e>/e , <e><e/></e>/p:e Saxon returns: <e> <e/> </e> <e xmlns="ABC"/> I would have expected: <e> <e/> </e> <e xmlns="ABC"/> <e xmlns="ABC"/> Thanks, Marc
Legacy ID: #3040678 Legacy Poster: Michael Kay (mhkay)
Thanks, I've placed a patch at https://sourceforge.net/tracker/index.php?func=detail&aid=1160763&group_id=29872&atid=397617 Michael Kay
Please register to reply