- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: XPath-like \, node sequences, and attributes
Mon, 2011-10-03, 06:43
I could be way off here, but since \ only looks for immediate children and <unnamed_root><a b="c"/><a b="d"/></unnamed_root> has no immediate children (attribute named "b") you get an empty nodeseq. That's based on my assumption that running xpath-like queries on a nodeseq implicitly views the nodeseq as wrapped in an unnamed root element.
That jives a little better with other xml handling libraries than the possible alternative of merging all children of top-level elements into the same pool for the query.
Thanks, Chris
On Oct 2, 2011 12:08 AM, "Cay Horstmann" <cay.horstmann@gmail.com> wrote:> I don't understand how \ works with node sequences and attributes. Consider
> first
>
> <a><b/></a><a><b/></a> \ "b" // NodeSeq(<b></b>, <b></b>)
>
> Ok, \ works with node sequences.
>
> And
>
> (<a b="c"/>) \ "@b" // c
>
> Ok, \ works with attributes
>
> But now consider
>
> (<a b="c"/><a b="d"/>) \ "@b" // NodeSeq()
>
> Huh? It doesn't work with attributes and node sequences?
>
> FWIW, \\ works ok:
>
> (<a b="c"/><a b="d"/>) \\ "@b" // NodeSeq(c, d)
>
> Is this a bug or a feature?
>
> Thanks,
>
> Cay
Mon, 2011-10-03, 14:57
#2
Re: XPath-like \, node sequences, and attributes
In this particular case, I believe the nodeseq itself is the unnamed
root and it's contents are the children. At least that's the only
explanation that makes sense for this behavior, and it conforms to
xml's requirement of a root element.
Thanks, Chris
On Mon, Oct 3, 2011 at 9:41 AM, Cay Horstmann wrote:
> I don't think there is an "unnamed root". \ and \\ are defined on NodeSeq.
>
> On Sun, Oct 2, 2011 at 10:43 PM, Chris Reeves wrote:
>>
>> I could be way off here, but since \ only looks for immediate children and
>> has no immediate children
>> (attribute named "b") you get an empty nodeseq. That's based on my
>> assumption that running xpath-like queries on a nodeseq implicitly views the
>> nodeseq as wrapped in an unnamed root element.
>>
>> That jives a little better with other xml handling libraries than the
>> possible alternative of merging all children of top-level elements into the
>> same pool for the query.
>>
>> Thanks, Chris
>>
>> On Oct 2, 2011 12:08 AM, "Cay Horstmann" wrote:
>> > I don't understand how \ works with node sequences and attributes.
>> > Consider
>> > first
>> >
>> > \ "b" // NodeSeq(, )
>> >
>> > Ok, \ works with node sequences.
>> >
>> > And
>> >
>> > () \ "@b" // c
>> >
>> > Ok, \ works with attributes
>> >
>> > But now consider
>> >
>> > () \ "@b" // NodeSeq()
>> >
>> > Huh? It doesn't work with attributes and node sequences?
>> >
>> > FWIW, \\ works ok:
>> >
>> > () \\ "@b" // NodeSeq(c, d)
>> >
>> > Is this a bug or a feature?
>> >
>> > Thanks,
>> >
>> > Cay
>
>
Tue, 2011-10-04, 18:17
#3
Re: XPath-like \, node sequences, and attributes
On Mon, Oct 3, 2011 at 6:50 AM, Chris Reeves <evschris@gmail.com> wrote:
Yep, without a root element, any notion of correctness is out. Try wrapping it in <xml:group>_</xml:group> though, that's what Scala uses in this kind of situation.
-0xe1a
In this particular case, I believe the nodeseq itself is the unnamed
root and it's contents are the children. At least that's the only
explanation that makes sense for this behavior, and it conforms to
xml's requirement of a root element.
Yep, without a root element, any notion of correctness is out. Try wrapping it in <xml:group>_</xml:group> though, that's what Scala uses in this kind of situation.
-0xe1a
On Sun, Oct 2, 2011 at 10:43 PM, Chris Reeves <evschris@gmail.com> wrote: