| 12345678910111213141516171819202122232425262728 |
- <?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:p5suis="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/system_ui_info_speech/system_ui_info_speech.xsd"
- xmlns:p5ant-interface="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
- <!--<xsl:import href="../ant_interface/p5ant-interface.import.xsl"/>-->
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <!-- to diagnose if all is ok -->
-
-
-
-
- <xsl:template mode="p5suis:DIAGNOSE" match="project">
- <xsl:apply-templates mode="p5ant-interface:DIAGNOSE" select="."/>
- </xsl:template>
-
- <xsl:template mode="p5ant-interface:DIAGNOSE" match="project">
- <xsl:apply-imports/>
- </xsl:template>
-
-
- </xsl:stylesheet>
|