| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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"
- exclude-result-prefixes="xs"
- version="2.0">
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
-
-
-
- <xsl:template mode="p5dkp:dita" match="topicref">
- <xsl:message terminate="no">#124 !!!!!!!!!!!!!! error - not allowed to be topicref structurized at the moment
- <xsl:copy copy-namespaces="no">
- <xsl:copy-of select="@*" copy-namespaces="no"/>
- </xsl:copy>
- </xsl:message>
-
- </xsl:template>
-
- <xsl:template mode="p5dkp:dita" match="keydef">
- <xsl:param name="keyscope"/>
- <xsl:param name="type"/>
- <xsl:if test="number($debug) > 3">
- <xsl:message>#32A keydef for
- <xsl:copy copy-namespaces="no">
- <xsl:copy-of select="@*" copy-namespaces="no"/>
- val:<xsl:value-of select="topicmeta//keyword/text()"/>
- </xsl:copy>
- </xsl:message>
- </xsl:if>
- <xsl:element name="{@keys}">
- <xsl:choose>
- <xsl:when test="@keys = $type">
- <xsl:attribute name="p5dkp:id" select="concat(tokenize( $keyscope , ' ')[1],'.',@keys)"/>
- </xsl:when>
- </xsl:choose>
- <xsl:copy-of select="@keyref"/>
- <xsl:copy-of select="@href"/>
- <xsl:value-of select="topicmeta//keyword/text()"/>
- </xsl:element>
- </xsl:template>
-
- <xsl:template mode="p5dkp:dita" match="keydef[ not(topicmeta)]">
- <xsl:message>#51 probably p5dkp:fix-topic / keydef - ignoring</xsl:message>
- </xsl:template>
-
- <xsl:template mode="p5dkp:dita" match="*">
- <xsl:comment>#55 ignored <xsl:value-of select="name()"/> , <xsl:value-of select="@*"/></xsl:comment>
- </xsl:template>
-
- <xsl:template mode="p5dkp:dita" match="text()|comment()"/>
-
-
-
- </xsl:stylesheet>
|