M
Mikko Nummelin
As the XSLT namespace is declared to be used in XSL documents like this:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
, isn't this a risky practice as it refers to an external web site and if
that web site is down at a particular time or is moved to another place,
then even large web sites referring to it may fall down with it. So, is it
possible to obtain a local copy of such a namespace and refer to it in
further applications as
<xsl:stylesheet version="1.0"
xmlns:xsl="http://localhost/XSL/Transform">
or in a similar way? Which files are important and where to obtain them?
Mikko Nummelin
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
, isn't this a risky practice as it refers to an external web site and if
that web site is down at a particular time or is moved to another place,
then even large web sites referring to it may fall down with it. So, is it
possible to obtain a local copy of such a namespace and refer to it in
further applications as
<xsl:stylesheet version="1.0"
xmlns:xsl="http://localhost/XSL/Transform">
or in a similar way? Which files are important and where to obtain them?
Mikko Nummelin