[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] phpgwapi/templates/base/msgbox.xsl, 1.2
From: |
nomail |
Subject: |
[Phpgroupware-cvs] phpgwapi/templates/base/msgbox.xsl, 1.2 |
Date: |
Thu, 30 Dec 2004 07:47:34 +0100 |
Update of /phpgwapi/templates/base
Added Files:
Branch:
msgbox.xsl
date: 2004/12/30 06:47:34; author: skwashd; state: Exp; lines: +28 -0
Log Message:
new HEAD
=====================================================================
<!-- $Id: msgbox.xsl,v 1.2 2004/12/30 06:47:34 skwashd Exp $ -->
<xsl:template name="msgbox">
<xsl:apply-templates select="msgbox_data"/>
</xsl:template>
<xsl:template match="msgbox_data">
<table cellpadding="2" cellspacing="0" align="center"
class="msgbox">
<tr>
<td align="center" valign="middle">
<xsl:choose>
<xsl:when test="msgbox_img !=
''">
<xsl:variable
name="msgbox_img"><xsl:value-of select="msgbox_img"/></xsl:variable>
<xsl:variable
name="msgbox_img_alt"><xsl:value-of select="msgbox_img_alt"/></xsl:variable>
<img
src="{$msgbox_img}" alt="{$msgbox_img_alt}" title="{$msgbox_img_alt}"
onMouseout="window.status='';return true;">
<xsl:attribute
name="onMouseover">
<xsl:text>window.status='</xsl:text>
<xsl:value-of select="lang_msgbox_statustext"/>
<xsl:text>'; return true;</xsl:text>
</xsl:attribute>
</img><xsl:text> </xsl:text>
</xsl:when>
</xsl:choose>
<xsl:value-of
disable-output-escaping="yes" select="msgbox_text"/>
</td>
</tr>
</table>
</xsl:template>
- [Phpgroupware-cvs] phpgwapi/templates/base/msgbox.xsl, 1.2,
nomail <=