Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > 9406df6f885a8f97005c2d7e241d165f > files > 262

colorer-take5-docs-0-0.beta5.14.mga7.x86_64.rpm

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xs="http://www.w3.org/2001/XMLSchema"
                xmlns:x="uri:custom:schema-db"
                >
<!--
This stylesheet is used to transform original hrc-ref,
resolve all the x:schemaref objects and replace them with
schema source or schema documentation
-->

<xsl:include href="db-xsdprint.xsl"/>
<xsl:include href="db-xsdoc.xsl"/>

<xsl:strip-space elements="xs:*"/>
<xsl:variable name="indent" select="'  '"/>


<xsl:template name="newline"><xsl:text>&#xA;</xsl:text></xsl:template>


<xsl:template match="*">
  <xsl:element name="{local-name()}">
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:element>
</xsl:template>


<xsl:template match="x:schemaref[@role != '']">
  <xsl:variable name='var' select='document(@uri)/xs:schema/xs:complexType[@name=current()/@role]'/>
  <xsl:if test='not($var)'>
    <xsl:message>
[WARNING] Can't find type for documentation in
          '<xsl:value-of select='@uri'/>', complexType='<xsl:value-of select='@role'/>'
    </xsl:message>
  </xsl:if>
  <xsl:apply-templates select="$var" mode="xsdoc"/>
</xsl:template>

<xsl:template match="x:schemaref">
  <xsl:apply-templates select='document(@uri)' mode="print"/>
</xsl:template>

</xsl:stylesheet>