| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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="p5suis.import.xsl"/>
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:param name="psuis.addToLaunchctl.plistFile" required="yes"/>
- <!-- to diagnose if all is ok -->
-
-
- <xsl:template mode="p5suis:DIAGNOSE.xml" match="*">
- <p5suis:DIAGNOSE.xml>
- <xsl:apply-templates mode="p5suis:DIAGNOSE" select="."/>
- </p5suis:DIAGNOSE.xml>
- </xsl:template>
-
- <xsl:template mode="p5suis:DIAGNOSE" match="project">
- <!--<xsl:apply-imports/>-->
- <xsl:apply-templates mode="#current"/>
- </xsl:template>
-
-
- <xsl:template mode="p5suis:DIAGNOSE" match="target[contains(@name,'addToLaunchctl.upload.plist')]">
- <xsl:copy copy-namespaces="no">
- <xsl:copy-of select="@*"/>
- <xsl:apply-templates mode="p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist" select="."/>
- </xsl:copy>
- </xsl:template>
-
-
-
- <xsl:template mode="p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist" match="target">
- <p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist>
- <xsl:variable name="p5suis:addToLaunchctl.plistFile" select="doc($psuis.addToLaunchctl.plistFile)"/>
- <xsl:copy-of select="$p5suis:addToLaunchctl.plistFile"></xsl:copy-of>
- </p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist>
-
- <!--<xsl:apply-templates mode="#current"/>-->
- </xsl:template>
-
- <!--<xsl:template mode="p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist" match="echoxml">
- <xsl:copy copy-namespaces="no">
- <xsl:copy-of select="@*"/>
- </xsl:copy>
- </xsl:template>-->
-
-
- <xsl:template mode="p5suis:DIAGNOSE.xml p5suis:DIAGNOSE p5suis:DIAGNOSE.target.addToLaunchctl.upload.plist" match="text()|comment()"/>
-
- </xsl:stylesheet>
|