xsl-list
[Top] [All Lists]

Re: [xsl] ALWAYS assignment of XSL stylesheets to XML file before aplying them ?

2007-01-31 08:21:06

Instead most of the tutorials link the XSLT stylesheet at first into the XML 
document:

<?xml version="1.0" encoding="....">
<?xml-stylesheet type="text/xsl" href="D:\test\myxslt.xsl"?>

The tutorials you are looking at then are in error as the href
"attribute" of xml-stylesheet is supposed to be a URI and
"D:\test\myxslt.xsl" is a URI of the unregisted URI scheme D, which
probably isn't what was intended.


The XML-stylesheet Pi is mainly (only?) useful in the context of a web
browser where it is a convenient way of connecting an xml file with its
desired styling. Some command line or IDE processors have switches to
follow this link as well (eg saxon does if you use the -a flag instead
of supplying a stylesheet on the command line)  but in most of these
environments it's simpler and more flexible to keep the linking between
xml file and stylesheet out of the document.

David

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>