xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
-
+<xsl:output media-type="application/vnd.mozilla.xul+xml"/>
<xsl:template match="/">
<xsl:choose>
<xsl:when test="system-property('xsl:vendor')='Transformiix'">
+
<xsl:apply-templates/>
</xsl:when>
<xsl:otherwise>
<hbox flex="1">
<vbox id="sidebar" style="overflow:hidden">
- <xsl:apply-templates mode="tree"/>
+ <xsl:apply-templates mode="tree" select="menu"/>
<xsl:call-template name="ArtikelSuche"/>
<!--<iframe src="xslt/trans.xml" flex="1" id="uhr"/>-->
<!-- the top menu -->
<!-- ******************************************************************* -->
-<xsl:template match="menu">
-<!--<div style="background:grey">-->
- <menubar id="sample-menubar">
- <xsl:apply-templates/>
- </menubar>
-<!--</div>-->
-</xsl:template>
+<xsl:template match="menu"><menubar id="sample-menubar" flex="1"><xsl:apply-templates/></menubar></xsl:template>
<!-- ******************************************************************* -->
<!-- template for the top menu items
********************************************************************************* -->
-<xsl:template match="item">
- <xsl:choose>
- <xsl:when test="item">
- <menu id="{@name}_menu" label="{@name}" class="menu-iconic" image="image/icons/16x16/{@id}.png">
- <menupopup id="file-popup">
- <xsl:apply-templates/>
- </menupopup>
- </menu>
- </xsl:when>
- <xsl:otherwise>
- <menuitem target="{@target}" link="{@link}" label="{@name}" oncommand="openLink(event)" class="menuitem-iconic" image="image/icons/16x16/{@id}.png" lxid="{@id}" onclick="openLinkNewTab(event)"/>
- </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
+<xsl:template match="item"><xsl:choose><xsl:when test="item"><menu id="{@name}_menu" label="{@name}" class="menu-iconic" image="image/icons/16x16/{@id}.png"><menupopup id="file-popup"><xsl:apply-templates/></menupopup></menu></xsl:when><xsl:otherwise><menuitem target="{@target}" link="{@link}" label="{@name}" oncommand="openLink(event)" class="menuitem-iconic" image="image/icons/16x16/{@id}.png" lxid="{@id}" onclick="openLinkNewTab(event)"/></xsl:otherwise></xsl:choose></xsl:template>
<!-- *************************************************************************** -->
}
else
{
- var bf=document.getElementsByTagName("iframe").item(0)
+ var bf=document.getElementsByTagNameNS("http://www.w3.org/1999/xhtml","iframe").item(0)
bf.setAttribute("src",path)
}
}