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 >
Extensible Markup Language  |  2010-07-12  |  648b  |  24 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <xsl:stylesheet version="1.0"
  4.                 xmlns="http://bar.yandex.ru/dev/gui"
  5.                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  6.                 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  7.  
  8. <xsl:output method="xml" encoding="utf-8" indent="no"/>
  9.  
  10. <xsl:template match="/">
  11.   <xsl:apply-templates select="root/option|options/option"/>
  12. </xsl:template>
  13.  
  14. <xsl:template match="option">
  15.   <xul:menuitem>
  16.     <xsl:apply-templates select="@label | @value"/>
  17.   </xul:menuitem>
  18. </xsl:template>
  19.  
  20. <xsl:template match="@*">
  21.   <xsl:copy/>
  22. </xsl:template>
  23.  
  24. </xsl:stylesheet>