Subject: RE: What's Good XML Document for XSLT or XQL applications
From: "Harbarth, Juliane" <Juliane.Harbarth@xxxxxxxxxxxxxx>
Date: Thu, 2 Dec 1999 11:41:40 +0100
|
> ...
> Do you have any guidelines/recommendations/tips/pitfalls
> for XML document design for more effective XSLT/XQL usage?
> ...
The only recommendation I can think of w.r.t. XML to be
processed with XSL is to use container objects, i.e. do
not include sibling nodes of the same generic identifier.
Something like
<customer><name>Hugo</name><contact> ...
<customer><name>...
should rather be
<customers>
<customer><name>Hugo</name><contact> ...
<customer><name>...
...
</customers>
regards, Juliane.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|