RE: [Visual-XSLT-discuss] How do I get the XLST debugger to debug my XSLT file
by Thomas Coyle other posts by this author
Apr 15 2002 5:19PM messages near this date
view in the new Beta List Site
Re: [Visual-XSLT-discuss] How do I get the XLST debugger to debug my XSLT file
|
Re: [Visual-XSLT-discuss] How do I get the XLST debugger to debug my XSLT file
Thank you for the response Eric. I already tried that. I have a breakpoint
set on then first template match line and it still does the same thing.
--- myT.xslt
snippet --------------------------------------------------------------------
---------------
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="styles.xslt"/>
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:param name="CurrentDate"/>
<xsl:param name="RegistrationName"/>
<xsl:param name="EnglishMetricUnits"> E</xsl:param>
<xsl:param name="BearingLifeVisible"/>
<xsl:param name="Background"> ScrewCompBG.jpg</xsl:param>
<xsl:param name="RunNumber"> 1</xsl:param>
<xsl:param name="CustomerLogoName"> CustLogo.gif</xsl:param>
BREAKPOINT SET HERE --> <xsl:template match="Item">
<html>
<xsl:for-each select="Results">
<head>
<title> Open System</title>
--- end
snippet --------------------------------------------------------------------
--------------------
Thank you,
Tom Coyle
-----Original Message-----
From: Eric Promislow [mailto:ericp@[...].com]
Sent: Monday, April 15, 2002 1:00 PM
To: Thomas Coyle
Cc: visual-xslt-discuss@[...].com
Subject: Re: [Visual-XSLT-discuss] How do I get the XLST debugger to
debug my XSLT file
Hello, Thomas,
Try setting some breakpoints elsewhere in the code. Code breakpoints need
to appear on the same line as the start tag of an instruction. Input
breakpoints need to be on the same line as a tag in the input that
will be handled by a template with a match attribute.
- Eric
_______________________________________________
Visual-XSLT-discuss mailing list
Visual-XSLT-discuss@[...].com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Thread:
Thomas Coyle
Eric Promislow
Thomas Coyle
Eric Promislow
Thomas Coyle
Thomas Coyle
|