RE: path searching in a DOM tree

2002-11-01 Thread Gareth Reakes
> > Sounds like what you need is XPath, so what you need is Pathan (free), from > http://software.decisionsoft.com/. Unfortunately the latest stable version > (Pathan 1) only works with old style xerces-c (no pointers). If you're using > Xerces 2.1.0 (with pointers) (like me), you'll have to wait

RE: path searching in a DOM tree

2002-11-01 Thread Erik Rydgren
ssage- From: Jason Jesso [mailto:jjesso@;global-matrix.com] Sent: den 31 oktober 2002 20:37 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: path searching in a DOM tree I downloaded the source for Xalan-C and get the following errors: ./configure --prefix=$HOME creating cache ./config.

Re: path searching in a DOM tree

2002-10-31 Thread Jason Jesso
for AIX4.3.3. There is a bin and a lib directory but no include directory. Any ideas? Erik Rydgren wrote: Yes this is XPath functionality. Take a look at the Apache Xalan project. It is a C++ implementation of XPath.Regards/ Erik -Original Message- From: Jason Jesso [mailto:[EMAIL PROTECTED]

Re: path searching in a DOM tree

2002-10-31 Thread Jason Jesso
Jesso [mailto:[EMAIL PROTECTED]] Sent: den 31 oktober 2002 18:30 To: [EMAIL PROTECTED] Subject: path searching in a DOM tree Is there an easy way to search for a particular path in a DOM tree? Besides doing a course on graph theory. I want to search for something like:  /NODE1/NODE2/NODE3/NODE4

RE: path searching in a DOM tree

2002-10-31 Thread David J Craigon
Grovel. I appear to have sent this in HTML mail. Sorry. -Original Message- From: David J Craigon [mailto:david@;arabidopsis.info] Sent: 31 October 2002 18:03 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: path searching in a DOM tree Sounds like what you need is XPath, so what

RE: path searching in a DOM tree

2002-10-31 Thread David J Craigon
Sounds like what you need is XPath, so what you need is Pathan (free), from http://software.decisionsoft.com/. Unfortunately the latest stable version (Pathan 1) only works with old style xerces-c (no pointers). If you're using Xerces 2.1.0 (with pointers) (like me), you'll have to wait unti

RE: path searching in a DOM tree

2002-10-31 Thread Erik Rydgren
Yes this is XPath functionality. Take a look at the Apache Xalan project. It is a C++ implementation of XPath.   Regards / Erik -Original Message-From: Jason Jesso [mailto:[EMAIL PROTECTED]]Sent: den 31 oktober 2002 18:30To: [EMAIL PROTECTED]Subject: path searching in a DO

path searching in a DOM tree

2002-10-31 Thread Jason Jesso
Is there an easy way to search for a particular path in a DOM tree? Besides doing a course on graph theory. I want to search for something like:  /NODE1/NODE2/NODE3/NODE4  where the name of NODE4 is XXX. This path has several instances in the tree, but I want to find a particular one. --  --