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
/
fil06DDF2DBF9598661F3E5AA0CA98180C0
< prev
next >
Wrap
Extensible Markup Language
|
2010-07-12
|
650b
|
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/shortcut|shortcuts/shortcut"/>
</xsl:template>
<xsl:template match="shortcut">
<xul:label>
<xsl:apply-templates select="@label | @value"/>
</xul:label>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>