i have a problem filtering specific nodes of a jackrabbit jcr in magnolia.

when i submit following query : //element(*, standort)//*

i get:

33 nodes returned in 18ms
/standort/Standorte/MetaData
/standort/Standorte/standort-de
/standort/Standorte/standort-de/MetaData
/standort/Standorte/standort-de/Teststandort
/standort/Standorte/standort-de/Teststandort/MetaData
/standort/Standorte/standort-de/Hauptwerk-Köln
/standort/Standorte/standort-de/Hauptwerk-Köln/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Berlin
/standort/Standorte/standort-de/Geschäftsstelle-Berlin/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Frankfurt
/standort/Standorte/standort-de/Geschäftsstelle-Frankfurt/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Hamburg
/standort/Standorte/standort-de/Geschäftsstelle-Hamburg/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Hannover
/standort/Standorte/standort-de/Geschäftsstelle-Hannover/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Köln
/standort/Standorte/standort-de/Geschäftsstelle-Köln/MetaData
/standort/Standorte/standort-de/Werk-Leipzig
/standort/Standorte/standort-de/Werk-Leipzig/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-München
/standort/Standorte/standort-de/Geschäftsstelle-München/MetaData
/standort/Standorte/standort-de/Geschäftsstelle-Stuttgart
/standort/Standorte/standort-de/Geschäftsstelle-Stuttgart/MetaData
/standort/Standorte/standort-de/Gelsdorf-(Mischwerk)
/standort/Standorte/standort-de/Gelsdorf-(Mischwerk)/MetaData
/standort/Standorte/standort-de/Gelsdorf-(Handläufe)
/standort/Standorte/standort-de/Gelsdorf-(Handläufe)/MetaData
/standort/Standorte/standort-de/KB-Roller-Tech-Kopierwalzen-GmbH
/standort/Standorte/standort-de/KB-Roller-Tech-Kopierwalzen-GmbH/MetaData
/standort/Standorte/standort-en
/standort/Standorte/standort-en/MetaData
/standort/Standorte/standort-en/Böttcher-UK-Ltd-
/standort/Standorte/standort-en/Böttcher-UK-Ltd-/MetaData

But i want only the nodes:

/standort/Standorte/standort-de/Teststandort
/standort/Standorte/standort-de/Hauptwerk-Köln
/standort/Standorte/standort-de/Geschäftsstelle-Berlin
/standort/Standorte/standort-de/Geschäftsstelle-Frankfurt
/standort/Standorte/standort-de/Geschäftsstelle-Hamburg
/standort/Standorte/standort-de/Geschäftsstelle-Hannover
/standort/Standorte/standort-de/Geschäftsstelle-Köln
/standort/Standorte/standort-de/Werk-Leipzig
/standort/Standorte/standort-de/Geschäftsstelle-München
/standort/Standorte/standort-de/Geschäftsstelle-Stuttgart
/standort/Standorte/standort-de/Gelsdorf-(Mischwerk)
/standort/Standorte/standort-de/Gelsdorf-(Handläufe)
/standort/Standorte/standort-de/KB-Roller-Tech-Kopierwalzen-GmbH
/standort/Standorte/standort-en/Böttcher-UK-Ltd-

thus without the MetaData nodes and the parent-nodes. I need everything beneath Standorte. The children of Standorte can be type of standort-de or standort-en. I hope i could make my problem clearer. I've shortened my output in the last version of my question. So far i didn't find any xpath-expression which could help me out. But this is due to my lack of xpath-knowledge.

Thanks in advance!

link|improve this question
Strange result! It should also select /standort/Standorte. If you are working with a PSVI, why don't you match Teststandort type annotation? – user357812 Dec 15 '10 at 13:43
@Alejandro: hm, i dont know. maybe xpath it works different when selecting nodes in jackrabbit. – meltac Dec 15 '10 at 15:05
Then Standorte element has the standort type annotation and the result informs the full absolute path of selected nodes. – user357812 Dec 15 '10 at 15:20
Good question, +1. See my answer for the solution -- a simple adjustment is all that is needed. :) – Dimitre Novatchev Dec 15 '10 at 16:29
feedback

2 Answers

up vote 2 down vote accepted

The expression

//element(*, standort)//*

selects any element (final *) that is a descendant (second //) of an element anywhere in the document (//element()) that has been successfully validated against a schema-defined type definition for standort. (Thanks to @Alej for helping correct this statement and the following.)

So basically you are selecting every element that is a descendant of a validated standort element, assuming you have a schema successfully attached..

Try the XPath expression (updated):

/standort/Standorte/(standort-de | standort-en)/*
link|improve this answer
@LarsH: This is XPath 2.0 and the second argument for element() node test is matching the type annotation. – user357812 Dec 15 '10 at 13:38
i hope, that my revised question is better to understand. Naturally i dont meant the '/' node but the parents of the leaves – meltac Dec 15 '10 at 15:00
@meltac, did you try the XPath expression /standort/Standorte/(standort-de | standort-en)/*, and what was the result? – LarsH Dec 15 '10 at 15:17
@Alej: thanks, I was lazy and didn't check the definitions of the args to element()... I assumed *, standort was a sequence, forgetting that a sequence could only be expressed as an argument by using extra parentheses. I will revise my answer. – LarsH Dec 15 '10 at 15:20
@LarsH: thanks for ur hint. But unfortunately its not working for me. If i enter ur query, then i get an empty resultset back. – meltac Dec 15 '10 at 17:40
show 9 more comments
feedback

Use:

(//element(*, standort)//*)[not(ancestor-or-self::MetaData)]
link|improve this answer
@Dimitre: Thanks, this query sounds also very self-explaining, but xpath returns following error: null for statement: for $v in (//element(, standort)//)[not(ancestor-or-self::MetaData)] return $v: null – meltac Dec 15 '10 at 17:42
@meltac: There is no $v in my answer. I only guarantee that my answer is correct -- anything beyond it may or may not be correct. Also, it seems that you have a typo in your expression -- an * is missing in more than one places. If you don't get any node selected, but you really get the selected nodes reported in your question, then your XPath engine is broken. I have done two things: 1. Taken your expression and surrounded it by brackets. This should select the same nodes. 2. Appended a predicate that filters any node that is MetaData or has an ancestor Metadata. This should work. – Dimitre Novatchev Dec 15 '10 at 17:54
@Dimitre - I think the * characters missing in his comment got parsed as italics markup. – LarsH Dec 15 '10 at 21:02
@LarsH: All the more then -- his Xpath engine must be quite buggy. – Dimitre Novatchev Dec 15 '10 at 21:06
@meltac, you should put backquotes around your code in comments to stop that from happening. +1 to @Dimitre for good answer. – LarsH Dec 15 '10 at 21:12
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.