Changeset 1129


Ignore:
Timestamp:
07/15/09 15:59:06 (15 years ago)
Author:
alexandrecorreia
Message:

Ticket #577 - Adicionado botão "click to call" na janela de conversa, arquivos Java modificados

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jabberit_messenger/java_source/src/nu/fw/jeti/applet/Jeti.java

    r1128 r1129  
    102102                        public void run() 
    103103                        { 
    104                                 String server = new String("im.pr.gov.br"); 
    105                                 String portText = new String("5223"); 
    106                                 boolean ssl = true;//Boolean.valueOf(applet.getParameter("SSL")).booleanValue(); 
    107                                 String user = new String("alexandrecorreia"); 
    108                                 String password = new String("alec108529"); 
    109                                 String resource = new String("JAVA_RESOURCE"); 
    110                                 String host = new String("im.pr.gov.br"); 
    111                                 String useJavaProxy = new String("FALSE"); 
    112                                 String serverExpresso = new String("localhost/expresso/jabberit_messenger/"); 
    113                                 String useHttps = new String("http"); 
    114                                 String nameCompany = new String("ALEC"); 
    115                                 String cnName = new String("Alexandre"); 
    116                                 String country = new String("BR"); 
    117                                 String language = new String("pt"); 
    118                                 String javaPlugins = new String("xhtml,filetransfer,callVoip"); 
     104 
     105                                String server = new String(applet.getParameter("SERVER")); 
     106                                String portText = new String(applet.getParameter("PORT")); 
     107                                boolean ssl = Boolean.valueOf(applet.getParameter("SSL")).booleanValue(); 
     108                                String user = new String(applet.getParameter("USER")); 
     109                                String password = new String(applet.getParameter("PASSWORD")); 
     110                                String resource = new String(applet.getParameter("RESOURCE")); 
     111                                String host = new String(applet.getParameter("HOST")); 
     112                                String useJavaProxy = new String(applet.getParameter("USEPROXY").toUpperCase()); 
     113                                String serverExpresso = new String(applet.getParameter("EXPRESSO")); 
     114                                String useHttps = new String(applet.getParameter("USEHTTPS")); 
     115                                String nameCompany = new String(applet.getParameter("NAMECOMPANY")); 
     116                                String cnName = new String(applet.getParameter("CNNAME")); 
     117                                String country = new String(applet.getParameter("COUNTRY")); 
     118                                String language = new String(applet.getParameter("LANGUAGE")); 
     119                                String javaPlugins = new String(applet.getParameter("JAVAPLUGINS")); 
    119120 
    120121                                /** 
Note: See TracChangeset for help on using the changeset viewer.