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

Revision 3742, 28.6 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #981 - Corrigido atualizacao do filtro nao lida e lida

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