This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Is XML-SPY useful for xslt?


XML Spy is just an editor. It will use whatever XSLT processor you configure
it to use. It looks as if you have configured it to use Microsoft's WD-xsl
(working draft XSL), which doesn't support the XSLT language at all, but an
obsolete draft of it.

Mike Kay

> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Louise Lane
> Sent: 17 July 2001 09:22
> To: xsl-list@lists.mulberrytech.com
> Subject: [xsl] Is XML-SPY useful for xslt?
>
>
> Hello
>
> I have been trying to get xsl to work with xml spy 3.5 with
> very limited success.
>
> I have not been able to get dpawson's select unique items to
> work at all (ie barb, bark, bard)
>
> I have been able to select elements to put in a table but the
> rest of the elements (which i do not want) appear in a string above it
>
>
> <?xml version="1.0" encoding="UTF-8"?>
> <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> xmlns:xsi ="http://www.w3.org/2000/10/XMLSchema-instance";
> xmlns:w="http://www.weather.org";>
>
> <xsl:hi_template match="/">
> 	<html>
> 		<head>	<title>Weather Eg 1</title></head>
> 			<body>
> 				<center>
> 				<b>Weather Data for Vancouver</b>
> 						<table border="1" >
> 						<thead align="center">
>
> <td><strong>City</strong></td>
>
> <td><strong>hi_temp</strong></td>
> 				</thead>
> 				<xsl:apply-hi_templates
> select="//w:weather"/>
> 				</table>
> 				</center>
> 			</body>
> 	</html>
>
> </xsl:hi_template>
> <xsl:hi_template match="w:weather[w:city = 'Vancouver']">
> 	<tr><td><xsl:value-of select="w:city"/></td>
> 	<td><xsl:value-of select="w:hi_temp"/></td></tr>
> 		<br></br>
> </xsl:hi_template>
>
>
> </xsl:stylesheet>
>
>
> on this xml document
>
> <?xml version="1.0" encoding="UTF-8"?>
> <!-- edited with XML Spy v3.5 (http://www.xmlspy.com) by
> Louise Lane (personal) -->
> <?xml-stylesheet type="text/xsl"
> href="C:\WINDOWS\Desktop\weatherXSLexamples\weather_filter1.xsl"?>
> <weather_report xmlns="http://www.weather.org";
> xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance";
> xsi:schemaLocation="http://www.weather.org
> C:\WINDOWS\Desktop\weatherXSLexamples\weather.xsd">
> 	<weather>
> 		<city>Barrie</city>
> 		<hi_temp>25.7</hi_temp>
> 		<low_temp>24.0</low_temp>
> 		<day>Sunday</day>
> 	</weather>
> 	<weather>
> 		<city>Edmonton</city>
> 		<hi_temp>31.5</hi_temp>
> 		<low_temp>13.9</low_temp>
> 		<day>Sunday</day>
> 	</weather>
> 	<weather>
> 		<city>Vancouver</city>
> 		<hi_temp>15.6</hi_temp>
> 		<low_temp>10.1</low_temp>
> 		<day>Sunday</day>
> 	</weather>
> </weather_report>
>
>  puts vancouver and 15.6 in the table but the rest of the
> elements show above in a string.
>
>
> Also, I have not been able to get xsl:sort to work At all
>
> So, is my code wrong? is XML Spy not good for xslt? is there
> a better gui based product to use? I really don't want to
> have to work in NotePad
>
> Thanks in advance,
>
> Louise Lane
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]