<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xs="http://www.w3.org/2001/XMLSchema"
		xmlns:r="http://nwalsh.com/xmlns/extreme2006/recipes/"
		xmlns="http://nwalsh.com/xmlns/extreme2006/recipes/"
		exclude-result-prefixes="r xs"
                version="2.0">

<xsl:import-schema namespace="http://nwalsh.com/xmlns/extreme2006/recipes/"
		   schema-location="recipes.xsd"/>

<xsl:template match="/">
  <xsl:result-document href="generated-recipe.xml"
		       validation="strict">
    <beverage virgin="false">
      <name>Sidecar</name>
    </beverage>
  </xsl:result-document>
</xsl:template>

</xsl:stylesheet>

