plcopen/instances_path.xslt
changeset 1352 9ec4ac8e2955
parent 1350 7280349a3375
child 1936 b85b13b1c2ec
equal deleted inserted replaced
1351:a546a63ce1bf 1352:9ec4ac8e2955
   153       <xsl:with-param name="variable_path">
   153       <xsl:with-param name="variable_path">
   154         <xsl:value-of select="$variable_path"/>
   154         <xsl:value-of select="$variable_path"/>
   155       </xsl:with-param>
   155       </xsl:with-param>
   156     </xsl:apply-templates>
   156     </xsl:apply-templates>
   157   </xsl:template>
   157   </xsl:template>
   158   <xsl:template match="pou_instance">
       
   159     <xsl:param name="_indent" select="0"/>
       
   160     <xsl:apply-templates>
       
   161       <xsl:with-param name="_indent" select="$_indent + (1) * $autoindent"/>
       
   162       <xsl:with-param name="instance_path">
       
   163         <xsl:value-of select="@pou_path"/>
       
   164       </xsl:with-param>
       
   165     </xsl:apply-templates>
       
   166   </xsl:template>
       
   167   <xsl:template match="datatype_instance">
       
   168     <xsl:param name="_indent" select="0"/>
       
   169     <xsl:apply-templates>
       
   170       <xsl:with-param name="_indent" select="$_indent + (1) * $autoindent"/>
       
   171       <xsl:with-param name="instance_path">
       
   172         <xsl:value-of select="@datatype_path"/>
       
   173       </xsl:with-param>
       
   174     </xsl:apply-templates>
       
   175   </xsl:template>
       
   176 </xsl:stylesheet>
   158 </xsl:stylesheet>