Re: [xml-dev] The order of attributes
by Peter Hunsberger other posts by this author
Jan 6 2006 7:15AM messages near this date
RE: [xml-dev] The order of attributes
|
[xml-dev] OT: Corporate Blog Policies
& XSLT On 1/6/06, Xasima Xirohata <xasima@[...].com> wrote:
> Hi, everybody.
>
> I wonder why the order of attributes doesn't matter in the XML 1.0. spec.
No guess on that at the moment, but one quick comment.
<snip/>
>
> For example, we have the xml document that express what font should be used
> for the text. If some font isn't found at the target system, the next font
> in the sequence should be used.
>
> Xml:
> <text>
> <font_sequence>
> <font>Antique Olive</font>
> <font>Franklin Gothic Book</font>
> <font>Arial</font>
> </font_sequence >
> <content>
> Once upon a time ...
> </content>
> </text>
>
>
> It is endurable to rewrite it like this
> <text font1="Antique Olive"
> font2="Franklin Gothic Book"
> font3="Arial">
> Once upon a time ...
> </text>
>
Given that "font1", "font2" etc aren't necessarily meaningful it might
be just as simple to handle:
<text fonts="Antique Olive, Franklin Gothic Book, Arial"/>
which gives you order at the expense of some string parsing (which is
easy enough in most langauges)...
--
Peter Hunsberger
-----------------------------------------------------------------
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>
Thread:
Xasima Xirohata
Mitch Amiano
Nathan Young -X
Bob DuCharme
Ian Graham
Claude L Bullard
Jim Melton
Bob DuCharme
Ian Graham
Peter Hunsberger
|