| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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:p5xsl="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsl_interface/xsl_interface.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
-
-
- <xsl:template match="p5xsl:stylesheet_buildlist" mode="p5xsl:include">
- <xsl:element name="xsl:stylesheet">
- <xsl:apply-templates mode="#current"/>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- exclude-result-prefixes="xs"
- version="2.0">
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
- <!--<xsl:import-schema schema-location="repository/p5dg.documentation.files.antstructure-resp.xsd" namespace="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface-resp.xsd"/>-->
- <xsl:apply-templates mode="#current"/>
- </xsl:stylesheet>
- </xsl:element>
- </xsl:template>
-
-
-
-
- <xsl:template mode="p5xsl:include" match="p5xsl:include.list">
- <xsl:apply-templates mode="#current"/>
- </xsl:template>
- <xsl:template mode="p5xsl:include" match="p5xsl:include.list.href">
- <xsl:element name="xsl:include">
- <xsl:attribute name="href" select="@href"/>
- </xsl:element>
- </xsl:template>
-
- <xsl:template mode="p5xsl:include" match="p5xsl:namespaces.list">
- <xsl:apply-templates mode="#current"/>
- </xsl:template>
- <xsl:template mode="p5xsl:include" match="p5xsl:namespaces.list.namespace">
- <xsl:namespace name="{@prefix}" select="@namespace"/>
- </xsl:template>
-
- </xsl:stylesheet>
|