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 >
Extensible Markup Language  |  2010-07-12  |  650b  |  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/shortcut|shortcuts/shortcut"/>
  12. </xsl:template>
  13.  
  14. <xsl:template match="shortcut">
  15.   <xul:label>
  16.     <xsl:apply-templates select="@label | @value"/>
  17.   </xul:label>
  18. </xsl:template>
  19.  
  20. <xsl:template match="@*">
  21.   <xsl:copy/>
  22. </xsl:template>
  23.  
  24. </xsl:stylesheet>