<?xml version="1.0" ?>

<!-- Pharos sample manifest layout -->
<!-- This file is dynamically generated every time packages are build via the Pharos administrator -->
<!-- Modify this file only in the Pharos\bin\staticweb folder on your Pharos system-->

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
    <head>
      <title>Easy printer install packages</title>
      <style><!--.packagecell { color: #808080; font-size: 10pt; font-style: italic }.packagelink { font-style: normal; font-size: 12pt }--></style>
    </head>
    <body>
      <!-- The big table that holds all -->
      <table width="774" align="center">
        <!-- Popup Client Easy Install Text -->
        <tr>
          <td align="center"><font size="6" face="Arial" color="coral"> Easy printer install packages</font></td>
        </tr>
        <!-- Packages Table -->
        <tr>
          <td>
            <table style="border-collapse: collapse;" width="100%" border="1" cellpadding="4">
              <tr>
                <th align="left">Name</th>
                <th align="left">FileURL</th>
                <th align="left">Group</th>
                <th align="left">OS</th>
              <th align="left">Size</th>
              </tr>
              <xsl:for-each select="manifest/packages/package">
              
              <tr>
                <td><xsl:value-of select="name"/><br/><xsl:value-of select="description"/></td>
                <td><a><xsl:attribute name="href"><xsl:value-of select="fileurl"/></xsl:attribute><xsl:value-of select="name"/></a></td>
                <td><xsl:value-of select="group"/></td>
                <td><xsl:value-of select="environment"/></td>
		<xsl:if test="filesize &gt; 999999">
		  <td><xsl:value-of select="format-number(filesize div 1000000,'#.# MB')"/></td>
		</xsl:if>
		<xsl:if test="filesize &lt; 1000000">
                  <td><xsl:value-of select="format-number(filesize div 1000,'#.0 KB')"/></td>
                </xsl:if>
              </tr>

              </xsl:for-each>
            </table>
          </td>
        </tr>
      </table>
    </body>
  </html>
</xsl:template>

</xsl:stylesheet>
