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: Transforming XHTML possible?



I'll assume you use the "XSLT Test Tool" from http://www.netcrucible.com/.

For some reason this does not work from ASP and works from VB.  I know this
seems really odd but I've been over it a hundred times.  I feel really thick
headed right now.  I have MSXML3 SP1 installed.

If I remove the DTD and give the namespace a prefix :
"xmlns:xhtml="http://www.w3.org/1999/xhtml";
it works fine.

Dwight Funk
POWERWAY, Inc.

-----Original Message-----
From: Chris Bayes [mailto:Chris@Bayes.co.uk]
Sent: Friday, April 13, 2001 11:59 AM
To: xsl-list@lists.mulberrytech.com
Subject: RE: [xsl] Transforming XHTML possible?


Dwight,
Seems to work fine here and produces

<?xml version="1.0" encoding="UTF-8" ?>
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml";>
<head>
<title>Testing Title</title>
</head>
<body>
<p>Test</p>
</body>
</html>

Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml


>-----Original Message-----
>From: owner-xsl-list@lists.mulberrytech.com
>[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of dwight funk
>Sent: 13 April 2001 16:21
>To: xsl-list@lists.mulberrytech.com
>Subject: [xsl] Transforming XHTML possible?
>
>
>
>Is it possible to transform XHTML ?
>
>I have created what I think is a most basic example. The XHTML is by the
>standard. The style sheet should merely "copy" the XHTML from input to
>output. It looks to me like the xPath queries are not working. I'm using
>MSXML3. What am I missing ?  Why doesn't this simple example work ?  Are my
>copy templates missing something ?
>
>Dwight Funk
>POWERWAY, Inc.
>
>
>---------------TEST.XML---------------------------------------------------
><?xml version="1.0" encoding="UTF-8"?>
>
><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
><html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
>
>	<head>
>		<title>Testing Title</title>
>	</head>
>
>	<body>
>		<p>Test</p>
>	</body>
>
></html>
>---------------TEST.XML---------------------------------------------------
>
>---------------TEST.XSL---------------------------------------------------
><?xml version="1.0" encoding="UTF-8"?>
>
><xsl:stylesheet	xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
>version="1.0">
>
>	<xsl:output method="xml" encoding="UTF-8"/>
>
>	<!-- Match the root node -->
>	<xsl:template match="/">
>		<xsl:apply-templates select="*"/>
>	</xsl:template>
>
>	<!-- Handle any node not yet matched -->
>	<xsl:template match="*|@*|text()|comment()">
>		<xsl:copy>
>			<xsl:apply-templates
>select="*|@*|text()|comment()"/>
>		</xsl:copy>
>	</xsl:template>
>
></xsl:stylesheet>
>---------------TEST.XSL---------------------------------------------------
>MESSAGE IS INTENDED ONLY FOR THE USE OF THE INDIVIDUAL OR ENTITY
>TO WHICH IT
>IS ADDRESSED AND MAY CONTAIN INFORMATION THAT IS PRIVILEGED, CONFIDENTIAL
>AND EXEMPT FROM DISCLOSURE. If the reader of this message is not the
>recipient or an employee or agent responsible  for delivering the
>message to
>the intended recipient, you are hereby notified that any dissemination,
>distribution, or copying of this communication is strictly prohibited.  If
>you have received this communication in error, please notify the sender
>immediately by E-Mail and return the original message to the sender.  Thank
>you.
>
> XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
MESSAGE IS INTENDED ONLY FOR THE USE OF THE INDIVIDUAL OR ENTITY TO WHICH IT
IS ADDRESSED AND MAY CONTAIN INFORMATION THAT IS PRIVILEGED, CONFIDENTIAL
AND EXEMPT FROM DISCLOSURE. If the reader of this message is not the
recipient or an employee or agent responsible  for delivering the message to
the intended recipient, you are hereby notified that any dissemination,
distribution, or copying of this communication is strictly prohibited.  If
you have received this communication in error, please notify the sender
immediately by E-Mail and return the original message to the sender.  Thank
you.

 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]