source: trunk/jabberit_messenger/jmessenger/xsl/chatRoom.xsl @ 3082

Revision 3082, 865 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #1091 - Implementado a busca de salas para bate-papo no novo modulo Expresso messenger XEP-0045-MUC.

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