Ignore:
Timestamp:
06/15/10 11:24:30 (14 years ago)
Author:
amuller
Message:

Ticket #1059 - Diminui o tamanho do nome de variáveis com mais de 25 caracteres

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/jscode/main.js

    r2929 r2930  
    304304                return; 
    305305        } 
    306         var handler_sendNotification = function(data){ 
     306        var _hand_sendnotif = function(data){ 
    307307                if (data) 
    308308                        write_msg(get_lang("A read confirmation was sent.")); 
     
    327327                        /*      var confNotification = confirm(get_lang("The sender waits your notification of reading. Do you want to confirm this?"), ""); 
    328328                                if (confNotification)*/ 
    329                         //        cExecute ("expressoMail1_2.imap_functions.send_notification&notificationto="+msg_info.DispositionNotificationTo+"&subject="+url_encode(msg_info.subject), handler_sendNotification); 
     329                        //        cExecute ("expressoMail1_2.imap_functions.send_notification&notificationto="+msg_info.DispositionNotificationTo+"&subject="+url_encode(msg_info.subject), _hand_sendnotif); 
    330330                        // } 
    331331 
     
    387387                                var confNotification = confirm(get_lang("The sender:\n%1\nwaits your notification of reading. Do you want to confirm this?",msg_info.DispositionNotificationTo), ""); 
    388388                        if (confNotification) 
    389                                 cExecute ("expressoMail1_2.imap_functions.send_notification&notificationto="+msg_info.DispositionNotificationTo+"&subject="+url_encode(msg_info.subject), handler_sendNotification); 
     389                                cExecute ("expressoMail1_2.imap_functions.send_notification&notificationto="+msg_info.DispositionNotificationTo+"&subject="+url_encode(msg_info.subject), _hand_sendnotif); 
    390390                } 
    391391                //Change msg class to read. 
     
    594594        } 
    595595        selected_messages = selected_messages.substring(0,(selected_messages.length-1)); 
    596         var handler_move_search_msgs = function(data){ 
     596        var _hand_mvsearchmsg = function(data){ 
    597597                if(!data || !data.msgs_number) 
    598598                        return; 
     
    660660                        params += "&new_folder_name="+url_encode(new_folder_name); 
    661661                } 
    662                 cExecute ("expressoMail1_2.imap_functions.move_search_messages", handler_move_search_msgs, params); 
     662                cExecute ("expressoMail1_2.imap_functions.move_search_messages", _hand_mvsearchmsg, params); 
    663663        } 
    664664        else 
     
    826826        if (parseInt(id_msgs) > 0 || id_msgs.length > 0) 
    827827                expresso_mail_sync.archive_msgs(folder,folder_dest,id_msgs);  
    828                 //cExecute("expressoMail1_2.imap_functions.get_info_msgs&folder=" + folder + "&msgs_number=" + id_msgs , handler_arquivar_mensagens); 
     828                //cExecute("expressoMail1_2.imap_functions.get_info_msgs&folder=" + folder + "&msgs_number=" + id_msgs , _hand_arqmsg); 
    829829        else  
    830830                write_msg(get_lang('No selected message.')); 
    831831        /*var has_local_messages_before = expresso_local_messages.has_local_mails(); //vejo se já tinha mensagens locais 
    832         var handler_arquivar_mensagens = function(data) { 
     832        var _hand_arqmsg = function(data) { 
    833833                var sucess = true; 
    834834                var temp; 
     
    879879                id_msgs = get_selected_messages(); 
    880880        if (parseInt(id_msgs) > 0 || id_msgs.length > 0)  
    881                 cExecute("expressoMail1_2.imap_functions.get_info_msgs&folder=" + folder + "&msgs_number=" + id_msgs , handler_arquivar_mensagens); 
     881                cExecute("expressoMail1_2.imap_functions.get_info_msgs&folder=" + folder + "&msgs_number=" + id_msgs , _hand_arqmsg); 
    882882        else  
    883883                write_msg(get_lang('No selected message.'));*/ 
Note: See TracChangeset for help on using the changeset viewer.