source: sandbox/jabberit_messenger/trophy_expresso/xsl/chatBox.xsl @ 2720

Revision 2720, 1.1 KB checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - [ SERPRO ] - Implementacao da XEP-0085 - notificacao de status do chat

  • Property svn:executable set to *
RevLine 
[2397]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="idChatBox" />
6        <xsl:param name="jidTo" />
7        <xsl:param name="path_jabberit" />
8
9        <xsl:template match="chat_box">
10               
11                        <div>
12                                <div id="{$idChatBox}" style="height:190px; width:370px; overflow-y:scroll;"></div>
[2720]13                                <div id="{$jidTo}__chatState" style="height:15px; width:370px;"></div>
[2397]14                                <div style="margin:2px;">
[2626]15                                        <textarea id="{$jidTo}__sendBox" class="trophyimchatinput" style="padding-left: 78px; height:130px; width:360px;"></textarea>
[2697]16                                        <div style="position:relative;margin:-126px 0 0 10px; border-right:1px dotted #000 !important; width:67px; height:120px;">
[2690]17                                                <div id="{$jidTo}__photo" style="width:60px ;height:80px ;background-image:url('{$path_jabberit}templates/default/images/photo.png');" />
18                                                <div style="margin: 7px 5px 5px 10px;">
19                                                        <input type="button" value="Send" onclick="TrophyIM.sendMessage('{$jidTo}')"/>
20                                                </div>
[2397]21                                        </div>
22                                </div>
23                        </div>                 
24                 
25        </xsl:template>
26       
27</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.