source: branches/2.2/expressoMail1_2/js/common_functions.js @ 3369

Revision 3369, 28.6 KB checked in by rafaelraymundo, 14 years ago (diff)

Ticket #1293 - Acerta encaminhamento de msgs com nome de anexo com caracteres especiais.

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