source: branches/2.3/expressoMail1_2/js/common_functions.js @ 4851

Revision 4851, 30.9 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #2117 - Filtro fora do escritório não preserva formatação

  • Property svn:eol-style set to native
  • Property svn:executable set to *
RevLine 
[2]1// BEGIN: FUNCTION RESIZE WINDOW
[1121]2if (!expresso_offline) {
3        var _showBar = showBar;
4        var _hideBar = hideBar;
5}
[2]6
7function __showBar(){
8        _showBar();
9        resizeWindow();
10}
11
12function __hideBar(){
13        _hideBar();
14        resizeWindow();
15}
16showBar = __showBar;
17hideBar = __hideBar;
18
19window.onresize = resizeWindow;
20
[320]21function config_events(pObj, pEvent, pHandler)
22{
23    if( typeof pObj == 'object')
24    {
25        if( pEvent.substring(0, 2) == 'on')
26            pEvent = pEvent.substring(2, pEvent.length);
27
28        if ( pObj.addEventListener )
29            pObj.addEventListener(pEvent, pHandler, false);
30        else if( pObj.attachEvent )
31            pObj.attachEvent('on' + pEvent, pHandler );
32    }
33}
34
[2]35function resizeWindow(){
36
[3369]37        var divScrollMain = Element("divScrollMain_"+numBox);
38        var table_message = Element("table_message");
39        var content_folders = Element("content_folders");
40        var clientHeight = ((window.innerHeight ? window.innerHeight : document.body.offsetHeight) - 8);
[3018]41        var clientWidth = window.innerWidth ? window.innerWidth : document.body.offsetWidth;
[2]42
[3369]43        if(divScrollMain){
44                divScrollMain.style.height = (clientHeight - (findPosY(divScrollMain) + (table_message.clientHeight ? table_message.clientHeight : table_message.offsetHeight))) + "px";
45        }
[66]46
[813]47        if(typeof(BordersArray) != 'undefined') {
[65]48                for(var i = 1; BordersArray.length > 1 && i < BordersArray.length;i++) {
49                        var div_scroll = Element("div_message_scroll_"+BordersArray[i].sequence);
50                        var div = Element("content_id_"+BordersArray[i].sequence);
[813]51
[3369]52                        if(div){
53                                div.style.height = (clientHeight - (findPosY(div) + (table_message.clientHeight ? table_message.clientHeight : table_message.offsetHeight)+2)) + "px";
54                                 div.style.width = (clientWidth - (findPosX(div)+10)) + "px";
55                        }
56                        if(div_scroll){
57                                div_scroll.style.height = (clientHeight - (findPosY(div_scroll) + (table_message.clientHeight ? table_message.clientHeight : table_message.offsetHeight)+5)) + "px";
58                                div_scroll.style.width = (clientWidth - (findPosX(div_scroll)+15)) + "px";
59                        }
60                }
61        }
[812]62
[3369]63        if(content_folders){
64                var search_div = Element("search_div");
65                var contentFoldersY = findPosY(content_folders);
66                content_folders.style.height = (clientHeight - (contentFoldersY + (contentFoldersY > findPosY(search_div) ? 0 : (search_div.clientHeight ? search_div.clientHeight : search_div.offsetHeight) + 5))) + "px";
67        }
[3336]68        redim_borders(count_borders());
[4062]69        resizeMailList();
[2]70}
71// END: FUNCTION RESIZE WINDOW
72
[320]73var _beforeunload_ = window.onbeforeunload;
74
75window.onbeforeunload = function()
[271]76{
[320]77        return unloadMess();
78}
[271]79
[2]80function unloadMess(){
[3904]81        if (typeof BordersArray == 'undefined') return; // We're not on expressoMail
[1657]82        if (typeof(expresso_mail_sync) != "undefined" && expresso_mail_sync.working) {
[1518]83                var mess = get_lang("You're about archiving your e-mails from server. Do you really want to stop this action?");
84                return mess;
85        }
86        else {
87                var mess = get_lang("Your message has not been sent and will be discarted.");
88                for (var i = 0; i < BordersArray.length; i++) {
89                        var body = Element('body_' + BordersArray[i].sequence);
90                        if (body && body.contentWindow && body.contentWindow.document.designMode.toLowerCase() == 'on') {
91                                return mess;
92                        }
[2]93                }
94        }
95}
[320]96
[2]97// Translate words and phrases using user language from eGroupware.
[812]98function get_lang(_key) {
[3369]99        if (typeof(_key) == 'undefined')
100                return false;
[566]101        var key = _key.toLowerCase();
[812]102        if(array_lang[key])
103                var _value = array_lang[key];
104        else
105                var _value = _key+"*";
[566]106
[812]107        if(arguments.length > 1)
108                for(j = 1; typeof(arguments[j]) != 'undefined'; j++)
109                        _value = _value.replace("%"+j,arguments[j]);
[2]110        return _value;
[812]111}
112
[2]113// Make decimal round, using in size message
114function round(value, decimal){
115        var return_value = Math.round( value * Math.pow( 10 , decimal ) ) / Math.pow( 10 , decimal );
116        return( return_value );
117}
118
119// Change the class of message.
[3369]120// In refresh, the flags UnRead and UnSeen don't exist anymore.
[163]121function set_msg_as_read(msg_number, selected){
[2]122        tr_message = Element(msg_number);
[163]123        if (exist_className(tr_message, 'tr_msg_unread'))
124                decrement_folder_unseen();
125        remove_className(tr_message, 'tr_msg_unread');
126        remove_className(tr_message, 'selected_msg');
[3840]127       
128        if( document.getElementById("td_message_unseen_"+msg_number) != null )
129                Element("td_message_unseen_"+msg_number).innerHTML = "<img src ='templates/"+template+"/images/seen.gif' title='"+get_lang('Seen')+"'>";
130       
[1443]131        connector.purgeCache();
[163]132        return true;
[2]133}
134
[605]135function msg_is_read(msg_number, selected){
136        tr_message = Element(msg_number);
[814]137        return !(tr_message && LTrim(tr_message.className).match('tr_msg_unread'))
[605]138}
139
[163]140function set_msg_as_unread(msg_number){
[2]141        tr_message = Element(msg_number);
[1412]142        if ((exist_className(tr_message, 'tr_msg_read') || exist_className(tr_message, 'tr_msg_read2')) && (!exist_className(tr_message, 'tr_msg_unread')))
[3369]143                increment_folder_unseen();
[163]144        remove_className(tr_message, 'selected_msg');
145        add_className(tr_message, 'tr_msg_unread');
[4782]146        if( document.getElementById("td_message_unseen_"+msg_number) != null )
[3369]147        Element("td_message_unseen_"+msg_number).innerHTML = "<img src ='templates/"+template+"/images/unseen.gif' title='"+get_lang('Unseen')+"'>";
[2]148}
149
[163]150function set_msg_as_flagged(msg_number){
151        var msg = Element(msg_number);
152        remove_className(msg, 'selected_msg');
153        add_className(msg, 'flagged_msg');
[4782]154        if( document.getElementById("td_message_important_"+msg_number) != null )
[994]155        Element("td_message_important_"+msg_number).innerHTML = "<img src ='templates/"+template+"/images/important.gif' title='"+get_lang('Important')+"'>";
[2]156}
157
[163]158function set_msg_as_unflagged(msg_number){
159        var msg = Element(msg_number);
160        remove_className(msg, 'selected_msg');
161        remove_className(msg, 'flagged_msg');
[4782]162        if( document.getElementById("td_message_important_"+msg_number) != null )
[994]163        Element("td_message_important_"+msg_number).innerHTML = "&nbsp;&nbsp;&nbsp;";
[2]164}
165
[845]166function removeAll(id){
167        do
168        {
169                if (typeof(Element(id)) == 'undefined')
170                        break;
171                Element(id).parentNode.removeChild(Element(id));
172        }
173        while(Element(id));
174}
175
[2]176function get_current_folder(){
177        return current_folder;
178}
179
180// Kill current box (folder or page).
181function kill_current_box(){
182        var box = document.getElementById("table_box");
183        if (box != null)
184                box.parentNode.removeChild(box);
[320]185        else
186                return false;
[2]187}
188
189// Kill current paging.
190function kill_current_paging(){
191        var paging = Element("span_paging");
192        if (paging != null)
193                paging.parentNode.removeChild(paging);
194}
195
[412]196function show_hide_span_paging(ID){
[3380]197        if ((ID != "0") && Element("span_paging"))
198                Element("span_paging").style.display = 'none';
199        else
200                if (Element("span_paging"))
201                        Element("span_paging").style.display = '';
[412]202}
203
[2]204//Get the current number of messages in a page.
205function get_messages_number_in_page(){
206        //Get element tBody.
207        main = document.getElementById("tbody_box");
[3369]208
[2]209        // Get all TR (messages) in tBody.
210        main_list = main.childNodes;
[3369]211
[2]212        return main_list.length;
213}
214
[689]215function download_local_attachment(url) {
[3270]216        url=encodeURI(url);
217        url=url.replace("%25","%");
[689]218        if (div_attachment == null){
219                var div_attachment = document.createElement("DIV");
220                div_attachment.id="id_div_attachment";
221                document.body.appendChild(div_attachment);
222        }
223        div_attachment.innerHTML="<iframe style='display:none;width:0;height:0' name='attachment' src='"+url+"'></iframe>";
224}
225
[271]226function download_attachments(msg_folder, msg_number, idx_file, msg_part, encoding, new_file_name, show_iframe){
[2]227        div_attachment = document.getElementById("id_div_attachment");
228        var params = '';
[3369]229
[2]230        if (div_attachment == null){
231                var div_attachment = document.createElement("DIV");
232                div_attachment.id="id_div_attachment";
233                document.body.appendChild(div_attachment);
234        }
235        if(new_file_name)
[3018]236                params = "&newfilename="+escape(new_file_name);
[2]237        if(encoding)
238                params += "&encoding="+encoding;
[271]239
[5]240        div_attachment.innerHTML="<iframe style='display:none;width:0;height:0' name='attachment' src='inc/gotodownload.php?msg_folder="+msg_folder+"&msg_number="+msg_number+"&idx_file="+idx_file+"&msg_part="+msg_part+params+"'></iframe>";
[2]241}
[271]242
[2]243function download_all_attachments(msg_folder, msg_number){
[3369]244        var handler_source = function(data){
[2]245                download_attachments(null, null, data, null,null,'anexos.zip');
246        }
247        cExecute("$this.exporteml.download_all_attachments",handler_source,"folder="+msg_folder+"&num_msg="+msg_number);
248}
[689]249//ADD forwarded files
[3387]250function addForwardedFile(id_border,file_name,link,divFiles){
251        if(!divFiles)
252                divFiles = document.getElementById("divFiles_"+id_border);
[689]253
254        if (! divFiles)
255                return false;
[3369]256
[689]257        if (divFiles.lastChild)
258                var countDivFiles = parseInt(divFiles.lastChild.id.split('_')[2]) + 1;
259
260        if (! countDivFiles)
261                var countDivFiles = 1;
[3369]262
[689]263        divFile = document.createElement('DIV');
264
[3369]265
[1121]266        if (!expresso_offline) {
267                if (!is_ie) {
268                        var inputFile = document.createElement("INPUT");
[3369]269
[1121]270                        var tmp_id_border = document.createAttribute('id_border');
271                        tmp_id_border.value = id_border;
[3369]272
[1121]273                        inputFile.setAttributeNode(tmp_id_border);
274                        inputFile.id = "inputFile_" + id_border + "_" + countDivFiles;
275                        inputFile.type = 'file';
276                        inputFile.size = 50;
277                        inputFile.maxLength = 255;
278                        inputFile.name = 'file_' + countDivFiles;
279                        inputFile.style.display = "none";
280                }
281                else {
282                        var inputFile = document.createElement("link");
[3369]283
[1121]284                        var tmp_id_border = document.createAttribute('id_border');
285                        tmp_id_border.value = id_border;
[3369]286
[1121]287                        inputFile.setAttributeNode(tmp_id_border);
288                        inputFile.id = "inputFile_" + id_border + "_" + countDivFiles;
289                        inputFile.name = 'file_' + countDivFiles;
[3369]290
291
[1121]292                }
[3369]293
[689]294        }
295        else {
[1121]296                var inputFile = document.createElement("input");
297                inputFile.type = 'hidden';
298                inputFile.name = 'offline_forward_' + countDivFiles;
[3369]299        }
[1121]300        divFile.appendChild(inputFile);
[689]301
302        var a_tmp = new Array();
303        a_tmp[0] = "local_";
304        a_tmp[1] = 'file_' + countDivFiles;
305        a_tmp[2] = file_name;
306        s_tmp = escape(connector.serialize(a_tmp));
307        var checkbox = document.createElement("INPUT");
308        checkbox.type = "checkbox";
309        checkbox.id = "checkbox_"+id_border+"_"+countDivFiles;
310        checkbox.name = "local_attachments[]";
[3369]311
[689]312        checkbox.value = s_tmp;
313        divFile.appendChild(checkbox);
[3369]314
[689]315        var link_attachment = document.createElement("A");
316        link_attachment.setAttribute("href", link);
[3369]317
[689]318        link_attachment.innerHTML = file_name;
319        divFile.appendChild(link_attachment);
[3369]320
[689]321        countDivFiles++;
[3369]322        divFile.id = "divFile_"+id_border+"_"+countDivFiles;
[689]323        divFiles.appendChild(divFile);
324
325        checkbox.checked = true; //Incrível, mas no Internet Explorer o checked só funciona efetivamente se o elemente já estiver renderizado... por isso só aqui eu seleciono ele...
326        return inputFile;
327}
328
[2]329// Add Input File Dynamically.
330function addFile(id_border){
331        divFiles = document.getElementById("divFiles_"+id_border);
[320]332        if (! divFiles)
333                return false;
[3369]334
[271]335        if (divFiles.lastChild)
336                var countDivFiles = parseInt(divFiles.lastChild.id.split('_')[2]) + 1;
337
338        if (! countDivFiles)
339                var countDivFiles = 1;
[3369]340
[4683]341        divFile = document.createElement('div');
[3369]342
[4683]343        var inputFile = document.createElement("input");
344        inputFile.id        = "inputFile_"+id_border+"_"+countDivFiles;
345        inputFile.name      = "file_"+countDivFiles;
346        inputFile.type      = "file";
347        inputFile.size      = 50;
348        inputFile.maxlength = 255;
349        inputFile.onchange  = function () {
350            validateFileExtension(this.value, this.id.replace('input','div'), this.getAttribute('id_border'));
351            openTab.autosave_timer[id_border] = setTimeout("save_msg("+id_border+")", autosave_time);
352        };
[3369]353
[4683]354        inputFile.onfocus = function () {
355            if (openTab.autosave_timer[id_border])
356                clearTimeout(openTab.autosave_timer[id_border]);
357            };
[1121]358
[4683]359        divFile.appendChild(inputFile);
[3369]360
[4683]361        var linkFile = document.createElement("a");
362        linkFile.id        = "linkFile_"+id_border+"_"+countDivFiles;
363        linkFile.href      = 'javascript:void(0)';
364        linkFile.onclick   = function () {removeFile("divFile_"+id_border+"_"+countDivFiles); return false;};
365        linkFile.innerHTML = get_lang("Remove");
[689]366
[4683]367        divFile.appendChild(linkFile);
368        divFile.id = "divFile_"+id_border+"_"+countDivFiles;
369        divFiles.appendChild(divFile);
[1121]370
[4683]371        return inputFile;
[2]372}
373//      Remove Input File Dynamically.
374function removeFile(id){
[271]375        var border_id = id.substr(8,1);
[2]376        var el = Element(id);
377        el.parentNode.removeChild(el);
378}
379
380function validateFileExtension(fileName, id, id_border){
[3369]381
[271]382        var error_flag  = false;
[320]383
384        if ( fileName.indexOf('/') != -1 )
385        {
386                if (fileName[0] != '/'){ // file name is windows format?
387                        var file = fileName.substr(fileName.lastIndexOf('\\') + 1, fileName.length);
388                        if ((fileName.indexOf(':\\') != 1) && (fileName.indexOf('\\\\') != 0)) // Is stored in partition or a network file?
[3369]389                                error_flag = true;
[320]390                }
391                else // is Unix
[3369]392                        var file = fileName.substr(fileName.lastIndexOf('/') + 1, fileName.length);
[271]393        }
[320]394        else  // is Firefox 3
395                var file = fileName;
[271]396
397        var fileExtension = file.split(".");
[2]398        fileExtension = fileExtension[(fileExtension.length-1)];
399        for(var i=0; i<denyFileExtensions.length; i++)
400        {
401                if(denyFileExtensions[i] == fileExtension)
402                {
[271]403                        error_flag = true;
404                        break;
[2]405                }
[3369]406
[2]407        }
[271]408
[320]409        if ( error_flag == true )
410        {
[271]411                alert(get_lang('File extension forbidden or invalid file') + '.');
412                removeFile(id);
413                addFile(id_border);
414                return false;
415        }
416        return true;
[2]417}
418
419var setTimeout_write_msg = 0;
[3742]420var old_msg = false;   
[197]421// Funcao usada para escrever mensagem
422// notimeout = True : mensagem nao apaga
[3369]423function write_msg(msg, notimeout){
424
[2]425        if (setTimeout_write_msg)
426                clearTimeout(setTimeout_write_msg);
[3369]427
[80]428        var msg_div = Element('em_div_write_msg');
[2]429        var old_divStatusBar = Element("divStatusBar");
430
[80]431        if(!msg_div) {
432                msg_div = document.createElement('DIV');
433                msg_div.id = 'em_div_write_msg';
[831]434                msg_div.className = 'em_div_write_msg';
[80]435                old_divStatusBar.parentNode.insertBefore(msg_div,old_divStatusBar);
[447]436        }
[3369]437
[447]438        if( document.getElementById('JabberMessenger'))
[651]439                loadscript.adIcon();
[447]440
[831]441        msg_div.innerHTML = '<table width="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><th width="40%"></th><th noWrap class="action_info_th">'+msg+'</th><th width="40%"></th></tr></tbody></table>';
[651]442
[80]443        old_divStatusBar.style.display = 'none';
[3369]444        msg_div.style.display = '';
[2]445        // Nao ponha var na frente!! jakjr
446        handle_write_msg = function(){
447                try{
[197]448                        if(!old_msg)
449                                clean_msg();
450                        else
[3369]451                                write_msg(old_msg, true);
[2]452                }
453                catch(e){}
454        }
[197]455        if(notimeout)
456                old_msg = msg;
457        else
458                setTimeout_write_msg = setTimeout("handle_write_msg();", 5000);
[2]459}
[197]460// Funcao usada para apagar mensagem sem timeout
461function clean_msg(){
462        old_msg = false;
463        var msg_div = Element('em_div_write_msg');
464        var old_divStatusBar = Element("divStatusBar");
465        if(msg_div)
466                msg_div.style.display = 'none';
[3369]467        old_divStatusBar.style.display = '';
[197]468}
[2]469
470function make_body_reply(body, to, date_day, date_hour){
471        to = to.replace("<","&lt;");
472        to = to.replace(">","&gt;");
473        block_quoted_body ="<br><br>";
[197]474        block_quoted_body += get_lang('At %1, %2 hours, %3 wrote:', date_day, date_hour, to);
[2]475        block_quoted_body += "<blockquote style=\"border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;\">";
476        block_quoted_body += body;
477        block_quoted_body += "</blockquote>";
478        return block_quoted_body;
479}
480
481function make_forward_body(body, from, date, subject, to, cc){
482        from = from.replace(/</g,"&lt;");
483        from = from.replace(/>/g,"&gt;");
484        to = to.replace(/</g,"&lt;");
485        to = to.replace(/>/g,"&gt;");
486        var forward_body = '<BR><BR>---------- ' + get_lang('Forwarded message') + ' ----------<BR>';
487        forward_body += get_lang('From') + ': ' + from + '<BR>';
488        forward_body += get_lang('Date') + ': ' + date + '<BR>';
489        forward_body += get_lang('Subject') + ': ' + subject + '<BR>';
490        forward_body += get_lang('To') + ': ' + to+ '<BR>';
491        if(cc != undefined){
492                cc = cc.replace(/</g,"&lt;");
493                cc = cc.replace(/>/g,"&gt;");
494                forward_body += get_lang('CC') + ': ' + cc+ '<BR><BR>';
495        }
496        forward_body += body;
497        return forward_body;
498}
499
500function emMessageSearch(e,value){
501        var     e  = is_ie ? window.event : e;
502        if(e.keyCode == 13) {
503                search_emails(value);
504        }
505}
506
[3227]507function validateEmail(email){
508        if (typeof(email) != 'string')
509                return false;
[3725]510        var validName = /^[a-z0-9][a-z-_0-9\.]*/i;
[3227]511        emailParts = email.split('@');
512        return (validName.test(emailParts[0]) && validateDomain(emailParts[1]));
513}
514function validateDomain(domain){
515        var domainReg = /^(([A-Za-z\d][A-Za-z\d-]{0,61}[A-Za-z\d]\.)+[A-Za-z]{2,6}|\[\d{1,3}(\.\d{1,3}){3}\])$/i;
516        return (domainReg.test(domain));
517}
518
519function validateUrl(url){
520        var urlReg = /([A-Za-z]{2,7}:\/\/)(.*)/i;
521        urlParts = url.split(urlReg);
522        return (urlParts[1].length > 4 &&  validateDomain(urlParts[2]));
523}
[3581]524
525function performQuickSearch(keyword){
526        if (preferences.quick_search_default=='1')
527                emQuickSearch(keyword, 'null', 'null');
528        else
529                search_emails(keyword);
530}
531
[2]532function emQuickSearch(emailList, field, ID){
533        var quickSearchKeyBegin;
534        var quickSearchKeyEnd;
[1121]535        if(expresso_offline) {
536                alert(get_lang('Not allowed in offline mode'));
537                return;
538        }
[3871]539        if ((field != 'null') && (ID != 'null'))
540        {
541                connector.loadScript("QuickCatalogSearch");
542                if (typeof(QuickCatalogSearch) == 'undefined'){
543                        setTimeout('emQuickSearch("'+emailList+'", "'+field+'", "'+ID+'")',500);
544                        return false;
545                }
546        }
547        else
548        {
549                connector.loadScript("QuickSearchUser");
550                if (typeof(QuickSearchUser) == 'undefined'){
551                        setTimeout('emQuickSearch("'+emailList+'", "'+field+'", "'+ID+'")',500);
552                        return false;
553                }
554        }       
[3369]555
[37]556        var handler_emQuickSearch = function(data)
557        {
[2]558                window_DropDownContacts = Element('tipDiv');
559                if (window_DropDownContacts.style.visibility != 'hidden'){
560                        window_DropDownContacts.style.visibility = 'hidden';
561                }
[3369]562
[2]563                if ((!data.status) && (data.error == "many results")){
564                        alert(get_lang('More than %1 results. Please, try to refine your search.',200));
565                        return false;
566                }
[3369]567
[2]568                if (data.length > 0){
[37]569                        if ((field != 'null') && (ID != 'null'))
570                        {
571                                QuickCatalogSearch.showList(data, quickSearchKeyBegin, quickSearchKeyEnd);
572                        }
573                        else
574                        {
575                                QuickSearchUser.showList(data);
576                        }
[2]577                }
578                else
579                        alert(get_lang('None result was found.'));
580                return true;
581        }
[3369]582
[37]583        if ((field != 'null') && (ID != 'null'))
584        {
[341]585                Element(field +'_'+ ID).focus(); //It requires for IE.
[37]586                var i = getPosition(Element(field +'_'+ ID)); //inputBox.selectionStart;
587                var j = --i;
[2]588
[37]589                // Acha o inicio
590        while ((j >= 0) && (emailList.charAt(j) != ',')){j--};
591            quickSearchKeyBegin = ++j;
[2]592
[37]593            // Acha o final
594        while ((i <= emailList.length) && (emailList.charAt(i) != ',')){i++};
595            quickSearchKeyEnd = i;
[2]596
[37]597            // A Chave da Pesquisa
598        var search_for = trim(emailList.substring(quickSearchKeyBegin, quickSearchKeyEnd));
599        }
600        else
601                var search_for = emailList;
[3369]602
[1610]603        if (search_for.length < preferences.search_characters_number){
604            alert(get_lang('Your search argument must be longer than %1 characters.', preferences.search_characters_number));
605            return false;
[2]606        }
[3369]607
[2]608        cExecute ("$this.ldap_functions.quicksearch&search_for="+search_for+"&field="+field+"&ID="+ID, handler_emQuickSearch);
609}
610
611function folderbox(){
612        connector.loadScript("TreeS");
[3068]613        if (typeof(ttree) == 'undefined'){
614                setTimeout('folderbox()',500);
615                return false;
616        }
[2]617        ttree.make_Window();
618}
619
620function filterbox(){
621        connector.loadScript("filter");
622        connector.loadScript("filters");
[3068]623        if (typeof(filters) == 'undefined')
624        {
625                 setTimeout('filterbox()',500);
626                 return false;
627        }
[2]628        filters.Forms();
629}
630
631function sharebox(){
632        var handler_imap_getacl = function(data)
633        {
634                var options = '';
635                for (var x in data)
636                {
637                        options += "<option value='"+data[x].uid+"'>"+data[x].cn+"</option>";
638                }
639                connector.loadScript("sharemailbox");
[3068]640                if (typeof(sharemailbox) == 'undefined')
641                {
642                        setTimeout('sharebox()',500);
643                        return false;
644                }
[2]645                sharemailbox.makeWindow(options);
646        }
647        cExecute ("$this.imap_functions.getacl", handler_imap_getacl);
648}
649
[3178]650function open_rss(param){
651        connector.loadScript("news_edit");
652        if (typeof(news_edit) == 'undefined')
653        {
654                setTimeout('open_rss(\''+param+'\')',500);
655                return false;
656        }
657        news_edit.read_rss(param);
658        return true;
659}
660
661function editrss(){
662        connector.loadScript("news_edit");
663        if (typeof(news_edit) == 'undefined')
664        {
665                setTimeout('editrss()',500);
666                return false;
667        }
668        news_edit.makeWindow();
669}
670
671
672
673
[2]674function preferences_mail(){
[1186]675        location.href="../preferences/preferences.php?appname=expressoMail1_2";
[2]676}
677
678function search_emails(value){
[3068]679        connector.loadScript("TreeS");
[2]680        connector.loadScript("search");
[3068]681        if (typeof(EsearchE) == 'undefined' || typeof(ttree) == 'undefined'){
682                setTimeout('search_emails("'+value+'")',500);
683                return false;
684        }
[2]685        EsearchE.showForms(value);
686}
687
688function source_msg(id_msg,folder){
689        var num_msg = id_msg.substr(0,(id_msg.length - 2));
690        var handler_source = function(data){
[1899]691                download_attachments(null, null, data, null,null,'fonte_da_mensagem.eml');
[2]692        }
693        cExecute("$this.exporteml.export_msg",handler_source,"folder="+url_decode(folder)+"&msgs_to_export="+num_msg);
694}
695
696function url_encode(str){
[3068]697    var hex_chars = "0123456789ABCDEF";
698    var noEncode = /^([a-zA-Z0-9\_\-\.])$/;
699    var n, strCode, hex1, hex2, strEncode = "";
[2]700
[3068]701    for(n = 0; n < str.length; n++) {
702        if (noEncode.test(str.charAt(n))) {
703            strEncode += str.charAt(n);
704        } else {
705            strCode = str.charCodeAt(n);
706            hex1 = hex_chars.charAt(Math.floor(strCode / 16));
707            hex2 = hex_chars.charAt(strCode % 16);
708            strEncode += "%" + (hex1 + hex2);
709        }
710    }
[4851]711   
[3068]712    return strEncode;
713}
[2]714
[3068]715function url_decode(str) {
716        var n, strCode, strDecode = "";
717        for (n = 0; n < str.length; n++) {
[3369]718            strDecode += str.charAt(n);
719            //if (str.charAt(n) == "%") {
720            //    strCode = str.charAt(n + 1) + str.charAt(n + 2);
721            //    strDecode += String.fromCharCode(parseInt(strCode, 16));
722            //    n += 2;
723            //} else {
724            //    strDecode += str.charAt(n);
725            //}
[3068]726        }
727        return strDecode;
728}
[2]729
[4851]730function url_decode_s(str) {
731        var n, strCode, strDecode = "";
732        for (n = 0; n < str.length; n++) {
733            if (str.charAt(n) == "%") {
734                strCode = str.charAt(n + 1) + str.charAt(n + 2);
735                strDecode += String.fromCharCode(parseInt(strCode, 16));
736                n += 2;
737            } else {
738                strDecode += str.charAt(n);
739            }
740        }
741        return strDecode;
742}
743
[569]744function Element (el) {
745        return  document.getElementById(el);
[2]746}
747
748function getPosition(obj)
749{
750        if(typeof obj.selectionStart != "undefined")
751        {
752        return obj.selectionStart;
753        }
754        else if(document.selection && document.selection.createRange)
755        {
756                var M = document.selection.createRange();
757                try
758                {
759                        var Lp = M.duplicate();
760                        Lp.moveToElementText(obj);
761                }
762                catch(e)
763                {
764                        var Lp=obj.createTextRange();
765                }
[3369]766
[2]767                Lp.setEndPoint("EndToStart",M);
768                var rb=Lp.text.length;
[3369]769
[2]770                if(rb > obj.value.length)
771                {
772                        return -1;
773                }
774                return rb;
775        }
776}
777
778function trim(inputString) {
[3369]779   if (typeof inputString != "string")
[2]780        return inputString;
[3369]781
[2]782   var retValue = inputString;
783   var ch = retValue.substring(0, 1);
[3369]784   while (ch == " ") {
[2]785          retValue = retValue.substring(1, retValue.length);
786          ch = retValue.substring(0, 1);
787   }
788   ch = retValue.substring(retValue.length-1, retValue.length);
[3369]789   while (ch == " ") {
[2]790          retValue = retValue.substring(0, retValue.length-1);
791          ch = retValue.substring(retValue.length-1, retValue.length);
792   }
[3369]793   while (retValue.indexOf("  ") != -1) {
794          retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length);
[2]795   }
[3369]796   return retValue;
[2]797}
798
799function increment_folder_unseen(){
800        var folder_id = get_current_folder();
[812]801
[2]802        var folder_unseen = Element('dftree_'+folder_id+'_unseen');
[406]803        var abas_unseen = Element('new_m').innerHTML;
[3742]804    abas_unseen = abas_unseen.match(/(<font.*?>){0,1} *([0-9]+) *(<\/font>){0,1}/)[2];
[406]805
[2]806        if (folder_unseen)
807                folder_unseen.innerHTML = (parseInt(folder_unseen.innerHTML) + 1);
808        else
809        {
[823]810                tree_folders.getNodeById(folder_id).alter({caption: tree_folders.getNodeById(current_folder).caption + '<font style=color:red>&nbsp(</font><span id="dftree_'+current_folder+'_unseen" style=color:red>1</span><font style=color:red>)</font>'});
[2]811                tree_folders.getNodeById(folder_id)._refresh();
812        }
[3742]813
814        if( abas_unseen == NaN || abas_unseen == undefined )
815                abas_unseen = 1;
816        else
[812]817                abas_unseen = parseInt(abas_unseen) + 1;
[3742]818
819        Element('new_m').innerHTML = '<font style="color:red">' + abas_unseen + '</font>';
820       
[1000]821        if ( current_folder.indexOf( 'INBOX' ) !== 0 && current_folder.indexOf( 'local_' ) !== 0 )
[823]822        {
823                var display_unseen_in_shared_folders = Element('dftree_user_unseen');
824                if ( display_unseen_in_shared_folders )
825                        tree_folders.getNodeById( 'user' ).alter({caption:'<font style=color:red>[</font><span id="dftree_user_unseen" style="color:red">' + ( parseInt( display_unseen_in_shared_folders.innerHTML) + 1 ) + '</span><font style=color:red>]</font>' + get_lang("Shared folders")});
826                else
827                        tree_folders.getNodeById( 'user' ).alter({caption:'<font style=color:red>[</font><span id="dftree_user_unseen" style="color:red">1</span><font style=color:red>]</font>' + get_lang("Shared folders")});
828                tree_folders.getNodeById( 'user' )._refresh();
829        }
830        var display_unseen_in_mailbox = Element('dftree_root_unseen');
[1121]831        if(!expresso_offline)
832                var node_to_refresh = 'root';
833        else
834                var node_to_refresh = 'local_root';
835        tree_folders.getNodeById( node_to_refresh )._refresh();
[2]836}
[3742]837
[2]838function decrement_folder_unseen(){
839        var folder_id = get_current_folder();
[812]840
[2]841        var folder_unseen = Element('dftree_'+folder_id+'_unseen');
[406]842        var abas_unseen = Element('new_m').innerHTML;
[3742]843    abas_unseen = abas_unseen.match( /(<font.*?>){0,1} *([0-9]+) *(<\/font>){0,1}/)[2];
[406]844
845        if(!folder_unseen || !abas_unseen)
[2]846                return;
847
848        if ((folder_unseen) && (parseInt(folder_unseen.innerHTML) > 1))
849        {
850                folder_unseen.innerHTML = (parseInt(folder_unseen.innerHTML) - 1);
851        }
852        else if (parseInt(folder_unseen.innerHTML) <= 1)
853        {
854                var tmp_folder_name = tree_folders.getNodeById(folder_id).caption.split('<');
855                var folder_name = tmp_folder_name[0];
856                tree_folders.getNodeById(folder_id).alter({caption: folder_name});
857                tree_folders.getNodeById(folder_id)._refresh();
858        }
[3742]859        if (parseInt(abas_unseen) > 1) {
860        Element('new_m').innerHTML = '<font style="color:red">' + (parseInt(abas_unseen) - 1) + '</font>';
861        } else {
[470]862                Element('new_m').innerHTML = '0';
[406]863        }
[823]864        if ( current_folder.indexOf( 'INBOX' ) !== 0 )
865        {
866                var display_unseen_in_shared_folders = Element('dftree_user_unseen');
867                if ( display_unseen_in_shared_folders )
868                {
869                        var unseen_in_shared_folders = parseInt( display_unseen_in_shared_folders.innerHTML );
870                        unseen_in_shared_folders--;
871                        if ( unseen_in_shared_folders > 0 )
872                                tree_folders.getNodeById( 'user' ).alter({caption:'<font style=color:red>[</font><span id="dftree_root_unseen" style="color:red">' + unseen_in_shared_folders + '</span><font style=color:red>]</font>' + get_lang("My Folders")});
873                        else
874                                tree_folders.getNodeById( 'user' ).alter({caption:get_lang("Shared folders")});
875                        tree_folders.getNodeById( 'user' )._refresh();
876                }
877        }
878        var display_unseen_in_mailbox = Element('dftree_root_unseen');
879        if ( display_unseen_in_mailbox )
880        {
881                var unseen_in_mailbox = parseInt( display_unseen_in_mailbox.innerHTML );
882                unseen_in_mailbox--;
883                //if ( unseen_in_mailbox > 0 )
884                //      tree_folders.getNodeById( 'root' ).alter({caption:'<font style=color:red>[</font><span id="dftree_root_unseen" style="color:red">' + unseen_in_mailbox + '</span><font style=color:red>]</font>' + get_lang("My Folders")});
885                //else
[1121]886                if(!expresso_offline)
887                        var node_to_refresh = 'root';
888                else
889                        var node_to_refresh = 'local_root';
890                tree_folders.getNodeById( node_to_refresh ).alter({caption:get_lang("My Folders")});
891                tree_folders.getNodeById( node_to_refresh )._refresh();
[823]892        }
[2]893}
894
895function LTrim(value){
896        var w_space = String.fromCharCode(32);
897        var strTemp = "";
898        var iTemp = 0;
[812]899
[814]900        var v_length = value ? value.length : 0;
[2]901        if(v_length < 1)
902                return "";
903
904        while(iTemp < v_length){
905                if(value && value.charAt(iTemp) != w_space){
906                        strTemp = value.substring(iTemp,v_length);
907                        break;
908                }
909                iTemp++;
[812]910        }
[2]911        return strTemp;
912}
913
914//changes MENU background color.
915function set_menu_bg(menu)
916{
917        menu.style.backgroundColor = 'white';
918        menu.style.border = '1px solid black';
[814]919        menu.style.padding = '0px 0px';
[2]920}
921//changes MENU background color.
922function unset_menu_bg(menu)
923{
924        menu.style.backgroundColor = '';
[814]925        menu.style.border = '0px';
926        menu.style.padding = '1px 0px';
[2]927}
928
[46]929function array_search(needle, haystack) {
930        var n = haystack.length;
931        for (var i=0; i<n; i++) {
932                if (haystack[i]==needle) {
933                        return true;
934                }
935        }
936        return false;
[96]937}
938
[812]939function lang_folder(fn) {
[689]940        if (fn.toUpperCase() == "INBOX") return get_lang("Inbox");
[365]941        if (special_folders[fn] && typeof(special_folders[fn]) == 'string') {
[96]942                return get_lang(special_folders[fn]);
[673]943        }
[96]944        return fn;
[812]945}
[163]946
947function add_className(obj, className){
[651]948        if (obj && !exist_className(obj, className))
[163]949                obj.className = obj.className + ' ' + className;
950}
951
952function remove_className(obj, className){
953        var re = new RegExp("\\s*"+className);
[320]954        if (obj)
[976]955                obj.className = obj.className.replace(re, ' ');
[163]956}
957
958function exist_className(obj, className){
[651]959        return ( obj && obj.className.indexOf(className) != -1 )
[163]960}
961
962function select_all_messages(select)
963{
964        var main = Element("tbody_box");
965        var main_list = main.childNodes;
966        var len_main_list = main_list.length;
[3369]967
[163]968        if (select)
969        {
970                for (i=0; i<len_main_list; i++)
971                {
972                        Element("check_box_message_"+main_list[i].id).checked = true;
[4782]973                        add_className(Element(main_list[i].id), 'selected_msg'); // one by one to add only if does not exist yet
974                        add_className(Element(main_list[i].id), 'selected_shortcut_msg'); // one by one to add only if does not exist yet
[163]975                }
976        }
977        else
978        {
979                for (i=0; i<len_main_list; i++)
980                {
981                        Element("check_box_message_"+main_list[i].id).checked = false;
[4782]982                        remove_className(Element(main_list[i].id), 'selected_msg'); // one by one to remove
983                        remove_className(Element(main_list[i].id), 'selected_shortcut_msg'); // one by one to remove
[163]984                }
985        }
986}
[1622]987
[3064]988function borkb(size){
989        kbyte = 1024;
990        mbyte = kbyte*1024;
991        gbyte = mbyte*1024;
992        if (!size)
993                size = 0;
994        if (size < kbyte)
995                return size + ' B';
996        else if (size < mbyte)
997                return parseInt(size/kbyte) + ' KB';
998        else if (size < gbyte)
999                if (size/mbyte > 100)
1000                        return (size/mbyte).toFixed(0) + ' MB';
1001                else
1002                        return (size/mbyte).toFixed(1) + ' MB';
1003        else
1004                return (size/gbyte).toFixed(1) + ' GB';
1005}
[3018]1006
[1622]1007function validate_date(date){
1008    if (date.match(/^[0-3][0-9]\/[0-1][0-9]\/\d{4,4}$/))
1009    {
1010        tmp = date.split('/');
1011
1012        day = new Number(tmp[0]);
1013        month = new Number(tmp[1]);
1014        year = new Number(tmp[2]);
1015        if (month >= 1 && month <= 12 && day >= 1 && day <= 31)
1016        {
1017            if (month == 02 && day <= 29)
1018            {
1019                return true;
1020            }
1021            return true;
1022        }
1023        else
1024            {
1025                return false;
1026            }
1027    }
1028    else
1029        {
1030            return false;
1031        }
1032}
[3834]1033
1034function dateMask(inputData, e){
1035        if(document.all) // Internet Explorer
1036                var tecla = event.keyCode;
1037        else //Outros Browsers
1038                var tecla = e.which;
1039
1040        if(tecla >= 47 && tecla < 58){ // numeros de 0 a 9 e "/"
1041                var data = inputData.value;
1042                if (data.length == 2 || data.length == 5){
1043                        data += '/';
1044                        inputData.value = data;
1045                }
1046        } else {
1047                if(tecla == 8 || tecla == 0) // Backspace, Delete e setas direcionais(para mover o cursor, apenas para FF)
1048                        return true;
1049                else
1050                        return false;
1051        }
[4582]1052}
1053
1054function translateFolder(folderName){
1055
1056    for (var i = 0; i < folders.length; i++)
1057    {
1058        if (folders[i].folder_parent == 'user'
1059            && folderName == folders[i].folder_id.split(cyrus_delimiter).pop())
1060        {
1061            if (folders[i].folder_id.split(cyrus_delimiter).pop() != folders[i].folder_name)
1062            {
1063                return folders[i].folder_name;
1064            }
1065        }
1066    }
1067
1068    return folderName;
[3834]1069}
Note: See TracBrowser for help on using the repository browser.