| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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"
- xmlns:system_cache__resources_tree_generate_xsl_required_occurs_raport="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/resources_tree_generate_xsl_require_occurs_raport"
- xmlns:p5opr="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/object_parent_relations/object_parent_relations.xsd"
- xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
- exclude-result-prefixes="xs"
- version="2.0">
-
- <xsl:param name="p5opr:detect_objects_parent_relations.local" required="yes"/>
-
- <xsl:function name="p5opr:element-filename">
- <xsl:param name="system_cache__appinfo:document-uri-orig"/>
- <xsl:param name="schema.targetNamespace"/>
- <xsl:param name="local-name"/>
- <xsl:param name="name"/>
- <xsl:variable name="system_cache__appinfo:document-uri-orig">
- <xsl:choose>
- <xsl:when test="substring-after($system_cache__appinfo:document-uri-orig,'file:/')">
- <xsl:value-of select="substring-after($system_cache__appinfo:document-uri-orig,'file:/')"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$system_cache__appinfo:document-uri-orig"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="element-cache-output">
- <xsl:call-template name="system_cache__appinfo:object_install_se_ant_object.save-path">
- <xsl:with-param name="schema.prefix" select="system_cache__appinfo:prefix_from_targetNamespace($system_cache__appinfo:vrtfNamespaces,$schema.targetNamespace)"/>
- <xsl:with-param name="schema.targetNamespace" select="$schema.targetNamespace"/>
- <xsl:with-param name="system_cache__appinfo:document-uri-orig" select="$system_cache__appinfo:document-uri-orig"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:value-of select="concat($p5opr:detect_objects_parent_relations.local,'/',$local-name,'-',$element-cache-output,'-',$name,'.xml')"/>
- </xsl:function>
-
-
- </xsl:stylesheet>
|