[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] question about javascript and XSL


Subject: RE: [xsl] question about javascript and XSL
From: "Nik Krimm" <Nik.Krimm@xxxxxxxxxxxxxxx>
Date: Tue, 7 May 2002 14:51:38 -0500

<xsl:stylesheet version="1.0"
xmlns:xsl="xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
----------^^^^^^^^^^^

In the test.xsl file you have [xmlns:xsl="] written twice - this is causing an error.
Try:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

This works for me, using IE 6.0 to parse it

-----Original Message-----
From: Simon Choy [mailto:Simon.Choy@xxxxxxxxxxxxxxxxxxxx]
Sent: Tuesday, May 07, 2002 2:39 PM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE: [xsl] question about javascript and XSL


thank you all

I must be doing something retarded then

this is the XSL file "test.xsl"


<xsl:stylesheet version="1.0"
xmlns:xsl="xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
	<html> 
	<body>
			<script language="Javascript">
			<![CDATA[
				if ( 1 < 1 )
				   {
					document.write("passed")
				   }
				else
				   {
					document.write("failed")
				   }
			]]>
			</script>
	</body> 
	</html> 
	...
	..
	....
	...
	
</xsl:template> 
</xsl:stylesheet>



AND this is the XML file member.xml

<?xml version="1.0" encoding="ISO-8859-1" ?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>

<Member>
 <blah>
 </blah>
</Member>


when i want to load this file
I just load up my browser and type in
http://blahblah/member.xml

i am probably doing something extrememly retarded, but it still does not
work

thank you all 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread
Keywords