xsl-list
[Top] [All Lists]

Re: Aborting XSL processing during a run....

2005-02-11 08:54:37
ben senior writes:
We're using XSL to generate PHP code. Given a particular irregularity in 
the incoming XML (a missing attribute) we would like to output a PHP 
line (to throw an exception) and then to STOP the processing then and 
there (match nothing more and end) but without the processing 'crashing'.

I've looked through my XSL books but not come up with anything...

What about

<xsl:if test="@foo">
  <xsl:message terminate="yes">Missing 'foo' attribute</xsl:message>
</xsl:if>

-- 
Kevin Rodgers


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--