| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
- xmlns:p5bws="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/WPS_Functions.xsd"
- xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
- xmlns:d2a="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita-to-ant/d2a.xsd"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:p5dg="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/documentation_generator/documentation_generator.xsd"
- exclude-result-prefixes="xs d2a"
- version="2.0">
-
-
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:param name="d2a:p5ant.executable.default" select="'bash'"/>
-
-
- <xsl:template match="info" mode="d2a:new_ant_project.child.task.bash">
- <xsl:param name="p5dkp:ditafiles.xml" required="yes"/>
- <xsl:param name="d2a:p5ant.executable.priority"/>
- <xsl:param name="d2a:p5ant.executable.dir.priority" required="yes" />
- <xsl:message>#25-info matched with $d2a:p5ant.executable.priority = <xsl:value-of select="$d2a:p5ant.executable.priority"/></xsl:message>
- <xsl:apply-templates mode="#current">
- <xsl:with-param name="p5dkp:ditafiles.xml" select="$p5dkp:ditafiles.xml"/>
- <xsl:with-param name="d2a:p5ant.executable.priority" select="$d2a:p5ant.executable.priority"/>
- <xsl:with-param name="d2a:p5ant.executable.dir.priority" select="$d2a:p5ant.executable.dir.priority"/>
- </xsl:apply-templates>
- </xsl:template>
-
-
- <xsl:template match="syntaxdiagram" mode="d2a:new_ant_project.child.task.bash">
- <xsl:param name="p5dkp:ditafiles.xml" required="yes"/>
- <xsl:param name="d2a:p5ant.executable.priority" select="$d2a:p5ant.executable.default"/>
- <xsl:param name="d2a:p5ant.executable.dir.priority" required="yes"/>
- <xsl:message>#38-syntaxdiagram matched with $d2a:p5ant.executable.priority = <xsl:value-of select="$d2a:p5ant.executable.priority"/></xsl:message>
- <xsl:comment>#38 syntaxdiagram mode="d2a:new_ant_project.child.task.bash"</xsl:comment>
- <exec executable="{$d2a:p5ant.executable.priority}" >
- <!--<xsl:attribute name="dir">${<xsl:value-of select="$d2a.new_module.INPUT"/>}</xsl:attribute>-->
- <xsl:copy-of select="$d2a:p5ant.executable.dir.priority"/>
- <arg value="-c" />
- <xsl:apply-templates mode="#current">
- <xsl:with-param name="p5dkp:ditafiles.xml" select="$p5dkp:ditafiles.xml"/>
- </xsl:apply-templates>
- </exec>
- </xsl:template>
-
- <xsl:template match="groupcomp|groupseq" mode="d2a:new_ant_project.child.task.bash">
- <xsl:param name="p5dkp:ditafiles.xml" required="yes"/>
- <xsl:apply-templates mode="d2a:new_ant_project.child.task.bash.groupcomp">
- <xsl:with-param name="p5dkp:ditafiles.xml" select="$p5dkp:ditafiles.xml"/>
- </xsl:apply-templates>
- </xsl:template>
-
-
-
-
-
-
-
-
- </xsl:stylesheet>
|