Ignore:
Timestamp:
07/08/09 15:34:43 (15 years ago)
Author:
alexandrecorreia
Message:

Ticket #571 - Removido o arquivo plugins.xml, usado pelo applet ( Java ) para carregar os plugins.

File:
1 edited

Legend:

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

    r1091 r1097  
    8484        public static String COUNTRY; 
    8585        public static String LANGUAGE; 
     86        public static String JAVAPLUGINS; 
    8687         
    8788        /** 
     
    114115                                String country = new String(applet.getParameter("COUNTRY")); 
    115116                                String language = new String(applet.getParameter("LANGUAGE")); 
     117                                String javaPlugins = new String(applet.getParameter("JAVAPLUGINS")); 
    116118 
    117119                                /** 
     
    122124                                 *                                - Nome da Empresa para Constant NAMECOMPANY 
    123125                                 *                                - Informa qual o tipo de protocolo a ser usado http ou https. 
    124                                  *                                - Passa ao java o cn do ldap do servidor expresso.                                               
     126                                 *                                - Passa ao java o cn do ldap do servidor expresso. 
     127                                 *                                - Carrega plugins para o Java.                                                   
    125128                                 */ 
    126129                                 
     
    132135                                LANGUAGE = language; 
    133136                                COUNTRY = country; 
     137                                JAVAPLUGINS = javaPlugins; 
    134138 
    135139                                // Reinit languages incase they changed 
     
    142146                                { 
    143147                     exitURL = new URL(getDocumentBase(),getParameter("EXITPAGE")); 
    144                      javax.swing.JOptionPane.showMessageDialog(null, "exitUrl : " + exitURL); 
    145148                                }  
    146149                                catch (MalformedURLException e){} 
     
    159162                                Start.applet = true; 
    160163                                final JPanel panel = new JPanel(new BorderLayout()); 
    161                                 start = new Start( getCodeBase().toString(),panel ); 
     164                                start = new Start( getCodeBase().toString(), panel ); 
    162165                                 
    163166                                backend = start.getBackend(); 
Note: See TracChangeset for help on using the changeset viewer.