source: trunk/instant_messenger/bkp/instant_messenger_64/xsl/preferences.xsl @ 151

Revision 151, 1.1 KB checked in by niltonneto, 16 years ago (diff)

Commit da nova versão do módulo, usando agente em C.
Vide Página do módulo do Trac:
http://www.expressolivre.org/dev/wiki/messenger

A versão anterior encontra-se na subpasta bkp (32/64).

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:template match="/preferences">
6   <html>
7   <head>
8   </head>
9   <body>
10          <div id="im_preferences" style="margin-left:5px;margin-top:5px">
11                  <fieldset><legend> Opções :</legend>
12                          <input id="ch_offline" type="checkbox" /> Exibir amigos desconectados
13                  </fieldset>
14                  <br />
15                  <fieldset><legend> Ausente : </legend>       
16                          Ficar ausente depois de <input id="in_time" type="input" size="2" maxlength="2"/> minutos :
17                  </fieldset>           
18                  <br />       
19                  <fieldset>
20                          <legend> Ativar aviso de mensagens recebidas :</legend>
21                  <input id="rd_nm" type="radio" name="rd_aviso" /> Normal <br />
22                          <input id="rd_ch" type="radio" name="rd_aviso" /> Treme Tela
23                  </fieldset>
24                        <br/>
25                        <input type="button" value="Salvar" onclick="javascript:IM_Preferences.SetYourPreferences();" />
26                        <input type="button" value="Fechar" onclick="javascript:im_win.windowClose('divYourPreferences_im');"/>
27          </div>
28   </body>
29   </html>
30</xsl:template>
31
32</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.