Project

Profile

Help

Bug #1595 » Ind_Pers_de.xsl

Manfred Staudinger, 2012-07-24 17:16

 
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="2.0"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:ixsl="http://saxonica.com/ns/interactiveXSLT"
extension-element-prefixes="ixsl"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:result-document href="#index" method="ixsl:replace-content">
<xsl:apply-templates select="ixsl:page()/html:html/html:body/html:ul/html:li" mode="init"/>
</xsl:result-document>
</xsl:template>
<xsl:template match="node() | @*" mode="init">
<xsl:copy>
<xsl:apply-templates select="@*" mode="init"/>
<xsl:apply-templates mode="init"/>
</xsl:copy>
</xsl:template>
<xsl:template match="html:a/@onclick" mode="init"/>
<xsl:template match="html:div" mode="init"/>

<xsl:template match="html:a" mode="ixsl:onclick">
<xsl:message select="'onclick: name(.)', name(.), '@id', @id, 'target', name(ixsl:get(ixsl:event(), 'target'))"/>
<xsl:sequence select="ixsl:call(ixsl:event(), 'preventDefault')"/>
<xsl:choose>
<xsl:when test="following-sibling::html:div">
<!-- test code starts -->
<xsl:message select="'name(../html:div)', name(../html:div), '../html:div/@id', ../html:div/@id"/>
<xsl:message select="'name(../*[2])', name(../*[2]), '../*[2]/@id', ../*[2]/@id"/>
<xsl:result-document href="?select=following-sibling::html:div" method="ixsl:replace-content"/>
<xsl:result-document href="?select=../html:div" method="ixsl:replace-content"/>
<xsl:result-document href="?select=../*[2]" method="ixsl:replace-content"/>
<!-- test code ends -->
<xsl:result-document href="?select=.." method="ixsl:replace-content">
<xsl:apply-templates select="../*" mode="init"/>
</xsl:result-document>
</xsl:when>
<xsl:otherwise>
<xsl:result-document href="?select=.." method="ixsl:append-content">
<html:div xmlns:html="http://www.w3.org/1999/xhtml" id="{@id}_div">
<xsl:value-of select="'clicked item', @id"/>
</html:div>
</xsl:result-document>
</xsl:otherwise>
</xsl:choose>
</xsl:template>

</xsl:transform>
(2-2/3)