Changeset 56


Ignore:
Timestamp:
08/17/07 10:26:24 (17 years ago)
Author:
niltonneto
Message:

* empty log message *

Location:
trunk
Files:
7 edited

Legend:

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

    r42 r56  
    33Nilton Emilio Buhrer Neto. 
    44 
     5--------------------------- NOTA IMPORTANTE -------------------------- 
     6 
     7A partir de Agosto de 2007, todos os registros de bugs aqui relatados foram 
     8transferidos para o site do ExpressoLivre, no Wiki-Trac do módulo. 
     9Vide: http://www.expressolivre.org/dev/wiki/calendar/changelog 
     10 
     11---------------------------------------------------------------------- 
    51227/07/2007 - [0.9.2] 
    613- Implementação de funcionalidade no hook_admin. O administrador poderá  
  • trunk/contactcenter/doc/change_log.txt

    r38 r56  
    33Nilton Emilio Buhrer Neto. 
    44 
     5--------------------------- NOTA IMPORTANTE -------------------------- 
    56 
     7A partir de Agosto de 2007, todos os registros de bugs aqui relatados foram 
     8transferidos para o site do ExpressoLivre, no Wiki-Trac do módulo. 
     9Vide: http://www.expressolivre.org/dev/wiki/contactcenter/changelog 
     10 
     11---------------------------------------------------------------------- 
    61227/02/2007 - [1.0.005] 
    713- Excluído o diretorio contactcenter/templates/celepar e seus arquivos foram movidos para 
  • trunk/contactcenter/js/cc_tree.js

    r2 r56  
    176176                                _this.tree.getNodeById(_this.actualLevel)._select(); 
    177177                                _this.setCatalog(_this.actualLevel); 
     178                                _this.expandTree(); 
     179 
    178180                        } 
    179181                }; 
     
    181183                Connector.newRequest(this.name+'actual', CC_url+'get_actual_catalog', 'GET', handler); 
    182184        } 
     185 
     186        ccCatalogTree.prototype.expandTree = function() { 
     187                for (i=0; i < this.tree._aNodes.length; i++) 
     188                        this._expandSubTree(this.tree._aNodes[i]); 
     189        } 
     190 
     191        ccCatalogTree.prototype._expandSubTree = function(node) { 
     192                if ( node._children == '' ) { 
     193                        return; 
     194                } 
     195                if (node._children != '') { 
     196                        for (i = 0; i <= node._children.length; i++) { 
     197                                if ( node._io == false ) 
     198                                        node.changeState(); 
     199                                this._expandSubTree(node._children[i]); 
     200                        } 
     201                } 
     202        } 
     203 
    183204 
    184205        ccCatalogTree.prototype._updateTree = function(level, open) 
     
    250271                        } 
    251272                }; 
    252                  
    253273                Connector.newRequest(this.name+'update', CC_url+'get_catalog_tree&level='+level, 'GET', handler); 
    254274        } 
  • trunk/contactcenter/setup/setup.inc.php

    r2 r56  
    1717        $setup_info['contactcenter']['name']      = 'contactcenter'; 
    1818        $setup_info['contactcenter']['title']     = 'ContactCenter'; 
    19         $setup_info['contactcenter']['version']   = '1.0.005'; 
     19        $setup_info['contactcenter']['version']   = '1.15'; 
    2020        $setup_info['contactcenter']['app_order'] = 4; 
    2121        $setup_info['contactcenter']['enable']    = 1; 
  • trunk/contactcenter/setup/tables_update.inc.php

    r2 r56  
    5656                return $GLOBALS['setup_info']['contactcenter']['currentver']; 
    5757        } 
     58        $test[] = '1.0.005'; 
     59        function contactcenter_upgrade1_0_005() { 
     60                $GLOBALS['setup_info']['contactcenter']['currentver'] = '1.14'; 
     61                return $GLOBALS['setup_info']['contactcenter']['currentver']; 
     62        } 
     63        $test[] = '1.14'; 
     64        function contactcenter_upgrade1_14() {                           
     65                $GLOBALS['phpgw_setup']->db->query("ALTER TABLE phpgw_cc_connections ALTER COLUMN connection_value TYPE varchar(100)"); 
     66                $GLOBALS['setup_info']['contactcenter']['currentver'] = '1.150'; 
     67                return $GLOBALS['setup_info']['contactcenter']['currentver']; 
     68        } 
    5869?> 
  • trunk/expressoMail1_2/inc/class.functions.inc.php

    r51 r56  
    2222                } 
    2323                                 
    24                 function getFilesJs($excludeFiles = '', $update_version = ''){ 
     24                function getFilesJs($includeFiles = '', $update_version = ''){ 
    2525                         
    2626                        $files = $this -> getDirContents('js'); 
    2727                        $str_files = ''; 
    2828                         
    29                         if($excludeFiles) { 
    30                                 $excludeFiles = explode(",",trim($excludeFiles)); 
     29                        if($includeFiles) { 
     30                                $includeFiles = explode(",",trim($includeFiles)); 
    3131                                // Bug fixed for array_search function 
    32                                 $excludeFiles[count($excludeFiles)] = $excludeFiles[0]; 
    33                                 $excludeFiles[0] = null; 
     32                                $includeFiles[count($includeFiles)] = $includeFiles[0]; 
     33                                $includeFiles[0] = null; 
     34                                // End Bug fixed. 
    3435                        }                                                                                                                
    35                         for($i = 0; $i < count($files); $i++) { 
    36                                  
     36                        for($i = 0; $i < count($files); $i++) {                          
    3737                                if(count(explode('.js',$files[$i])) > 1) { 
    38                                         if(!$excludeFiles || ($excludeFiles && !array_search(trim($files[$i]),$excludeFiles))){  
     38                                        if($includeFiles  && array_search(trim($files[$i]),$includeFiles)){      
    3939                                                $str_files .= "<script src='".$files[$i]."?".$update_version."' type='text/javascript'></script>";                                               
    4040                                        } 
  • trunk/expressoMail1_2/index.php

    r51 r56  
    6161        $GLOBALS['phpgw']->common->phpgw_footer(); 
    6262 
    63         // Include JS Files 
     63 
    6464        $obj = createobject("expressoMail1_2.functions"); 
    6565        echo "<script src='inc/load_lang.php?".$update_version."' type='text/javascript'></script>";     
    66         echo $obj -> getFilesJs("js/html2xhtml.js," . 
    67                                                         "js/ccQuickAdd.js,". 
    68                                                         "js/color_palette.js,". 
    69                                                         "js/QuickCatalogSearch.js,". 
    70                                                         "js/QuickSearchUser.js,". 
    71                                                         "js/preferences.js,". 
    72                                                         "js/search.js,". 
    73                                                         "js/filters.js,". 
    74                                                         "js/filter.js,". 
    75                                                         // Fix Firefox problem with loadScript. 
    76                                                         ($_GET['to'] ? "" : "js/rich_text_editor.js,"). 
    77                                                         "js/connector.js,". 
    78                                                         "js/globals.js,". 
    79                                                         "js/TreeS.js,". 
    80                                                         "js/TreeShow.js,". 
    81                                                         "js/sharemailbox.js,". 
    82                                                         "js/sniff_browser.js", 
     66         
     67        // INCLUDE the JS Files:  
     68        echo $obj -> getFilesJs("js/abas.js," . 
     69                                                        "js/common_functions.js," . 
     70                                                        "js/doiMenuData.js," . 
     71                                                        "js/drag_area.js," . 
     72                                                        "js/draw_api.js," . 
     73                                                        "js/DropDownContacts.js," . 
     74                                                        "js/InfoContact.js," . 
     75                                                        "js/main.js," . 
     76                                                        "js/rich_text_editor.js," .                                                      
     77                                                        "js/wfolders.js,", 
    8378                                                        $GLOBALS['phpgw_info']['flags']['update_version']); 
    8479 
    85         // Is IE ?? 
    86         //echo "<SCRIPT>if ((!is_gecko) && (!is_ie6up)) {alert('OPSS !! Desculpe, mas seu navegador não suporta este WebMail. Instale o Mozilla FireFox 1.0+ ou Internet Explorer 6.0+. No momento, utilize a versão antiga do WebMail.');window.location=\"../email/\";}</SCRIPT>"; 
    87          
    8880        // Get Preferences or redirect to preferences page. 
    8981        $GLOBALS['phpgw']->preferences->read_repository(); 
Note: See TracChangeset for help on using the changeset viewer.