You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
4.0 KiB
99 lines
4.0 KiB
<?xml version="1.0" encoding="Windows-1251"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<xsl:template name="headerLink">
|
|
<xsl:param name="url"/>
|
|
<xsl:param name="text"/>
|
|
<xsl:param name="isDisabled"/>
|
|
<a target="_top">
|
|
<xsl:if test="not($isDisabled='true')">
|
|
<xsl:attribute name="href"><xsl:value-of select="$url"/>?<xsl:value-of select="current/date/ticks"/></xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:if test="starts-with(/root/currentUrl, $url)">
|
|
<xsl:attribute name="class">currentLink</xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:value-of select="$text"/>
|
|
</a>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="header">
|
|
<table width="95%" align="center" class="tablesurround" cellpadding="1" cellspacing="1">
|
|
<tr>
|
|
<td>
|
|
<table width="100%" class="tableborders" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td align="center" class="menubar">
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Boards/</xsl:with-param>
|
|
<xsl:with-param name="text">Ñïèñîê ôîðóìîâ</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Conversations/</xsl:with-param>
|
|
<xsl:with-param name="text">
|
|
<xsl:if test="session/indicators/unreadPrivateMessages != '0'">
|
|
<img src="/static/images/newpm.gif" border="0">
|
|
<xsl:attribute name="alt">
|
|
<xsl:text>Ó âàñ </xsl:text>
|
|
<xsl:value-of select="session/indicators/unreadPrivateMessages"/>
|
|
<xsl:text> íåïðî÷èòàííûõ ëè÷íûõ ñîîáùåíèé</xsl:text>
|
|
</xsl:attribute>
|
|
</img>
|
|
</xsl:if>
|
|
<xsl:text>Ëè÷íûå ñîîáùåíèÿ</xsl:text>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="isDisabled">
|
|
<xsl:if test="not(session/sessionKey)">true</xsl:if>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Upload/List/</xsl:with-param>
|
|
<xsl:with-param name="text">Àïëîàä</xsl:with-param>
|
|
<xsl:with-param name="isDisabled">
|
|
<xsl:if test="not(session/sessionKey)">true</xsl:if>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Settings/</xsl:with-param>
|
|
<xsl:with-param name="text">Íàñòðîéêè</xsl:with-param>
|
|
<xsl:with-param name="isDisabled">
|
|
<xsl:if test="not(session/sessionKey)">true</xsl:if>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Login/</xsl:with-param>
|
|
<xsl:with-param name="text">Âõîä</xsl:with-param>
|
|
<xsl:with-param name="isDisabled">
|
|
<xsl:if test="session/sessionKey">true</xsl:if>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/q/faq/</xsl:with-param>
|
|
<xsl:with-param name="text">FAQ</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:text> | </xsl:text>
|
|
<a target="_top">
|
|
<xsl:if test="session/sessionKey">
|
|
<xsl:attribute name="href">/do/Logout/?sessionKey=<xsl:value-of select="session/sessionKey"/></xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:text>Âûõîä</xsl:text>
|
|
</a>
|
|
<xsl:text> | </xsl:text>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Users/All/</xsl:with-param>
|
|
<xsl:with-param name="text">Ïîëüçîâàòåëè</xsl:with-param>
|
|
</xsl:call-template>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<center>  </center>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|
|
|