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.
86 lines
3.3 KiB
86 lines
3.3 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:import href="MyHeader.xslt"/>
|
|
<xsl:import href="UsersHeader.xslt"/>
|
|
<xsl:import href="UploadHeader.xslt"/>
|
|
|
|
<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:if test="session/sessionKey and (session/indicators/unreadPrivateMessages != '0')">
|
|
<a href="/My/Conversations/">
|
|
<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>
|
|
</a>
|
|
<xsl:text> | </xsl:text>
|
|
</xsl:if>
|
|
<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">/Upload/</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">/My/</xsl:with-param>
|
|
<xsl:with-param name="text">My Home</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>
|
|
<xsl:call-template name="headerLink">
|
|
<xsl:with-param name="url">/Users/</xsl:with-param>
|
|
<xsl:with-param name="text">Ïîëüçîâàòåëè</xsl:with-param>
|
|
</xsl:call-template>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<xsl:if test="starts-with(/root/currentUrl, '/Users/')">
|
|
<xsl:call-template name="usersHeader"/>
|
|
</xsl:if>
|
|
<xsl:if test="starts-with(/root/currentUrl, '/My/')">
|
|
<xsl:call-template name="myHeader"/>
|
|
</xsl:if>
|
|
<xsl:if test="starts-with(/root/currentUrl, '/Upload/')">
|
|
<xsl:call-template name="uploadHeader"/>
|
|
</xsl:if>
|
|
<center>  </center>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|
|
|