home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / MediaCoder / MediaCoder2011-R8-5188.exe / htdocs / mc / filelist.xsl < prev    next >
Extensible Markup Language  |  2009-01-12  |  1KB  |  38 lines

  1. <?xml version="1.0" encoding="utf-8"?><!DOCTYPE xsl:stylesheet  [
  2.     <!ENTITY nbsp   " ">
  3.     <!ENTITY copy   "©">
  4.     <!ENTITY reg    "®">
  5.     <!ENTITY trade  "™">
  6.     <!ENTITY mdash  "—">
  7.     <!ENTITY ldquo  "“">
  8.     <!ENTITY rdquo  "”"> 
  9.     <!ENTITY pound  "£">
  10.     <!ENTITY yen    "¥">
  11.     <!ENTITY euro   "€">
  12. ]>
  13. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  14. <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
  15. <xsl:template match="/MediaCoderReport">
  16. <html xmlns="http://www.w3.org/1999/xhtml">
  17. <head>
  18. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  19. <title>Report</title>
  20. <style>
  21. body {
  22. font-size:12px;
  23. font-family:Verdana;
  24. height:24px;
  25. };
  26. </style>
  27. </head>
  28. <body>
  29. <select multiple="multiple" id="fileNames" style="width: 95%; height:100%">
  30. <xsl:for-each select="item">
  31. <option><xsl:value-of select="path"/></option>
  32. </xsl:for-each>
  33. </select>
  34. </body>
  35. </html>
  36.  
  37. </xsl:template>
  38. </xsl:stylesheet>