home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!-- Copyright (C) 1995-2003 Jasc Software, Inc. and its licensors. -->
- <!-- All rights reserved. -->
- <!DOCTYPE xsl:stylesheet [
- <!ENTITY externalScript SYSTEM "../ScriptLib/common.xsl">
- ]>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
- &externalScript;
- <xsl:template match="/">
- <HTML>
- <xsl:apply-templates/>
- </HTML>
- </xsl:template>
- <xsl:template match="photos">
- <xsl:apply-templates/>
- </xsl:template>
- <xsl:template match="album">
- <xsl:apply-templates select="imagelist"/>
- </xsl:template>
- <xsl:template match="imagelist">
- <xsl:apply-templates select="imageinfo"/>
- </xsl:template>
- <xsl:template match="imageinfo">
- <xsl:element name="ixfile">
- <xsl:attribute name="fname"><xsl:value-of select="html_info/@fname"/></xsl:attribute>
- <head>
- <title>
- <xsl:eval>GetAlbumTitle()</xsl:eval>
-
- </title>
- <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>
- <body bgcolor="#FFFFFF" text="#FFFFFF">
- <div align="center"><br kludge=""/></div>
- <table width="640" border="7" cellspacing="7" cellpadding="7" align="center" bordercolor="#000000">
- <tr>
- <td><div align="center"><table width="640" border="0" cellspacing="0" cellpadding="0" align="center">
- <tr valign="top">
- <td><table width="100%" border="0" cellspacing="0" cellpadding="0" background="logos/mountains.jpg">
- <tr valign="bottom">
- <td height="100"><div align="center"><font face="Arial, Helvetica, sans-serif" size="4"><xsl:value-of select="title"/></font></div></td>
- </tr>
- </table></td>
- </tr>
- <tr valign="top">
- <td><div align="center">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" background="miscellaneous/leaves.jpg">
- <tr>
- <td height="480">
- <div align="center">
- <br kludge=""/>
- <table width="75%" border="0" cellspacing="0" cellpadding="0" align="center" background="">
- <tr>
- <td><div align="center"><IMG border="2"><xsl:attribute name="src"><xsl:value-of select="@fname"/></xsl:attribute><xsl:attribute name="width"><xsl:value-of select="imagesize/@width"/></xsl:attribute>
- <xsl:attribute name="height"><xsl:value-of select="imagesize/@height"/></xsl:attribute>
- <xsl:attribute name="alt"><xsl:value-of select="title"/></xsl:attribute></IMG></div></td>
- </tr>
- </table>
- <div align="center"><br kludge=""/>
- <table width="400" border="0" cellspacing="6" cellpadding="0" bordercolor="#000000" background="">
- <tr>
- <td width="100"><div align="center"><xsl:choose>
- <xsl:when test="audio_info/@fname[. != '']">
- <div align="left"><xsl:apply-templates select="audio_info"/></div>
- </xsl:when>
- <xsl:otherwise>
- <div align="left"><img border="0" src="graphics/transparenth120.gif" width="1" height="1"/></div>
- </xsl:otherwise>
- </xsl:choose></div></td>
- <td width="200"><div align="center"><xsl:apply-templates select="previous"/>
- <xsl:apply-templates select="next"/></div></td>
- <td width="100"><div align="center"><xsl:choose>
- <xsl:when test="movie_info/@fname[. != '']">
- <div align="right"><xsl:apply-templates select="movie_info"/></div>
- </xsl:when>
- <xsl:otherwise>
- <div align="right"><img border="0" src="graphics/transparenth120.gif" width="1" height="1"/></div>
- </xsl:otherwise>
- </xsl:choose></div></td>
- </tr>
- </table></div></div></td>
- </tr>
- </table></div></td>
- </tr>
- </table></div></td>
- </tr>
- </table>
- </body>
- </xsl:element>
- </xsl:template>
- <xsl:template match="previous">
- <xsl:value-of/>
- <xsl:choose>
- <xsl:when match="previous[@fname != '']">
- <A>
- <xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img src="buttons/backhand3.gif" width="37" height="34" border="0"/></A>
- </xsl:when>
- <xsl:otherwise>
- <img src="buttons/backhand3.gif" width="37" height="34" border="0"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="next">
- <xsl:value-of/>
- <xsl:choose>
- <xsl:when match="next[@fname != '']">
- <A>
- <xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img src="buttons/nexthand3.gif" width="37" height="34" border="0"/></A>
- </xsl:when>
- <xsl:otherwise>
- <img src="buttons/nexthand3.gif" width="37" height="34" border="0"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="audio_info">
- <xsl:if match="audio_info[@fname != '']">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img border="0" src="graphics/sound.gif"/></A>
- </xsl:if>
- </xsl:template>
- <xsl:template match="movie_info">
- <A><xsl:attribute name="href"><xsl:value-of select="@fname"/></xsl:attribute>
- <img border="0" src="graphics/movie.gif" width="24" height="28"/></A>
- </xsl:template></xsl:stylesheet>
-