Ignore:
Timestamp:
11/25/13 11:59:53 (10 years ago)
Author:
angelo
Message:

Ticket #0000 - sincronizacao parcial das alteracoes do trunk com este sandbox

Location:
sandbox/2.5.1-evolucao
Files:
11 added
6 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.5.1-evolucao/contactcenter/setup/default_records.inc.php

    r2 r8261  
    1919        $oProc->query("insert into phpgw_cc_typeof_ct_addrs (id_typeof_contact_address,contact_address_type_name) values(1,'Comercial')");       
    2020        $oProc->query("insert into phpgw_cc_typeof_ct_addrs (id_typeof_contact_address,contact_address_type_name) values(2,'Residencial')"); 
     21  $oProc->query("ALTER TABLE phpgw_cc_groups SET WITH OIDS;"); 
    2122 
    2223        // Populate brazilian database. 
  • sandbox/2.5.1-evolucao/expressoMail1_2/js/draw_api.js

    r8212 r8261  
    41424142                                   e.preventDefault(); 
    41434143                        } 
    4144                          
     4144            if ( (e.keyCode == 8) && (input.val().length == 1) ){ 
     4145                $( this ).data( "autocomplete" ).close(); 
     4146            }                    
    41454147                        //SELECIONA O CONTATO E EVITA OUTROS COMANDOS 
    41464148                        if(e.keyCode == $.ui.keyCode.ENTER && $( this ).data( "autocomplete" ).menu.active){ 
     
    42444246        .focusout(function(e){ 
    42454247                var these = $(this); 
    4246                 // Função para monstar a caixinha de e-mail. 
     4248                // Função para montar a caixinha de e-mail. 
    42474249                function makeBoxMail(){ 
    42484250                        if(canMakeBox && !fastSearch){ 
     
    46164618            //EVENTO AO SELECIONAR UM CONTATO DINÂMICO 
    46174619            select: function( event, ui ) { 
    4618                 canMakeBox = false; 
     4620                canMakeBox = true; 
    46194621 
    46204622                event.preventDefault(); 
     
    46404642            delay : 300, 
    46414643            minLength: 0 
    4642         }).bind('catcompleteopen', function(event, ui) { 
     4644        }).bind('autocompleteopen', function(event, ui) { 
    46434645 
    46444646            $(this).data('is_open',true); 
    46454647 
    4646         }).bind('catcompleteclose', function(event, ui) { 
    4647  
    4648             canMakeBox = true; 
     4648        }).bind('autocompleteclose', function(event, ui) { 
     4649 
     4650            canMakeBox = false; 
    46494651            $(this).data('is_open',false); 
    4650  
     4652            $(this).blur().focus(); 
    46514653        }).data( "autocomplete" )._renderItem = function( ul, item ) { 
    46524654            var autocomplete = $(this)[0].element; 
     
    52295231        }*/ 
    52305232        }).css({ 
    5231         "height" : ($.browser.mozilla ? "15px" : "20px"),  
     5233        "height" : "20px",  
    52325234        // "width": (is_webkit ? "205px" : "100px"), 
    52335235        "width" : "205px", 
    5234         "margin-top" : ($.browser.mozilla ? "10px" : "0"), 
    5235         "margin-right" : (is_mozilla ? "30px" : "0"), 
     5236        "margin-top" : ($.browser.mozilla ? "3px" : "0"), 
     5237        "margin-right" : ($.browser.mozilla ? "15px" : "0"), 
    52365238        "border-width": "0 0 0px 0px",  
    52375239        "transform" : "rotate(-360deg) translate(5px, -0.5px) scale(1.1)",   
  • sandbox/2.5.1-evolucao/prototype/api/datalayer.js

    r6444 r8261  
    657657 
    658658        } 
     659     if( typeof DataLayer.storage.cache[':diff'] != 'object') 
     660     DataLayer.storage.cache[':diff'] = {}; 
    659661    }, 
    660662     
  • sandbox/2.5.1-evolucao/prototype/modules/calendar/js/helpers.js

    r8134 r8261  
    490490                        $('.qtip.qtip-blue.qtip-active').qtip('destroy');                                                
    491491                attendees  = {}; 
     492                DataLayer.rollback();//Limpa cache do datalayer 
    492493        }, 
    493494        beforeClose: function(event, ui) { 
  • sandbox/2.5.1-evolucao/prototype/modules/mail/js/foldertree.js

    r8199 r8261  
    785785                else 
    786786                { 
    787                     selected_li = $(this).parents(".head_folder").parent(); 
     787                    selected_li = $(this).parents("li:first"); 
    788788                    if($(this).parents(".head_folder").parent().find(".expandable-hitarea").length) 
    789789                    { 
  • sandbox/2.5.1-evolucao/zpush/backend/expresso/providers/calendarProvider.php

    r8131 r8261  
    358358                                break; 
    359359                            case 'd': 
    360                                 $mult = 3600; 
     360                                $mult = 1440; 
    361361                                break; 
    362362                            default: 
Note: See TracChangeset for help on using the changeset viewer.