[
Lists Home |
Date Index |
Thread Index
]
- To: Michael Kay <mike@saxonica.com>
- Subject: RE: [xml-dev] Semantic equivalence of xml documents
- From: Yves Langisch <lists@langisch.ch>
- Date: Mon, 26 Sep 2005 14:38:40 +0200
- Cc: xml-dev@lists.xml.org
- In-reply-to: <20050926122009.CBF04DFEA88@all01.mx.genotec.ch>
- References: <20050926122009.CBF04DFEA88@all01.mx.genotec.ch>
okay, to talk about semantic equivalence in general is delicate. In our
case we have the assumption that if repeteable elements occurs, the
order is not relevant. We just want to check the presence of data on the
same level. At the moment we have a stylesheet which orders repeatable
elements (can be of a complex type) by, for example, the content of the
first sub-element. When we do this with the two input documents we can
compare the two output documents by a string comparison (apart from
possible whitespaces).
Maybe there is a better solution?
On Mon, 2005-09-26 at 13:18 +0100, Michael Kay wrote:
> >
> > I mean for example that
> >
> > <company>
> > <person>Jim</person>
> > <person>John</person>
> > </company>
> >
> > is equivalent to
> >
> > <company>
> > <person>John</person>
> > <person>Jim</person>
> > </company>
> >
>
> So what about:
>
> <route>
> <step>first right</step>
> <step>second left</step>
> </route>
>
> is probably not equivalent to
>
> <route>
> <step>second left</step>
> <step>first right</step>
> </route>
>
> Michael Kay
> http://www.saxonica.com/
>
>
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://www.oasis-open.org/mlmanage/index.php>
>
|