home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!-- Copyright (C) 1995-2003 Jasc Software, Inc. and its licensors. -->
- <!-- All rights reserved. -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
- <xsl:template match="/">
- <HTML>
- <xsl:apply-templates select="photos"/>
- </HTML>
- </xsl:template>
- <xsl:template match="photos">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- </head>
- <BODY bgcolor="#C0C0C0">
- <xsl:apply-templates select="album"/>
- </BODY>
- </xsl:template>
- <xsl:template match="album">
- <head>
-
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <meta name="copyright" content="Copyright (C) 1995-2003 Jasc Software, Inc. and its licensors. All rights reserved."/>
-
- </head>
-
- <CENTER/>
- <EM>
- <BIG>
- <B>
- <xsl:value-of select="@title"/>
- </B>
- </BIG>
- </EM>
- <HR kludge=""/>
- <BR kludge=""/>
- <table border="2" cellpadding="4" cellspacing="10">
- <xsl:apply-templates select="imagelist/imageinfo"/>
- </table>
- </xsl:template>
- <xsl:template match="imageinfo">
- <tr>
- <td align="center"><table>
- <tr>
- <td align="center"><xsl:value-of select="title"/></td>
- </tr>
- <tr>
- <td align="center"><A target="rhs"><xsl:attribute name="href"><xsl:value-of select="html_info/@fname"/></xsl:attribute>
- <xsl:apply-templates select="thumbinfo"/></A></td>
- </tr>
- </table></td>
- </tr>
- </xsl:template>
- <xsl:template match="thumbinfo">
- <IMG><xsl:attribute name="src"><xsl:value-of select="@fname"/></xsl:attribute>
- <xsl:apply-templates select="thumbsize"/>
- </IMG>
- </xsl:template>
- <xsl:template match="thumbsize">
- <xsl:attribute name="width"><xsl:value-of select="@width"/></xsl:attribute>
- <xsl:attribute name="height"><xsl:value-of select="@height"/></xsl:attribute>
- </xsl:template>
- </xsl:stylesheet>
-