home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?><!DOCTYPE xsl:stylesheet [
- <!ENTITY nbsp " ">
- <!ENTITY copy "©">
- <!ENTITY reg "®">
- <!ENTITY trade "™">
- <!ENTITY mdash "—">
- <!ENTITY ldquo "“">
- <!ENTITY rdquo "”">
- <!ENTITY pound "£">
- <!ENTITY yen "¥">
- <!ENTITY euro "€">
- ]>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <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"/>
- <xsl:template match="/MediaCoderReport">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Report</title>
- <style>
- body {
- font-size:12px;
- font-family:Verdana;
- height:24px;
- };
- </style>
- </head>
- <body>
- <select multiple="multiple" id="fileNames" style="width: 95%; height:100%">
- <xsl:for-each select="item">
- <option><xsl:value-of select="path"/></option>
- </xsl:for-each>
- </select>
- </body>
- </html>
-
- </xsl:template>
- </xsl:stylesheet>