| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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: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:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:p5suis="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/system_ui_info_speech/system_ui_info_speech.xsd"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/"
- exclude-result-prefixes="xs vc p5bws system_cache__appinfo p5suis p5dkp xsi ditaarch"
- version="2.0"> <!-- xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/" -->
-
-
- <!--<xsl:output indent="yes" method="xml" standalone="no" doctype-public="-//OASIS//DTD DITA Glossary Group//EN" doctype-system="glossgroup.dtd"/>-->
- <xsl:output indent="yes" />
- <xsl:strip-space elements="*"/>
- <xsl:param name="basedir" required="yes"/>
-
-
- <xsl:template mode="p5dkp:fix-glossgroup.wymagania.srcfile.xml" match="p5dkp:map.keys.xml">
- <project xmlns:p5dkp="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.xsd"
- xmlns:p5dkp.comment="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/dita_kosztorys_projektowy/p5dkp.comment.xsd"
- xmlns:p5xsda="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsd_asserts/p5xsda.xsd"
- basedir="{$basedir}"
- default="default"
- name="fix-glossgroup.wymagania.srcfile.xml.overwrite_with_backup">
- <target name="fix-glossgroup.wymagania.srcfile.xml.overwrite_with_backup">
- <xsl:apply-templates select=".//p5dkp:fix-glossgroup.wymagania.dstfile" mode="#current"/>
- </target>
- </project>
- </xsl:template>
-
- <xsl:template mode="p5dkp:fix-glossgroup.wymagania.srcfile.xml" match="p5dkp:fix-glossgroup.wymagania.dstfile">
- <!-- <p5dkp:fix-glossgroup.wymagania.srcfile>-->
- <xsl:message>#363 found from @dstfile=<xsl:value-of select="@dstfile"/> to @srcfile=<xsl:value-of select="@srcfile"/>;</xsl:message>
- <xsl:comment>#363 found from @dstfile=<xsl:value-of select="@dstfile"/> to @srcfile=<xsl:value-of select="@srcfile"/>;</xsl:comment>
- <copy file="{@srcfile}" tofile="{@srcfile}.bak"/>
- <move file="{@dstfile}" tofile="{@srcfile}"/>
- <!--</p5dkp:fix-glossgroup.wymagania.srcfile>-->
- </xsl:template>
-
-
- </xsl:stylesheet>
|