Created
April 5, 2013 22:19
-
-
Save jonahlyn/5323128 to your computer and use it in GitHub Desktop.
Panel Menu for Cascade Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:param name="menuId"/> | |
<xsl:param name="menuClass"/> | |
<xsl:param name="defaultPage">index</xsl:param> | |
<xsl:variable name="depth" select="3"/> | |
<xsl:template match="/"> | |
<!-- <xsl:apply-templates select="//system-folder[@current='true']/system-page[dynamic-metadata[name='show-in-nav' and value='yes']]"/> --> | |
<xsl:apply-templates select="//system-folder[@current='true']"/> | |
</xsl:template> | |
<xsl:template match="system-folder[@current='true']"> | |
<div id="sidr"> | |
<h2><xsl:value-of select="display-name"/></h2> | |
<button class="close" href="#" id="close-sidr" type="button"><xsl:text disable-output-escaping="yes"><![CDATA[×]]></xsl:text></button> | |
<ul> | |
<xsl:if test="$menuId"> | |
<xsl:attribute name="id"> | |
<xsl:value-of select="$menuId"/> | |
</xsl:attribute> | |
</xsl:if> | |
<xsl:if test="$menuClass"> | |
<xsl:attribute name="class"> | |
<xsl:value-of select="$menuClass"/> | |
</xsl:attribute> | |
</xsl:if> | |
<xsl:apply-templates select="system-page[dynamic-metadata[name='show-in-nav' and value='yes']] | system-symlink[dynamic-metadata[name='show-in-nav' and value='yes']] | system-folder[descendant-or-self::system-symlink[dynamic-metadata[name='show-in-nav' and value='yes']]] |system-folder[descendant-or-self::system-page[dynamic-metadata[name='show-in-nav' and value='yes']]] "/> | |
</ul> | |
</div> | |
</xsl:template> | |
<xsl:template match="system-page | system-symlink"> | |
<li> | |
<a> | |
<xsl:attribute name="href"> | |
<xsl:choose> | |
<xsl:when test="name(.) = 'system-page'"> | |
<xsl:value-of select="path"/> | |
</xsl:when> | |
<xsl:when test="name(.) = 'system-symlink'"> | |
<xsl:value-of select="link"/> | |
</xsl:when> | |
</xsl:choose> | |
</xsl:attribute> | |
<xsl:if test="@current = 'true'"> | |
<xsl:attribute name="class">active</xsl:attribute> | |
</xsl:if> | |
<xsl:call-template name="get-asset-name"/> | |
</a> | |
</li> | |
</xsl:template> | |
<xsl:template match="system-folder"> | |
<li> | |
<a> | |
<xsl:attribute name="href"> | |
<xsl:choose> | |
<xsl:when test="system-page[name='index']"> | |
<xsl:value-of select="system-page[name='index' and not(@reference)]/link"/> | |
</xsl:when> | |
<xsl:otherwise>#</xsl:otherwise> | |
</xsl:choose> | |
</xsl:attribute> | |
<xsl:if test="@current = 'true' or descendant::node()[@current='true']"> | |
<xsl:attribute name="class">active</xsl:attribute> | |
</xsl:if> | |
<xsl:call-template name="get-asset-name"/> | |
</a> | |
</li> | |
</xsl:template> | |
<xsl:template name="get-asset-name"> | |
<xsl:choose> | |
<xsl:when test="display-name"> | |
<xsl:value-of select="display-name"/> | |
</xsl:when> | |
<xsl:when test="title"> | |
<xsl:value-of select="title"/> | |
</xsl:when> | |
<xsl:otherwise> | |
<xsl:value-of select="name"/> | |
</xsl:otherwise> | |
</xsl:choose> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment