source: branches/2.2.0.1/jabberir_messenger/jmessenger/xsl/chatRoom.xsl @ 4453

Revision 4453, 1019 bytes checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1726 - Adicionando jabberit_messenger da comunidade.

  • 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="idChatRoom" />
6        <xsl:param name="jidTo" />
7        <xsl:param name="lang_Send" />
8        <xsl:param name="lang_Leave_ChatRoom" />
9        <xsl:param name="path_jabberit" />
10
11        <xsl:template match="chat_room">
12       
13                        <div>
14                                <div id="{$idChatRoom}" style="height:300px; width:328px; overflow-y:scroll;"></div>
15                                <div id="{$idChatRoom}__participants" style="float:right; position: absolute; top:0px; left:330px; width:150px; height:380px; overflow-y: auto;"></div>
16                                <div style="margin:2px;">
17                                        <textarea id="{$jidTo}__sendRoomChat" style="height:80px; width:325px;"></textarea>
18                                        <div style="margin: 5px;">
19                                                <input type="button" value="{$lang_Send}" style="margin-right: 5px;"/>
20                                                <input type="button" value="{$lang_Leave_ChatRoom}"/>
21                                        </div>
22                                       
23                                       
24                                </div>
25                        </div>                 
26                 
27        </xsl:template>
28       
29</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.