Changeset 12


Ignore:
Timestamp:
04/03/07 16:30:17 (17 years ago)
Author:
niltonneto
Message:

* empty log message *

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/contactcenter/doc/change_log.txt

    r2 r12  
    88contactcenter/templates/default. Essa alteraçao foi feita para corrigir bug que ocorre qdo 
    99se cria um template com nome diferente de celepar. 
     10 
     1102/04/2007 - [1.0.006] 
     12- Código que carrega foto do usuário, vindo do LDAP, foi alterado para usar o cache do navegador, 
     13diminuindo o acesso ao LDAP; 
     14- Código que filtra para buscar os grupos de usuários foi comentado, pois dá problema na visualização. 
     15Atualmente o Catálogo de Endereços só lista usuários e listas. 
  • trunk/contactcenter/inc/class.ui_data.inc.php

    r2 r12  
    627627                                                                                'value' => 'u' 
    628628                                                                                ), 
    629                                                                                 1 => array( 
     629                                                                                /*1 => array( 
    630630                                                                                'field' => 'contact.account_type', 
    631631                                                                                'type'  => '=', 
    632632                                                                                'value' => 'g' 
    633                                                                                 ), 
     633                                                                                ),*/ 
    634634                                                                                2 => array( 
    635635                                                                                'field' => 'contact.account_type', 
     
    709709                                                                        'value' => 'u' 
    710710                                                                        ), 
    711                                                                         1 => array( 
     711                                                                        /*1 => array( 
    712712                                                                        'field' => 'contact.account_type', 
    713713                                                                        'type'  => '=', 
    714714                                                                        'value' => 'g' 
    715                                                                         ), 
     715                                                                        ),*/ 
    716716                                                                        2 => array( 
    717717                                                                        'field' => 'contact.account_type', 
     
    10321032 
    10331033                                //      If contact is a public list, then load the forwarding addresses. 
    1034                                 if($contact['account_type'][0] == 'l') 
    1035                                         $final[3][$i][7] = array(); 
    1036  
    1037                                         $final[4][$i] = $contact['photo'] ? 1 : 0; 
     1034                                        if($contact['account_type'][0] == 'l') 
     1035                                                $final[3][$i][7] = array(); 
     1036 
     1037                                        $final[4][$i] = $contact['photo'] ? 1  : 0; 
    10381038                                        $i++; 
    10391039                                } 
     
    19021902                        return; 
    19031903                } 
    1904  
    19051904                 
    19061905                /*! 
  • trunk/contactcenter/js/cc.js

    r2 r12  
    19031903                                                                var id_contact = data[3][pos][k]; 
    19041904                                                                Element(id+':'+data[2][k]).value = data[3][pos][k]; 
    1905                                                                 if (data[4][pos] == 1) 
    1906                                                                 { 
    1907                                                                         Element(id+':cc_photo').src = '../index.php?menuaction=contactcenter.ui_data.data_manager&method=get_photo&id='+data[3][pos][k]+'&none=' + Math.random(); 
    1908                                                                 } 
    1909                                                                 else 
    1910                                                                 { 
    1911                                                                         Element(id+':cc_photo').src = '../index.php?menuaction=contactcenter.ui_data.data_manager&method=get_photo'; 
    1912                                                                 } 
     1905                                                                Element(id+':cc_photo').src = '../index.php?menuaction=contactcenter.ui_data.data_manager&method=get_photo' + (data[4][pos] != 0 ? '&id='+data[3][pos][k] : ''); 
    19131906                                                                if(ccTree.catalog_perms == 1) 
    19141907                                                                        Element(id+':cc_icon_data').innerHTML =  '<span title="Copiar para o Catálogo Pessoal" id="' + id + ':ccQuickAdd" onmouseout="window.status=\'\';" onclick="ccQuickAddContact.showList(\''+ Element(id+':cc_id').value + '\');return true;" style="cursor: pointer; cursor: hand; z-index: 1"><img src="templates/default/images/address-conduit-16.png" align="center"></span>'; 
  • trunk/expressoMail1_2/docs/change_log.txt

    r10 r12  
    6060mensagem, o atributo charset vinha em branco e ficava em outro lugar não padrão (parameters). 
    6161em outro parametro não padrão. 
     62- Adicionada funcionalidade que compatibiliza mensagens encapsuladas, e com formato 7bit, serem visualizadas no ExpressoMail. 
  • trunk/expressoMail1_2/inc/class.imap_functions.inc.php

    r6 r12  
    420420 
    421421                                } 
    422                                 else if($file_type == "message/rfc822"){                                         
     422                                else if($file_type == "message/rfc822"){ 
     423                                         
    423424                                        include_once("class.imap_attachment.inc.php"); 
    424425                                        $att = new imap_attachment(); 
     
    610611                $body = base64_decode($body); 
    611612        } 
    612          
     613        else if ($encoding == '7bit')  
     614        { 
     615                $body = quoted_printable_decode($body); 
     616        } 
    613617                // All other encodings are returned raw. 
    614618                if (strtolower($charset) == "utf-8") 
  • trunk/phpgwapi/templates/celepar/head.inc.php

    r2 r12  
    3232 
    3333        #_debug_array($GLOBALS['phpgw_info']['user']['preferences']['common']); 
    34         $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
     34        $theme_css = ".".$GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
    3535        if(!file_exists($theme_css)) 
    3636        { 
Note: See TracChangeset for help on using the changeset viewer.