This page is no longer maintained — Please continue to the home page at www.scala-lang.org

[scala-bts] #2721: backslash searching of XML fails to find namespace-prefixed attributes of sub elements if loaded from file or String

2 replies
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.

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:--

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
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
Keywords: |
-------------------+--------------------------------------------------------

Comment(by George):

in 2.7.7, it works, but not in 2.8 nightly

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
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:--

--

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland