Ignore:
Timestamp:
07/06/09 18:49:28 (15 years ago)
Author:
alexandrecorreia
Message:

Ticket #571 - Removido o arquivo rostericons.xml, usado pelo applet(Java).

File:
1 edited

Legend:

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

    r1064 r1091  
    142142                                { 
    143143                     exitURL = new URL(getDocumentBase(),getParameter("EXITPAGE")); 
     144                     javax.swing.JOptionPane.showMessageDialog(null, "exitUrl : " + exitURL); 
    144145                                }  
    145146                                catch (MalformedURLException e){} 
     
    158159                                Start.applet = true; 
    159160                                final JPanel panel = new JPanel(new BorderLayout()); 
    160                                 start = new Start(getCodeBase().toString(),panel); 
     161                                start = new Start( getCodeBase().toString(),panel ); 
    161162                                 
    162163                                backend = start.getBackend(); 
     
    298299                        applet.getAppletContext().showDocument(new URL(url),"_blank"); 
    299300                } 
    300                 catch (MalformedURLException e){/*wrong url*/} 
     301                catch (MalformedURLException e){} 
    301302        } 
    302303                 
     
    331332                if( !started ) 
    332333                        return false; 
     334                 
    333335                return backend.isLoggedIn(); 
    334336        } 
     
    383385                { 
    384386                        JID j = backend.getMyJID(); 
    385                         if(j.getDomain().equals(server)&& j.getUser().equals(username)) 
    386                         { 
     387                         
     388                        if( j.getDomain().equals(server) && j.getUser().equals(username) ) 
    387389                                return; 
    388                         } 
    389390                } 
    390391                secureMethodInvoker.addData(new Object[]{"login",username,server,password}); 
Note: See TracChangeset for help on using the changeset viewer.