OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: When to use XML or HTML extensions?



On Fri, 13 Jul 2001, Hewko, Doug wrote:
> Thanks for the reply. If you use a XML file, then aren't you limiting
> yourself to just one style sheet? 

Not really, just use different stylesheets in skeletons and
include the data at the right point. Not very elegant but if
all you need is different URLs for the different views of
the phone list, this is one way to do it without duplicating
the file pre-sorted.

[phones.dat]
<person>...</person>
<person>...</person>
<person>...</person>
...etc...

[location.xml]
<?xml version="1.0"?>
<!DOCTYPE phonelist [
<!ENTITY phones SYSTEM "phones.dat">
]>
<?xml-stylesheet href="location.xsl" type="text/xsl"?>
<phonelist>
&phones;
</phonelist>

[alpha.xml]
<?xml version="1.0"?>
<!DOCTYPE phonelist [
<!ENTITY phones SYSTEM "phones.dat">
]>
<?xml-stylesheet href="alpha.xsl" type="text/xsl"?>
<phonelist>
&phones;
</phonelist>

///Peter