home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2011 November
/
CHIP_2011_11.iso
/
Programy
/
Narzedzia
/
AIMP2
/
aimp_2.61.583.exe
/
$TEMP
/
YandexPackSetup.msi
/
fil619DB0B82BEAFAE2C5AA8E9C195A20DC
< prev
next >
Wrap
Extensible Markup Language
|
2010-07-12
|
5KB
|
131 lines
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE stylesheet SYSTEM "chrome://yasearch/locale/yasearch.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:data="urn:data"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
extension-element-prefixes="data"
>
<xsl:import href="chrome://yasearch/content/xsl-templ/xsl-menu-popup.xsl"/>
<xsl:output method="xml" encoding="UTF-8" indent="no"/>
<xsl:param name="max-favorites" select="7"/>
<xsl:variable name="id" select="'yandex-bar-services'"/>
<xsl:param name="homePageHost" select="'www.yandex.ru'"/>
<xsl:param name="cbl" select="'{'"/>
<xsl:param name="cbr" select="'}'"/>
<xsl:template match="data:services">
<toolbarbutton type="menu-button"
statustext="http://{$homePageHost}/"
oncommand="if (event.target == this) Ya.loadURI('http://{$homePageHost}/', event, {$cbl}clid:4, action:10{$cbr});"
label="&yasearch.bar.label;">
<xsl:apply-templates select="@id"/>
<menupopup>
<xsl:apply-templates select="." mode="favorites"/>
<xsl:apply-templates select="data:group[*]"/>
<menuseparator/>
<menuitem label="&yasearch.preferences.label;" tooltiptext="&yasearch.preferences.open.tooltiptext;"
class="menuitem-iconic" image="{$images}bar-options.png"
oncommand="Ya.openPrefWindow()"/>
<menuitem label="&yasearch.about.label;" tooltiptext="&yasearch.about.open.tooltiptext;"
class="menuitem-iconic" image="{$images}bar-logo-16.png"
oncommand="Ya.openAboutWindow()"/>
</menupopup>
</toolbarbutton>
</xsl:template>
<xsl:template match="data:services" mode="favorites">
<xsl:variable name="services" select=".//data:service[@service-timestamp != 0]"/>
<xsl:if test="count($services) > 0">
<xsl:for-each select="$services">
<xsl:sort select="@service-timestamp" order="descending" data-type="number"/>
<xsl:if test="position() <= $max-favorites">
<xsl:apply-templates select="." mode="top"/>
</xsl:if>
</xsl:for-each>
<menuseparator />
</xsl:if>
</xsl:template>
<xsl:template match="data:services/data:group">
<menu>
<xsl:apply-templates select="@*"/>
<menupopup>
<xsl:apply-templates select="data:service | data:complex"/>
</menupopup>
</menu>
</xsl:template>
<xsl:template match="data:service" mode="url">
<xsl:attribute name="statustext">
<xsl:choose>
<xsl:when test="@host">
<xsl:value-of select="@host"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>http://</xsl:text>
<xsl:value-of select="concat(@id, $domain)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="oncommand">
<xsl:text>Ya.loadService('</xsl:text>
<xsl:value-of select="@id"/>
<xsl:text>',this.getAttribute('statustext'),event</xsl:text>
<xsl:if test="@action">
<xsl:value-of select="concat(',', $cbl, 'clid:-1, action:', @action, $cbr)"/>
</xsl:if>
<xsl:text>);</xsl:text>
</xsl:attribute>
</xsl:template>
<xsl:template match="data:service">
<menuitem>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="." mode="url"/>
</menuitem>
</xsl:template>
<xsl:template match="data:service" mode="top">
<menuitem>
<xsl:apply-templates select="@*" mode="top"/>
<xsl:apply-templates select="." mode="url"/>
</menuitem>
</xsl:template>
<xsl:template match="@*" mode="top">
<xsl:apply-templates select="."/>
</xsl:template>
<xsl:template match="data:service[parent::data:complex[@image != 'null']]/@image" mode="top">
<xsl:attribute name="image">
<xsl:value-of select="concat($images, parent::data:service/parent::data:complex/@image, '.png')"/>
</xsl:attribute>
<xsl:attribute name="class">
<xsl:text>menuitem-iconic</xsl:text>
</xsl:attribute>
</xsl:template>
<xsl:template match="data:service[parent::data:complex]/@label" mode="top">
<xsl:attribute name="label">
<xsl:value-of select="parent::data:service/parent::data:complex/@label"/>
<xsl:text> / </xsl:text>
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
<xsl:template match="data:services/@image">
<xsl:attribute name="class">
<xsl:text>toolbarbutton-icon</xsl:text>
</xsl:attribute>
<xsl:apply-templates select="." mode="image"/>
</xsl:template>
</xsl:stylesheet>