| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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"
- version="2.0">
-
-
-
- <xsl:import href="crm_lista_zasobow_to_xml_tree_instances.xsl"/>
-
-
-
- <xsl:template name="main">
- <xsl:variable name="import_xml">
- <xsl:copy-of select="document('../default_db.instance.xml/test_wgrania_do_api_xml_MAGAZYN.xml')"></xsl:copy-of>
- </xsl:variable>
-
- <xsl:variable name="go_recurse_from_root_by_build_element">
- <xsl:copy-of select="document('../default_db.instance.xml/go_recurse_from_root_by_build_element.xml')"></xsl:copy-of>
- </xsl:variable>
-
- <!--
- <xsl:for-each select="$import_xml/node()">
- <xsl:comment>13 name is <xsl:value-of select="name()"/></xsl:comment>
- <xsl:for-each select="node()[node()]">
- <xsl:comment>15 name is <xsl:value-of select="name()"/></xsl:comment>
- </xsl:for-each>
-
-
- </xsl:for-each>-->
-
-
-
-
-
-
-
- </xsl:template>
-
- </xsl:stylesheet>
|