source: branches/2.2/jabberit_messenger/jmessenger/xsl/createChatRoom.xsl @ 3102

Revision 3102, 980 bytes checked in by amuller, 14 years ago (diff)

Ticket #986 - Efetuado merge para o Branch 2.2( atualizacao do modulo)

  • 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="lang_nameChatRoom" />
6        <xsl:param name="lang_nickName" />     
7       
8        <xsl:template match="create_chat_room">
9               
10                <div style="margin:5px;">
11                       
12                        <div style="margin-top:10px;">
13                                <label><xsl:value-of select="$lang_nickName"/> : </label>
14                                <span style="position:absolute; left: 85px;">
15                                        <input id="nickName_chatRoom_jabberit" type="text" size="35" maxlength="35"/>
16                                </span>
17                        </div>
18                       
19                        <div style="margin-top:10px;">
20                                <label><xsl:value-of select="$lang_nameChatRoom"/> : </label>
21                                <span style="position:absolute; left: 85px;">
22                                        <input id="name_ChatRoom_jabberit" type="text" size="35" maxlength="35"/>
23                                </span>
24                        </div>
25                </div>
26               
27                <div id="buttons_createChatRoom" style="float:left; margin:20px 0px 0px 10px;" />               
28               
29        </xsl:template>
30       
31</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.