| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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"
- exclude-result-prefixes="xs"
- xmlns:graph="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/graph/graph.xsd"
- xmlns:p5dg="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/documentation_generator/documentation_generator.xsd"
- xmlns:p5ant-interface="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/ant_interface/ant_interface.xsd"
- version="2.0">
-
- <xsl:output indent="yes"/>
- <xsl:strip-space elements="*"/>
-
- <xsl:param name="p5dg.documentation.files.index_analyzed.xml" required="yes"/>
-
- <xsl:variable name="p5dg:documentation.files.index_analyzed.xml" select="doc($p5dg.documentation.files.index_analyzed.xml)"/>
-
- <!--<xsl:param name="graph.graph-to-analyze-property.xml" required="yes"/>-->
-
- <!--<xsl:variable name="graph:graph.graph-to-analyze-property.xml" select="doc($graph.graph-to-analyze-property.xml)"/>-->
-
-
- <xsl:function name="graph:graph-to-analyze-evaluated.resolve.property">
- <xsl:param name="p5ant-interface:property.name"/>
-
- </xsl:function>
-
-
- <xsl:template mode="graph:graph-to-analyze-evaluated.resolve.property" match="@value[ contains(.,'${')]|@location[ contains(.,'${')]">
- <xsl:attribute name="{name()}" select="$graph:graph.graph-to-analyze-property.xml//property[@name = current()/../@name][1]/@graph:property.evaluated"/>
- </xsl:template>
-
- <xsl:template mode="graph:graph-to-analyze-evaluated.resolve.all" match="@*[ contains(.,'${')]">
- <xsl:attribute name="{name()}" select="$graph:graph.graph-to-analyze-property.xml//property[@name = current()/../@name][1]/@graph:property.evaluated"/>
- </xsl:template>
-
-
- </xsl:stylesheet>
|