- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #2721: backslash searching of XML fails to find namespace-prefixed attributes of sub elements if loaded from file or String
Sat, 2009-11-28, 10:43
sub elements if loaded from file or String
-------------------+--------------------------------------------------------
Reporter: George | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
find namespace-prefixed attributes of sub elements works if xml was
initilized directly, but not if loaded from string or file
val xml =
println("root:-"+(xml\"@{nsUri}at") +"-sub:-"+(xml\"sub"\"@{nsUri}at")
+"-")
output: root:-rootVal-sub:-subVal-
BUT:
val xml2= scala.xml.XML.loadString("""""")
println("root:-"+(xml2\"@{nsUri}at") +"-sub:-"+(xml2\"sub"\"@{nsUri}at")
+"-")
output: root:-rootVal-sub:--
Sat, 2009-11-28, 16:57
#2
Re: [scala-bts] #2721: backslash searching of XML fails to find
sub elements if loaded from file or String
-------------------+--------------------------------------------------------
Reporter: George | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Description changed by extempore:
Old description:
> find namespace-prefixed attributes of sub elements works if xml was
> initilized directly, but not if loaded from string or file
>
> val xml = ns:at="subVal"/>
>
> println("root:-"+(xml\"@{nsUri}at") +"-sub:-"+(xml\"sub"\"@{nsUri}at")
> +"-")
>
> output: root:-rootVal-sub:-subVal-
>
> BUT:
>
> val xml2= scala.xml.XML.loadString(""" ns:at="rootVal">""")
>
> println("root:-"+(xml2\"@{nsUri}at") +"-sub:-"+(xml2\"sub"\"@{nsUri}at")
> +"-")
>
> output: root:-rootVal-sub:--
New description:
find namespace-prefixed attributes of sub elements works if xml was
initilized directly, but not if loaded from string or file
{{{
val xml =
println("root:-"+(xml\"@{nsUri}at") +"-sub:-"+(xml\"sub"\"@{nsUri}at")
+"-")
}}}
output: root:-rootVal-sub:-subVal-
BUT:
{{{
val xml2= scala.xml.XML.loadString("""""")
println("root:-"+(xml2\"@{nsUri}at") +"-sub:-"+(xml2\"sub"\"@{nsUri}at")
+"-")
}}}
output: root:-rootVal-sub:--
--
sub elements if loaded from file or String
-------------------+--------------------------------------------------------
Reporter: George | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
Comment(by George):
in 2.7.7, it works, but not in 2.8 nightly