67 lines
1.8 KiB
XML
67 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--
|
|
##############################################################################
|
|
#
|
|
# Copyright (c) 2003-2005 Kupu Contributors. All rights reserved.
|
|
#
|
|
# This software is distributed under the terms of the Kupu
|
|
# License. See LICENSE.txt for license text. For a list of Kupu
|
|
# Contributors see CREDITS.txt.
|
|
#
|
|
##############################################################################
|
|
|
|
XSL transformation from Kupu Library XML to HTML for the image library
|
|
drawer.
|
|
|
|
$Id: imagedrawer.xsl 4105 2004-04-21 23:56:13Z guido $
|
|
-->
|
|
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
|
version="1.0">
|
|
|
|
<xsl:import
|
|
href="http://asteroid.infrae:8080/silva/kupu_silva/librarydrawer.xsl"
|
|
tal:attributes="href python: '%s/kupu_silva/librarydrawer.xsl' % here.get_root().absolute_url()"
|
|
/>
|
|
|
|
<xsl:template match="resource|collection" mode="properties">
|
|
<table>
|
|
<xsl:if test="preview">
|
|
<tr>
|
|
<td id="epd-imgpreview">
|
|
<strong>Preview</strong><br />
|
|
<img src="{preview}" title="{title}" alt="{title}" />
|
|
</td>
|
|
</tr>
|
|
</xsl:if>
|
|
<tr>
|
|
<td>
|
|
<strong>Title</strong><br />
|
|
<xsl:value-of select="title" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<strong>Size</strong><br />
|
|
<xsl:value-of select="size" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<strong>Description</strong><br />
|
|
<xsl:value-of select="description" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<strong>ALT-text</strong><br />
|
|
<form onsubmit="return false;">
|
|
<input type="text" id="image_alt" size="10" />
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|