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
/
filF326B7D8AA7C0A82894898B3D00B4902
< prev
next >
Wrap
Extensible Markup Language
|
2010-07-12
|
648b
|
24 lines
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns="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="/">
<xsl:apply-templates select="root/option|options/option"/>
</xsl:template>
<xsl:template match="option">
<xul:menuitem>
<xsl:apply-templates select="@label | @value"/>
</xul:menuitem>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>