home *** CD-ROM | disk | FTP | other *** search
- <?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>