On Tue, Jul 6, 2010 at 15:56, Rencana Tarigan
<[email protected]> wrote:
> how about search for 2 or more property ?
> and how use OR or AND condition at search query ?

Standard XPath:

//*...@author = '...' and @property = 'foo']

//*...@author = '...' or @property = 'foo']

//*[(@author = '...' and @property = 'foo') or (@some = 'thing')]

Regards,
Alex

-- 
Alexander Klimetschek
[email protected]

Reply via email to