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
/
filE8AD43FBBB29FB5837FD532E851C25D0
< prev
next >
Wrap
Extensible Markup Language
|
2010-07-12
|
2KB
|
56 lines
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns="http://bar.yandex.ru/dev/gui"
xmlns:ui="http://bar.yandex.ru/dev/gui"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<xsl:output method="xml" encoding="utf-8" indent="no"/>
<xsl:template match="ui:control[@type='checkbox']">
<xul:vbox xb-preftype="checkbox">
<xsl:apply-templates select="@label"/>
</xul:vbox>
</xsl:template>
<xsl:template match="ui:control[@type='textedit']">
<xul:vbox xb-preftype="textedit">
<xsl:apply-templates select="@label | @label-after | @value-type |
@min | @max | @max-length | @spin | @empty-default"/>
</xul:vbox>
</xsl:template>
<xsl:template match="ui:control[@type='combobox']">
<xul:vbox xb-preftype="combobox">
<xsl:apply-templates select="@label | @editable | @free-input |
@source | @alt-source | @template | @alt-template |
@shortcuts-source | @shortcuts-alt-source | @shortcuts-template"/>
<xsl:apply-templates select="ui:option" mode="combobox"/>
</xul:vbox>
</xsl:template>
<xsl:template match="ui:option" mode="combobox">
<xul:menuitem>
<xsl:apply-templates select="@label | @value"/>
</xul:menuitem>
</xsl:template>
<xsl:template match="ui:control[@type='radiogroup']">
<xul:vbox xb-preftype="radiogroup">
<xsl:apply-templates select="@label | @value"/>
<xsl:apply-templates select="ui:option" mode="radiogroup"/>
</xul:vbox>
</xsl:template>
<xsl:template match="ui:option" mode="radiogroup">
<xul:radio>
<xsl:apply-templates select="@label | @value"/>
</xul:radio>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>