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

  <xsl:output method="text" indent="no"/>
	
  <xsl:param name="display">create</xsl:param>
  <xsl:param name="domain"></xsl:param>

<xsl:template match="/">

/*
	Schema to: <xsl:value-of select="$display"/> 
	of domain: <xsl:value-of select="$domain"/>
		
	Generated by benow.repository.SchemaManager (http://benow.ca)
*/
SET SQL DIALECT 3;

SET TERM ^;

<xsl:apply-templates/>

COMMIT WORK ^
SET TERM ;^
</xsl:template> 

<xsl:template match="statement">
<xsl:choose>
<xsl:when test="$display='remove'"><xsl:if test="remove">
<xsl:value-of select="remove"/>
^
</xsl:if>
  </xsl:when>
  <xsl:otherwise>
<xsl:if test="description">
/* <xsl:value-of select="description"/> */
</xsl:if>
<xsl:value-of select="body"/>
^
  </xsl:otherwise>
</xsl:choose>
</xsl:template> 


</xsl:stylesheet>



