source: sandbox/jabberit_messenger/trophy_expresso/xsl/itensGroup.xsl @ 2397

Revision 2397, 889 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Importacao do modulo trophy integrado ao expresso.

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:param name="nameContact" />
6        <xsl:param name="jid"/>
7        <xsl:param name="id" />
8        <xsl:param name="presence" />
9        <xsl:param name="path_jabberit" />
10        <xsl:param name="status"/>
11        <xsl:param name="statusDisplay"/>
12       
13        <xsl:template match="itens_group">
14
15                        <div id="{$id}" onmousedown="loadIM.actionButton(event,'{$jid}');" style="background: url('{$path_jabberit}templates/default/images/{$presence}.gif')no-repeat center left; padding-left: 18px; margin:2px 0px 5px 10px; cursor:pointer;">
16                                <xsl:value-of select="$nameContact"/><br/>
17                                <span style="font-size: 8pt; font-style:italic; display:{$statusDisplay};"><xsl:value-of select="$status"/></span>
18                        </div>
19                       
20        </xsl:template>
21       
22</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.