From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 1 00:17:10 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Thu, 01 Mar 2007 08:17:10 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10277 - in /vtigercrm/branches/5.0.3: Smarty/templates/PrintReport.tpl modules/Reports/PrintReport.php modules/Reports/Reports.php Message-ID: <20070301081710.D369178D69B@vtiger.fosslabs.com> Author: saraj Date: Thu Mar 1 01:16:57 2007 New Revision: 10277 Log: i18n for Reports - Move report to another folder. Fixes #3016 Modified: vtigercrm/branches/5.0.3/Smarty/templates/PrintReport.tpl vtigercrm/branches/5.0.3/modules/Reports/PrintReport.php vtigercrm/branches/5.0.3/modules/Reports/Reports.php Modified: vtigercrm/branches/5.0.3/Smarty/templates/PrintReport.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/PrintReport.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/PrintReport.tpl Thu Mar 1 01:16:57 2007 @@ -18,7 +18,7 @@
echo $error_msg_info ?>
+
Email Attachments:
".$mod_strings['LBL_EMAIL_ATTACHMENTS']."
This Configuration Wizard will create the requisite data needed to get working with vtiger. The entire process should take about four minutes. Click the Start button when you are ready. +
This Configuration Wizard will create the requisite data needed to get working with vtiger CRM. The entire process should take about four minutes. Click the Start button when you are ready.
- vtiger CRM 5.0.3 is tested on mySQL 4.1.X, mySQL 5.0.19, PHP 5.0.19 and Apache 2.0.40.
vtiger CRM 5.0.3 will not work on mysql 4.0.x versions and PHP 5.2.x versions
The installation wizard will guide you with the installation regardless of the setup you may have.
Successfully created configuration file (config.inc.php) in : - The installation will take at least 4 minutes. Grab a coffee,sit back and relax... + The installation will take at least 4 minutes. Grab a coffee,sit back and relax or browse through our forums
".$mod_strings['IN_REPLY_TO_THE_MESSAGE'].$this->reply_name." on ".$this->date."
".$this->body."
Inline Attachments:
"; - echo nl2br($inline[$i]["filedata"]); - echo "
Successfully created configuration file (config.inc.php) in : - The installation will take at least 4 minutes. Grab a coffee,sit back and relax or browse through our forums + The installation will take at least 4 minutes.
Grab a coffee,sit back and relax or browse through our blogs
+ Talk to us at http://forums.vtiger.com +
+ Discuss with us at http://blogs.vtiger.com From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 02:58:09 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 09:58:09 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10489 - /vtigercrm/branches/5.0.3/modules/uploads/add2db.php Message-ID: <20070320095809.2E13C7C8115@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 03:58:04 2007 New Revision: 10489 Log: fix for mysql sql_mode Modified: vtigercrm/branches/5.0.3/modules/uploads/add2db.php Modified: vtigercrm/branches/5.0.3/modules/uploads/add2db.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/uploads/add2db.php (original) +++ vtigercrm/branches/5.0.3/modules/uploads/add2db.php Tue Mar 20 03:58:04 2007 @@ -53,9 +53,10 @@ $desc = $_REQUEST['txtDescription']; $description = addslashes($desc); $date_var = $adb->formatDate(date('YmdHis')); - - $query = "insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,createdtime) values('"; - $query .= $current_id."','".$current_user->id."','".$current_user->id."','".$_REQUEST['return_module'].' Attachment'."','".$description."',".$date_var.")"; + $current_date = getdate(); + $current_date = $adb->formatDate(date('YmdHis')); + $query = "insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,createdtime,modifiedtime) values('"; + $query .= $current_id."','".$current_user->id."','".$current_user->id."','".$_REQUEST['return_module'].' Attachment'."','".$description."',".$date_var.",".$current_date.")"; $result = $adb->query($query); # Added by DG 26 Oct 2005 From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:02:39 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:02:39 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10490 - in /vtigercrm/branches/5.0.3/modules/Webmails: conf.php get_img.php Message-ID: <20070320100239.70B747C8120@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:02:31 2007 New Revision: 10490 Log: files from nocc Added: vtigercrm/branches/5.0.3/modules/Webmails/conf.php vtigercrm/branches/5.0.3/modules/Webmails/get_img.php From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:06:54 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:06:54 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10491 - in /vtigercrm/branches/5.0.3/modules/Webmails: download.php functions.php Message-ID: <20070320100654.428757C8119@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:06:45 2007 New Revision: 10491 Log: files from nocc Added: vtigercrm/branches/5.0.3/modules/Webmails/download.php vtigercrm/branches/5.0.3/modules/Webmails/functions.php From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:13:41 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:13:41 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10492 - /vtigercrm/branches/5.0.3/index.php Message-ID: <20070320101341.AA6827C8119@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:13:35 2007 New Revision: 10492 Log: added check for the webmail image handling Modified: vtigercrm/branches/5.0.3/index.php Modified: vtigercrm/branches/5.0.3/index.php ============================================================================== --- vtigercrm/branches/5.0.3/index.php (original) +++ vtigercrm/branches/5.0.3/index.php Tue Mar 20 04:13:35 2007 @@ -282,7 +282,7 @@ (ereg("^dlAttachments",$action) && ereg("^Webmails",$module)) || (ereg("^DetailView",$action) && ereg("^Webmails",$module) ) || ereg("^savewordtemplate",$action) || - ereg("^mailmergedownloadfile",$action)) + ereg("^mailmergedownloadfile",$action) || ereg("^Webmails",$module) && ereg("^get_img",$action) || ereg("^download",$action) ) { @@ -300,10 +300,12 @@ ereg("^chat",$action) || ereg("^vtchat",$action) || ereg("^massdelete", $action) || - ereg("^mailmergedownloadfile",$action)) + ereg("^mailmergedownloadfile",$action) || ereg("^get_img",$action) || + ereg("^download",$action) || + ereg("^massdelete", $action )) $skipFooters=true; //skip footers for all these invocations as they are mostly popups - if(ereg("^downloadfile", $action) || ereg("^fieldtypes",$action) || ereg("^mailmergedownloadfile",$action)) + if(ereg("^downloadfile", $action) || ereg("^fieldtypes",$action) || ereg("^mailmergedownloadfile",$action)|| ereg("^get_img",$action)) { $viewAttachment = true; } From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:23:23 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:23:23 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10493 - in /vtigercrm/branches/5.0.3: include/js/en_us.lang.js include/language/en_us.lang.php modules/Reports/ReportColumns.php modules/Reports/Reports.js Message-ID: <20070320102323.527637C8119@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:23:13 2007 New Revision: 10493 Log: i18n added for reports columns Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js vtigercrm/branches/5.0.3/include/language/en_us.lang.php vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php vtigercrm/branches/5.0.3/modules/Reports/Reports.js Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js ============================================================================== --- vtigercrm/branches/5.0.3/include/js/en_us.lang.js (original) +++ vtigercrm/branches/5.0.3/include/js/en_us.lang.js Tue Mar 20 04:23:13 2007 @@ -93,4 +93,15 @@ SELECT_TEMPLATE_TO_MERGE:'Please select a template to merge', YES:'yes', NO:'no', + + EQUALS:'equals', + NOT_EQUALS_TO:'not equal to', + STARTS_WITH:'starts with', + CONTAINS:'contains', + DOES_NOT_CONTAINS:'does not contains', + LESS_THAN:'less than', + GREATER_THAN:'greater than', + LESS_OR_EQUALS:'less or equal', + GREATER_OR_EQUALS:'greater or equal', + }; Modified: vtigercrm/branches/5.0.3/include/language/en_us.lang.php ============================================================================== --- vtigercrm/branches/5.0.3/include/language/en_us.lang.php (original) +++ vtigercrm/branches/5.0.3/include/language/en_us.lang.php Tue Mar 20 04:23:13 2007 @@ -647,7 +647,7 @@ //Added for values of picklist in Advanced Search filter 'contains'=>'contains', 'does not contains'=>'does not contains', -'is'=>'is', +'equals'=>'equals', 'is not'=>'is not', 'begins with'=>'begins with', 'ends with'=>'ends with', @@ -828,6 +828,17 @@ 'MSG_VTIGERTEAM'=>' vTiger Team', 'MSG_IS_NOT_UPLOADED'=>'is not uploaded. Allowed file types - jpeg, png, jpg, pjpeg, x-png or gif', 'MSG_IMAGE_ERROR'=>'Image not found', + +'Information'=>'Information', +'Address'=>'Address', +'Custom Information'=>'Custom Information', +'Portal Information'=>'- Portal Information', +'Description'=>'Description', +'Expectations'=>'Expectations', +'Pricing Information'=>'Pricing Information', +'Stock Information'=>'Stock Information', +'Solution'=>'Solution', +'Terms and Conditions'=>'Terms and Conditions', ); $app_list_strings = array ( Modified: vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php (original) +++ vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php Tue Mar 20 04:23:13 2007 @@ -64,6 +64,7 @@ { global $ogReport; global $app_list_strings; + global $app_strings; global $current_language; $mod_strings = return_module_language($current_language,$module); @@ -71,7 +72,8 @@ { if(isset($ogReport->pri_module_columnslist[$module][$key])) { - $shtml .= ""; + + $shtml .= ""; foreach($ogReport->pri_module_columnslist[$module][$key] as $field=>$fieldlabel) { if(isset($mod_strings[$fieldlabel])) @@ -97,7 +99,7 @@ function getSecondaryColumnsHTML($module) { global $ogReport; - global $app_list_strings; + global $app_list_strings,$app_strings; global $current_language; if($module != "") @@ -110,7 +112,7 @@ { if(isset($ogReport->sec_module_columnslist[$secmodule[$i]][$key])) { - $shtml .= ""; + $shtml .= ""; foreach($ogReport->sec_module_columnslist[$secmodule[$i]][$key] as $field=>$fieldlabel) { if(isset($mod_strings[$fieldlabel])) Modified: vtigercrm/branches/5.0.3/modules/Reports/Reports.js ============================================================================== --- vtigercrm/branches/5.0.3/modules/Reports/Reports.js (original) +++ vtigercrm/branches/5.0.3/modules/Reports/Reports.js Tue Mar 20 04:23:13 2007 @@ -16,15 +16,15 @@ typeofdata['D'] = ['e','n','l','g','m','h']; var fLabels = new Array(); -fLabels['e'] = 'equals'; -fLabels['n'] = 'not equal to'; -fLabels['s'] = 'starts with'; -fLabels['c'] = 'contains'; -fLabels['k'] = 'does not contain'; -fLabels['l'] = 'less than'; -fLabels['g'] = 'greater than'; -fLabels['m'] = 'less or equal'; -fLabels['h'] = 'greater or equal'; +fLabels['e'] = alert_arr.EQUALS; +fLabels['n'] = alert_arr.NOT_EQUALS_TO; +fLabels['s'] = alert_arr.STARTS_WITH; +fLabels['c'] = alert_arr.CONTAINS; +fLabels['k'] = alert_arr.DOES_NOT_CONTAINS; +fLabels['l'] = alert_arr.LESS_THAN; +fLabels['g'] = alert_arr.GREATER_THAN; +fLabels['m'] = alert_arr.LESS_OR_EQUALS; +fLabels['h'] = alert_arr.GREATER_OR_EQUALS; var noneLabel; var gcurrepfolderid=0; function trimfValues(value) From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:25:59 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:25:59 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10494 - /vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Message-ID: <20070320102559.E7E8378D24F@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 04:25:52 2007 New Revision: 10494 Log: Webmails module made default Modified: vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Modified: vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php (original) +++ vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Tue Mar 20 04:25:52 2007 @@ -167,7 +167,7 @@ { global $current_user; $this->db->println("CONNECTION ERROR - Could not be connected to the server using imap_open function through the connection strings $connectString and $connectString1"); - echo " Could not connect to the server. Please check the server details Here "; + echo " Could not connect to the server. Please check the server details Here . Please click here to go to your Emails module."; exit; } } From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:28:39 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:28:39 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10495 - /vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Message-ID: <20070320102839.BF5EB78D24F@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 04:28:29 2007 New Revision: 10495 Log: Webmails module made default Modified: vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Modified: vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php (original) +++ vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Tue Mar 20 04:28:29 2007 @@ -2126,7 +2126,7 @@ $this->db->query("insert into vtiger_parenttab values (8,'Settings',8,0)"); $this->db->query("insert into vtiger_parenttabrel values (1,9,2)"); - $this->db->query("insert into vtiger_parenttabrel values (1,10,4)"); + $this->db->query("insert into vtiger_parenttabrel values (1,28,4)"); $this->db->query("insert into vtiger_parenttabrel values (1,3,1)"); $this->db->query("insert into vtiger_parenttabrel values (3,7,1)"); $this->db->query("insert into vtiger_parenttabrel values (3,6,2)"); @@ -2159,8 +2159,8 @@ $this->db->query("insert into vtiger_parenttabrel values (2,26,1)"); $this->db->query("insert into vtiger_parenttabrel values (2,6,2)"); $this->db->query("insert into vtiger_parenttabrel values (2,4,3)"); - $this->db->query("insert into vtiger_parenttabrel values (2,10,4)"); - $this->db->query("insert into vtiger_parenttabrel values (4,10,7)"); + $this->db->query("insert into vtiger_parenttabrel values (2,28,4)"); + $this->db->query("insert into vtiger_parenttabrel values (4,28,7)"); $this->db->query("insert into vtiger_parenttabrel values (2,7,5)"); $this->db->query("insert into vtiger_parenttabrel values (2,9,6)"); $this->db->query("insert into vtiger_parenttabrel values (4,9,8)"); From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:34:16 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:34:16 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10496 - /vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Message-ID: <20070320103416.4977878D015@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:34:12 2007 New Revision: 10496 Log: storage engine changed to innodb Modified: vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Modified: vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat ============================================================================== --- vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat (original) +++ vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Tue Mar 20 04:34:12 2007 @@ -105,7 +105,7 @@ echo "" echo "Starting MySQL on port specified by the user" echo "" -start mysqld-nt -b .. --skip-bdb --log-queries-not-using-indexes --log-slow-admin-statements --log-error --low-priority-updates --log-slow-queries=vtslowquery.log --datadir=../data --port=%mysql_port% +start mysqld-nt -b .. --skip-bdb --log-queries-not-using-indexes --log-slow-admin-statements --log-error --low-priority-updates --log-slow-queries=vtslowquery.log --default-storage-engine=InnoDB --datadir=../data --port=%mysql_port% %SLEEP_STR% -n 11 127.0.0.1>nul mysql --port=%mysql_port% --user=%mysql_username% --password=%mysql_password% -e "show databases" > NUL IF ERRORLEVEL 1 goto notstarted From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 03:45:05 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:45:05 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10497 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070320104505.C53E679C63E@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:45:01 2007 New Revision: 10497 Log: variable to get hostname changed Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Tue Mar 20 04:45:01 2007 @@ -27,7 +27,8 @@ // TODO: introduce Apache port as parameters to use non-default value 80 //$web_root = $_SERVER['SERVER_NAME']. ":" .$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']; //$web_root = $hostname.$_SERVER['PHP_SELF']; -$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +//$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +$web_root = $_ENV["HOSTNAME"] . $HTTP_SERVER_VARS["REQUEST_URI"]; $web_root = str_replace("/install.php", "", $web_root); $web_root = "http://".$web_root; From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 04:16:54 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 11:16:54 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10498 - /vtigercrm/branches/5.0.3/include/js/en_us.lang.js Message-ID: <20070320111654.9AA887C8133@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 05:16:49 2007 New Revision: 10498 Log: missed label added. --Minnie Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js ============================================================================== --- vtigercrm/branches/5.0.3/include/js/en_us.lang.js (original) +++ vtigercrm/branches/5.0.3/include/js/en_us.lang.js Tue Mar 20 05:16:49 2007 @@ -91,6 +91,7 @@ VALID_DISCOUNT_PERCENT:'Enter a valid Discount percentage', VALID_DISCOUNT_AMOUNT:'Enter a valid Discount Amount', SELECT_TEMPLATE_TO_MERGE:'Please select a template to merge', + SELECTED_MORE_THAN_ONCE:'You have selected the following product(s) more than once.', YES:'yes', NO:'no', From istick at gpro.net Tue Mar 20 04:48:06 2007 From: istick at gpro.net (Bobwhite B. Agamemnon) Date: Tue, 20 Mar 2007 11:48:06 +0000 Subject: [Vtigercrm-commits] (no subject) Message-ID: <1589606708.20070320114806@gpro.net> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-commits/attachments/20070320/311d6577/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Eratosthenes.gif Type: image/gif Size: 3260 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-commits/attachments/20070320/311d6577/Eratosthenes-0001.gif From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:55:10 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 13:55:10 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10499 - /vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Message-ID: <20070320135510.089FB7C7F0A@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 07:55:01 2007 New Revision: 10499 Log: page reloaded for check mail has been done Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js ============================================================================== --- vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js (original) +++ vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Tue Mar 20 07:55:01 2007 @@ -163,6 +163,8 @@ ); } function check_for_new_mail(mbox) { + window.location=window.location; +/* if(degraded_service == 'true') { window.location=window.location; return; @@ -308,6 +310,7 @@ } } ); +*/ } function periodic_event() { // NOTE: any functions you put in here may race. This could probably From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 07:03:30 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:03:30 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10500 - /vtigercrm/branches/5.0.3/install/5createTables.php Message-ID: <20070320140330.2559A7C813C@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 08:03:24 2007 New Revision: 10500 Log: added extra statement Modified: vtigercrm/branches/5.0.3/install/5createTables.php Modified: vtigercrm/branches/5.0.3/install/5createTables.php ============================================================================== --- vtigercrm/branches/5.0.3/install/5createTables.php (original) +++ vtigercrm/branches/5.0.3/install/5createTables.php Tue Mar 20 08:03:24 2007 @@ -130,7 +130,7 @@ Your install.php file has been renamed to install.php.txt. Your install folder too has been renamed to install/. Please log in using the "admin" user name and the password you entered in step 2. - + Do not forget to set the outgoing emailserver setup accessible from Settings->Outgoing Server @@ -142,6 +142,8 @@ Talk to us at http://forums.vtiger.com Discuss with us at http://blogs.vtiger.com + + We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 07:38:44 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:38:44 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10501 - /vtigercrm/branches/5.0.3/Smarty/templates/ Message-ID: <20070320143844.05E347C814B@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 08:38:21 2007 New Revision: 10501 Log: fix for i18n issue: lots of untranslatable alt= and title= in *.tpl --Minnie Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ActivityListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ComposeEmail.tpl vtigercrm/branches/5.0.3/Smarty/templates/CreateEmailTemplate.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldList.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldMapping.tpl vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl vtigercrm/branches/5.0.3/Smarty/templates/DisplayFields.tpl vtigercrm/branches/5.0.3/Smarty/templates/FieldAccess.tpl vtigercrm/branches/5.0.3/Smarty/templates/GroupEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Header.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListRoles.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListWordTemplates.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/QuickCreate.tpl vtigercrm/branches/5.0.3/Smarty/templates/RoleEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Settings.tpl vtigercrm/branches/5.0.3/Smarty/templates/SysInformation.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserProfileList.tpl Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl Tue Mar 20 08:38:21 2007 @@ -279,7 +279,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.date_start} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -300,7 +300,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -321,7 +321,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} @@ -746,7 +746,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.date_start} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -765,7 +765,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -877,13 +877,13 @@
Discuss with us at http://blogs.vtiger.com +
+ We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 07:38:44 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:38:44 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10501 - /vtigercrm/branches/5.0.3/Smarty/templates/ Message-ID: <20070320143844.05E347C814B@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 08:38:21 2007 New Revision: 10501 Log: fix for i18n issue: lots of untranslatable alt= and title= in *.tpl --Minnie Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ActivityListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ComposeEmail.tpl vtigercrm/branches/5.0.3/Smarty/templates/CreateEmailTemplate.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldList.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldMapping.tpl vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl vtigercrm/branches/5.0.3/Smarty/templates/DisplayFields.tpl vtigercrm/branches/5.0.3/Smarty/templates/FieldAccess.tpl vtigercrm/branches/5.0.3/Smarty/templates/GroupEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Header.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListRoles.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListWordTemplates.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/QuickCreate.tpl vtigercrm/branches/5.0.3/Smarty/templates/RoleEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Settings.tpl vtigercrm/branches/5.0.3/Smarty/templates/SysInformation.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserProfileList.tpl Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl Tue Mar 20 08:38:21 2007 @@ -279,7 +279,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} -
Successfully created configuration file (config.inc.php) in : - The installation will take at least 4 minutes.
Grab a coffee,sit back and relax or browse through our blogs + The installation will take at least 4 minutes.
- Talk to us at http://forums.vtiger.com + Talk to us at forums
- Discuss with us at http://blogs.vtiger.com + Discuss with us at blogs
We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 22 01:57:33 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Thu, 22 Mar 2007 08:57:33 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10515 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070322085733.906727C8174@vtiger.fosslabs.com> Author: richie Date: Thu Mar 22 02:57:26 2007 New Revision: 10515 Log: another variable added to avoid empty hostname Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Thu Mar 22 02:57:26 2007 @@ -28,7 +28,8 @@ //$web_root = $_SERVER['SERVER_NAME']. ":" .$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']; //$web_root = $hostname.$_SERVER['PHP_SELF']; //$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; -$web_root = $_ENV["HOSTNAME"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +$web_root = ($_ENV["HOSTNAME"]=='')? $HTTP_SERVER_VARS["HTTP_HOST"]:$_ENV["HOSTNAME"]; +$web_root .= $HTTP_SERVER_VARS["REQUEST_URI"]; $web_root = str_replace("/install.php", "", $web_root); $web_root = "http://".$web_root; From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 22 02:34:27 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Thu, 22 Mar 2007 09:34:27 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10516 - in /vtigercrm/branches/5.0.3: Smarty/templates/Webmails.tpl include/js/en_us.lang.js modules/Webmails/ListView.php modules/Webmails/Webmails.js modules/Webmails/Webmails.php modules/Webmails/language/en_us.lang.php Message-ID: <20070322093427.C257F7C8181@vtiger.fosslabs.com> Author: jerrydgeorge Date: Thu Mar 22 03:33:40 2007 New Revision: 10516 Log: Issues in Webmails has been fixed Modified: vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl vtigercrm/branches/5.0.3/include/js/en_us.lang.js vtigercrm/branches/5.0.3/modules/Webmails/ListView.php vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php Modified: vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl Thu Mar 22 03:33:40 2007 @@ -115,15 +115,8 @@ {if $DEGRADED_SERVICE eq 'false'}
Talk to us at forums
Discuss with us at blogs
- We aim to be - simply the best. Come on over, there is space for you too! + We aim to be -simply the best.Come on over,there is space for you too! + From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 29 02:20:09 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Thu, 29 Mar 2007 09:20:09 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10518 - /vtigercrm/branches/5.0.3/tabdata.php Message-ID: <20070329092009.101BF7C7FF9@vtiger.fosslabs.com> Author: richie Date: Thu Mar 29 03:20:04 2007 New Revision: 10518 Log: * Added entry for Users module which was missed earlier Modified: vtigercrm/branches/5.0.3/tabdata.php Modified: vtigercrm/branches/5.0.3/tabdata.php ============================================================================== --- vtigercrm/branches/5.0.3/tabdata.php (original) +++ vtigercrm/branches/5.0.3/tabdata.php Thu Mar 29 03:20:04 2007 @@ -11,7 +11,7 @@ //This file contains the commonly used variables -$tab_info_array=array('Home'=>3,'Leads'=>7,'Accounts'=>6,'Contacts'=>4,'Potentials'=>2,'Notes'=>8,'Calendar'=>9,'Emails'=>10,'HelpDesk'=>13,'Products'=>14,'Dashboard'=>1,'Faq'=>15,'Events'=>16,'Vendors'=>18,'PriceBooks'=>19,'Quotes'=>20,'PurchaseOrder'=>21,'SalesOrder'=>22,'Invoice'=>23,'Rss'=>24,'Reports'=>25,'Campaigns'=>26,'Portal'=>27,'Webmails'=>28,); +$tab_info_array=array('Home'=>3,'Leads'=>7,'Accounts'=>6,'Contacts'=>4,'Potentials'=>2,'Notes'=>8,'Calendar'=>9,'Emails'=>10,'HelpDesk'=>13,'Products'=>14,'Dashboard'=>1,'Faq'=>15,'Events'=>16,'Vendors'=>18,'PriceBooks'=>19,'Quotes'=>20,'PurchaseOrder'=>21,'SalesOrder'=>22,'Invoice'=>23,'Rss'=>24,'Reports'=>25,'Campaigns'=>26,'Portal'=>27,'Webmails'=>28,'Users'=>29,); $tab_seq_array=array('3'=>0,'7'=>0,'6'=>0,'4'=>0,'2'=>0,'8'=>0,'9'=>0,'10'=>0,'13'=>0,'14'=>0,'1'=>0,'15'=>0,'16'=>2,'18'=>0,'19'=>0,'20'=>0,'21'=>0,'22'=>0,'23'=>0,'24'=>0,'25'=>0,'26'=>0,'27'=>0,'28'=>0,); ?> From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 29 02:29:21 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits@vtiger.fosslabs.com) Date: Thu, 29 Mar 2007 09:29:21 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10519 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070329092922.2808E7D2606@vtiger.fosslabs.com> Author: richie Date: Thu Mar 29 03:29:16 2007 New Revision: 10519 Log: Message added for the currency configuration Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Thu Mar 29 03:29:16 2007 @@ -1,525 +1,528 @@ -$value) { - $language_keys[] = $key; - $language_values[] = $value; - } - $_SESSION['language_keys'] = urlencode(implode(",",$language_keys)); - $_SESSION['language_values'] = urlencode(implode(",",$language_values)); - } - - global $dbconfig; - - if (isset($_REQUEST['db_hostname'])) - $db_hostname = $_REQUEST['db_hostname']; - elseif (isset($dbconfig['db_hostname'])) - $db_hostname = $dbconfig['db_hostname']; - else - $db_hostname = $hostname; - - if (isset($_REQUEST['db_username'])) - $db_username = $_REQUEST['db_username']; - elseif (isset($dbconfig['db_username'])) - $db_username = $dbconfig['db_username']; - - if (isset($_REQUEST['db_password'])) - $db_password = $_REQUEST['db_password']; - elseif (isset($dbconfig['db_password'])) - $db_password = $dbconfig['db_password']; - - if (isset($_REQUEST['db_type'])) - $db_type = $_REQUEST['db_type']; - elseif (isset($dbconfig['db_type'])) - $db_type = $dbconfig['db_type']; - - if (isset($_REQUEST['db_name'])) - $db_name = $_REQUEST['db_name']; - elseif (isset($dbconfig['db_name']) && $dbconfig['db_name']!='_DBC_NAME_') - $db_name = $dbconfig['db_name']; - else - $db_name = 'vtigercrm503'; - - !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; - if (isset($_REQUEST['host_name'])) $host_name = $_REQUEST['host_name']; - else $host_name = $hostname; - - if (isset($_REQUEST['site_URL'])) $site_URL = $_REQUEST['site_URL']; - elseif (isset($site_URL) && $site_URL!='_SITE_URL_') - $site_URL = $site_URL; - else $site_URL = $web_root; - - if(isset($_REQUEST['root_directory'])) $root_directory = $_REQUEST['root_directory']; - else $root_directory = $current_dir; - - if (isset($_REQUEST['cache_dir'])) - $cache_dir= $_REQUEST['cache_dir']; - - if (isset($_REQUEST['mail_server'])) - $mail_server= $_REQUEST['mail_server']; - - if (isset($_REQUEST['mail_server_username'])) - $mail_server_username= $_REQUEST['mail_server_username']; - - if (isset($_REQUEST['mail_server_password'])) - $mail_server_password= $_REQUEST['mail_server_password']; - - if (isset($_REQUEST['admin_email'])) - $admin_email = $_REQUEST['admin_email']; - - if (isset($_REQUEST['admin_password'])) - $admin_password = $_REQUEST['admin_password']; - - if (isset($_REQUEST['currency_name'])) - $currency_name = $_REQUEST['currency_name']; - else - $currency_name = ''; - - if (isset($_REQUEST['currency_symbol'])) - $currency_symbol = $_REQUEST['currency_symbol']; - - if (isset($_REQUEST['currency_code'])) - $currency_code = $_REQUEST['currency_code']; - - } - else { - !isset($_REQUEST['db_hostname']) ? $db_hostname = $hostname: $db_hostname = $_REQUEST['db_hostname']; - !isset($_REQUEST['db_name']) ? $db_name = "vtigercrm503" : $db_name = $_REQUEST['db_name']; - !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; - !isset($_REQUEST['host_name']) ? $host_name= $hostname : $host_name= $_REQUEST['host_name']; - !isset($_REQUEST['site_URL']) ? $site_URL = $web_root : $site_URL = $_REQUEST['site_URL']; - !isset($_REQUEST['root_directory']) ? $root_directory = $current_dir : $root_directory = stripslashes($_REQUEST['root_directory']); - !isset($_REQUEST['cache_dir']) ? $cache_dir = $cache_dir : $cache_dir = stripslashes($_REQUEST['cache_dir']); - !isset($_REQUEST['mail_server']) ? $mail_server = $mail_server : $mail_server = stripslashes($_REQUEST['mail_server']); - !isset($_REQUEST['mail_server_username']) ? $mail_server_username = $mail_server_username : $mail_server_username = stripslashes($_REQUEST['mail_server_username']); - !isset($_REQUEST['mail_server_password']) ? $mail_server_password = $mail_server_password : $mail_server_password = stripslashes($_REQUEST['mail_server_password']); - !isset($_REQUEST['admin_email']) ? $admin_email = "" : $admin_email = $_REQUEST['admin_email']; - } - !isset($_REQUEST['check_createdb']) ? $check_createdb = "" : $check_createdb = $_REQUEST['check_createdb']; - !isset($_REQUEST['root_user']) ? $root_user = "" : $root_user = $_REQUEST['root_user']; - !isset($_REQUEST['root_password']) ? $root_password = "" : $root_password = $_REQUEST['root_password']; - // determine database options - $db_options = array(); - if(function_exists('mysql_connect')) { - $db_options['mysql'] = 'MySQL'; - } - if(function_exists('pg_connect')) { - $db_options['pgsql'] = 'Postgres'; - } -?> - - - -
";print_r($failure_query_array);echo '
+ Discuss with us at http://blogs.vtiger.com From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 05:58:09 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 09:58:09 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10489 - /vtigercrm/branches/5.0.3/modules/uploads/add2db.php Message-ID: <20070320095809.2E13C7C8115@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 03:58:04 2007 New Revision: 10489 Log: fix for mysql sql_mode Modified: vtigercrm/branches/5.0.3/modules/uploads/add2db.php Modified: vtigercrm/branches/5.0.3/modules/uploads/add2db.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/uploads/add2db.php (original) +++ vtigercrm/branches/5.0.3/modules/uploads/add2db.php Tue Mar 20 03:58:04 2007 @@ -53,9 +53,10 @@ $desc = $_REQUEST['txtDescription']; $description = addslashes($desc); $date_var = $adb->formatDate(date('YmdHis')); - - $query = "insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,createdtime) values('"; - $query .= $current_id."','".$current_user->id."','".$current_user->id."','".$_REQUEST['return_module'].' Attachment'."','".$description."',".$date_var.")"; + $current_date = getdate(); + $current_date = $adb->formatDate(date('YmdHis')); + $query = "insert into vtiger_crmentity (crmid,smcreatorid,smownerid,setype,description,createdtime,modifiedtime) values('"; + $query .= $current_id."','".$current_user->id."','".$current_user->id."','".$_REQUEST['return_module'].' Attachment'."','".$description."',".$date_var.",".$current_date.")"; $result = $adb->query($query); # Added by DG 26 Oct 2005 From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:02:39 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:02:39 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10490 - in /vtigercrm/branches/5.0.3/modules/Webmails: conf.php get_img.php Message-ID: <20070320100239.70B747C8120@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:02:31 2007 New Revision: 10490 Log: files from nocc Added: vtigercrm/branches/5.0.3/modules/Webmails/conf.php vtigercrm/branches/5.0.3/modules/Webmails/get_img.php From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:06:54 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:06:54 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10491 - in /vtigercrm/branches/5.0.3/modules/Webmails: download.php functions.php Message-ID: <20070320100654.428757C8119@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:06:45 2007 New Revision: 10491 Log: files from nocc Added: vtigercrm/branches/5.0.3/modules/Webmails/download.php vtigercrm/branches/5.0.3/modules/Webmails/functions.php From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:13:41 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:13:41 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10492 - /vtigercrm/branches/5.0.3/index.php Message-ID: <20070320101341.AA6827C8119@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 04:13:35 2007 New Revision: 10492 Log: added check for the webmail image handling Modified: vtigercrm/branches/5.0.3/index.php Modified: vtigercrm/branches/5.0.3/index.php ============================================================================== --- vtigercrm/branches/5.0.3/index.php (original) +++ vtigercrm/branches/5.0.3/index.php Tue Mar 20 04:13:35 2007 @@ -282,7 +282,7 @@ (ereg("^dlAttachments",$action) && ereg("^Webmails",$module)) || (ereg("^DetailView",$action) && ereg("^Webmails",$module) ) || ereg("^savewordtemplate",$action) || - ereg("^mailmergedownloadfile",$action)) + ereg("^mailmergedownloadfile",$action) || ereg("^Webmails",$module) && ereg("^get_img",$action) || ereg("^download",$action) ) { @@ -300,10 +300,12 @@ ereg("^chat",$action) || ereg("^vtchat",$action) || ereg("^massdelete", $action) || - ereg("^mailmergedownloadfile",$action)) + ereg("^mailmergedownloadfile",$action) || ereg("^get_img",$action) || + ereg("^download",$action) || + ereg("^massdelete", $action )) $skipFooters=true; //skip footers for all these invocations as they are mostly popups - if(ereg("^downloadfile", $action) || ereg("^fieldtypes",$action) || ereg("^mailmergedownloadfile",$action)) + if(ereg("^downloadfile", $action) || ereg("^fieldtypes",$action) || ereg("^mailmergedownloadfile",$action)|| ereg("^get_img",$action)) { $viewAttachment = true; } From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:23:23 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:23:23 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10493 - in /vtigercrm/branches/5.0.3: include/js/en_us.lang.js include/language/en_us.lang.php modules/Reports/ReportColumns.php modules/Reports/Reports.js Message-ID: <20070320102323.527637C8119@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:23:13 2007 New Revision: 10493 Log: i18n added for reports columns Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js vtigercrm/branches/5.0.3/include/language/en_us.lang.php vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php vtigercrm/branches/5.0.3/modules/Reports/Reports.js Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js ============================================================================== --- vtigercrm/branches/5.0.3/include/js/en_us.lang.js (original) +++ vtigercrm/branches/5.0.3/include/js/en_us.lang.js Tue Mar 20 04:23:13 2007 @@ -93,4 +93,15 @@ SELECT_TEMPLATE_TO_MERGE:'Please select a template to merge', YES:'yes', NO:'no', + + EQUALS:'equals', + NOT_EQUALS_TO:'not equal to', + STARTS_WITH:'starts with', + CONTAINS:'contains', + DOES_NOT_CONTAINS:'does not contains', + LESS_THAN:'less than', + GREATER_THAN:'greater than', + LESS_OR_EQUALS:'less or equal', + GREATER_OR_EQUALS:'greater or equal', + }; Modified: vtigercrm/branches/5.0.3/include/language/en_us.lang.php ============================================================================== --- vtigercrm/branches/5.0.3/include/language/en_us.lang.php (original) +++ vtigercrm/branches/5.0.3/include/language/en_us.lang.php Tue Mar 20 04:23:13 2007 @@ -647,7 +647,7 @@ //Added for values of picklist in Advanced Search filter 'contains'=>'contains', 'does not contains'=>'does not contains', -'is'=>'is', +'equals'=>'equals', 'is not'=>'is not', 'begins with'=>'begins with', 'ends with'=>'ends with', @@ -828,6 +828,17 @@ 'MSG_VTIGERTEAM'=>' vTiger Team', 'MSG_IS_NOT_UPLOADED'=>'is not uploaded. Allowed file types - jpeg, png, jpg, pjpeg, x-png or gif', 'MSG_IMAGE_ERROR'=>'Image not found', + +'Information'=>'Information', +'Address'=>'Address', +'Custom Information'=>'Custom Information', +'Portal Information'=>'- Portal Information', +'Description'=>'Description', +'Expectations'=>'Expectations', +'Pricing Information'=>'Pricing Information', +'Stock Information'=>'Stock Information', +'Solution'=>'Solution', +'Terms and Conditions'=>'Terms and Conditions', ); $app_list_strings = array ( Modified: vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php (original) +++ vtigercrm/branches/5.0.3/modules/Reports/ReportColumns.php Tue Mar 20 04:23:13 2007 @@ -64,6 +64,7 @@ { global $ogReport; global $app_list_strings; + global $app_strings; global $current_language; $mod_strings = return_module_language($current_language,$module); @@ -71,7 +72,8 @@ { if(isset($ogReport->pri_module_columnslist[$module][$key])) { - $shtml .= ""; + + $shtml .= ""; foreach($ogReport->pri_module_columnslist[$module][$key] as $field=>$fieldlabel) { if(isset($mod_strings[$fieldlabel])) @@ -97,7 +99,7 @@ function getSecondaryColumnsHTML($module) { global $ogReport; - global $app_list_strings; + global $app_list_strings,$app_strings; global $current_language; if($module != "") @@ -110,7 +112,7 @@ { if(isset($ogReport->sec_module_columnslist[$secmodule[$i]][$key])) { - $shtml .= ""; + $shtml .= ""; foreach($ogReport->sec_module_columnslist[$secmodule[$i]][$key] as $field=>$fieldlabel) { if(isset($mod_strings[$fieldlabel])) Modified: vtigercrm/branches/5.0.3/modules/Reports/Reports.js ============================================================================== --- vtigercrm/branches/5.0.3/modules/Reports/Reports.js (original) +++ vtigercrm/branches/5.0.3/modules/Reports/Reports.js Tue Mar 20 04:23:13 2007 @@ -16,15 +16,15 @@ typeofdata['D'] = ['e','n','l','g','m','h']; var fLabels = new Array(); -fLabels['e'] = 'equals'; -fLabels['n'] = 'not equal to'; -fLabels['s'] = 'starts with'; -fLabels['c'] = 'contains'; -fLabels['k'] = 'does not contain'; -fLabels['l'] = 'less than'; -fLabels['g'] = 'greater than'; -fLabels['m'] = 'less or equal'; -fLabels['h'] = 'greater or equal'; +fLabels['e'] = alert_arr.EQUALS; +fLabels['n'] = alert_arr.NOT_EQUALS_TO; +fLabels['s'] = alert_arr.STARTS_WITH; +fLabels['c'] = alert_arr.CONTAINS; +fLabels['k'] = alert_arr.DOES_NOT_CONTAINS; +fLabels['l'] = alert_arr.LESS_THAN; +fLabels['g'] = alert_arr.GREATER_THAN; +fLabels['m'] = alert_arr.LESS_OR_EQUALS; +fLabels['h'] = alert_arr.GREATER_OR_EQUALS; var noneLabel; var gcurrepfolderid=0; function trimfValues(value) From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:25:59 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:25:59 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10494 - /vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Message-ID: <20070320102559.E7E8378D24F@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 04:25:52 2007 New Revision: 10494 Log: Webmails module made default Modified: vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Modified: vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php (original) +++ vtigercrm/branches/5.0.3/modules/Webmails/MailBox.php Tue Mar 20 04:25:52 2007 @@ -167,7 +167,7 @@ { global $current_user; $this->db->println("CONNECTION ERROR - Could not be connected to the server using imap_open function through the connection strings $connectString and $connectString1"); - echo " Could not connect to the server. Please check the server details Here "; + echo " Could not connect to the server. Please check the server details Here . Please click here to go to your Emails module."; exit; } } From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:28:39 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:28:39 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10495 - /vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Message-ID: <20070320102839.BF5EB78D24F@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 04:28:29 2007 New Revision: 10495 Log: Webmails module made default Modified: vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Modified: vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php ============================================================================== --- vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php (original) +++ vtigercrm/branches/5.0.3/modules/Users/DefaultDataPopulator.php Tue Mar 20 04:28:29 2007 @@ -2126,7 +2126,7 @@ $this->db->query("insert into vtiger_parenttab values (8,'Settings',8,0)"); $this->db->query("insert into vtiger_parenttabrel values (1,9,2)"); - $this->db->query("insert into vtiger_parenttabrel values (1,10,4)"); + $this->db->query("insert into vtiger_parenttabrel values (1,28,4)"); $this->db->query("insert into vtiger_parenttabrel values (1,3,1)"); $this->db->query("insert into vtiger_parenttabrel values (3,7,1)"); $this->db->query("insert into vtiger_parenttabrel values (3,6,2)"); @@ -2159,8 +2159,8 @@ $this->db->query("insert into vtiger_parenttabrel values (2,26,1)"); $this->db->query("insert into vtiger_parenttabrel values (2,6,2)"); $this->db->query("insert into vtiger_parenttabrel values (2,4,3)"); - $this->db->query("insert into vtiger_parenttabrel values (2,10,4)"); - $this->db->query("insert into vtiger_parenttabrel values (4,10,7)"); + $this->db->query("insert into vtiger_parenttabrel values (2,28,4)"); + $this->db->query("insert into vtiger_parenttabrel values (4,28,7)"); $this->db->query("insert into vtiger_parenttabrel values (2,7,5)"); $this->db->query("insert into vtiger_parenttabrel values (2,9,6)"); $this->db->query("insert into vtiger_parenttabrel values (4,9,8)"); From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:34:16 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:34:16 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10496 - /vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Message-ID: <20070320103416.4977878D015@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:34:12 2007 New Revision: 10496 Log: storage engine changed to innodb Modified: vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Modified: vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat ============================================================================== --- vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat (original) +++ vtigercrm/branches/5.0.3/pkg/bin/startvTiger.bat Tue Mar 20 04:34:12 2007 @@ -105,7 +105,7 @@ echo "" echo "Starting MySQL on port specified by the user" echo "" -start mysqld-nt -b .. --skip-bdb --log-queries-not-using-indexes --log-slow-admin-statements --log-error --low-priority-updates --log-slow-queries=vtslowquery.log --datadir=../data --port=%mysql_port% +start mysqld-nt -b .. --skip-bdb --log-queries-not-using-indexes --log-slow-admin-statements --log-error --low-priority-updates --log-slow-queries=vtslowquery.log --default-storage-engine=InnoDB --datadir=../data --port=%mysql_port% %SLEEP_STR% -n 11 127.0.0.1>nul mysql --port=%mysql_port% --user=%mysql_username% --password=%mysql_password% -e "show databases" > NUL IF ERRORLEVEL 1 goto notstarted From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 06:45:05 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 10:45:05 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10497 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070320104505.C53E679C63E@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 04:45:01 2007 New Revision: 10497 Log: variable to get hostname changed Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Tue Mar 20 04:45:01 2007 @@ -27,7 +27,8 @@ // TODO: introduce Apache port as parameters to use non-default value 80 //$web_root = $_SERVER['SERVER_NAME']. ":" .$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']; //$web_root = $hostname.$_SERVER['PHP_SELF']; -$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +//$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +$web_root = $_ENV["HOSTNAME"] . $HTTP_SERVER_VARS["REQUEST_URI"]; $web_root = str_replace("/install.php", "", $web_root); $web_root = "http://".$web_root; From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 07:16:54 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 11:16:54 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10498 - /vtigercrm/branches/5.0.3/include/js/en_us.lang.js Message-ID: <20070320111654.9AA887C8133@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 05:16:49 2007 New Revision: 10498 Log: missed label added. --Minnie Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js Modified: vtigercrm/branches/5.0.3/include/js/en_us.lang.js ============================================================================== --- vtigercrm/branches/5.0.3/include/js/en_us.lang.js (original) +++ vtigercrm/branches/5.0.3/include/js/en_us.lang.js Tue Mar 20 05:16:49 2007 @@ -91,6 +91,7 @@ VALID_DISCOUNT_PERCENT:'Enter a valid Discount percentage', VALID_DISCOUNT_AMOUNT:'Enter a valid Discount Amount', SELECT_TEMPLATE_TO_MERGE:'Please select a template to merge', + SELECTED_MORE_THAN_ONCE:'You have selected the following product(s) more than once.', YES:'yes', NO:'no', From istick at gpro.net Tue Mar 20 07:48:06 2007 From: istick at gpro.net (Bobwhite B. Agamemnon) Date: Tue, 20 Mar 2007 11:48:06 +0000 Subject: [Vtigercrm-commits] (no subject) Message-ID: <1589606708.20070320114806@gpro.net> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-commits/attachments/20070320/311d6577/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Eratosthenes.gif Type: image/gif Size: 3260 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-commits/attachments/20070320/311d6577/attachment.gif From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 09:55:10 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 13:55:10 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10499 - /vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Message-ID: <20070320135510.089FB7C7F0A@vtiger.fosslabs.com> Author: jerrydgeorge Date: Tue Mar 20 07:55:01 2007 New Revision: 10499 Log: page reloaded for check mail has been done Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js ============================================================================== --- vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js (original) +++ vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Tue Mar 20 07:55:01 2007 @@ -163,6 +163,8 @@ ); } function check_for_new_mail(mbox) { + window.location=window.location; +/* if(degraded_service == 'true') { window.location=window.location; return; @@ -308,6 +310,7 @@ } } ); +*/ } function periodic_event() { // NOTE: any functions you put in here may race. This could probably From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 10:03:30 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:03:30 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10500 - /vtigercrm/branches/5.0.3/install/5createTables.php Message-ID: <20070320140330.2559A7C813C@vtiger.fosslabs.com> Author: richie Date: Tue Mar 20 08:03:24 2007 New Revision: 10500 Log: added extra statement Modified: vtigercrm/branches/5.0.3/install/5createTables.php Modified: vtigercrm/branches/5.0.3/install/5createTables.php ============================================================================== --- vtigercrm/branches/5.0.3/install/5createTables.php (original) +++ vtigercrm/branches/5.0.3/install/5createTables.php Tue Mar 20 08:03:24 2007 @@ -130,7 +130,7 @@ Your install.php file has been renamed to install.php.txt. Your install folder too has been renamed to install/. Please log in using the "admin" user name and the password you entered in step 2. - + Do not forget to set the outgoing emailserver setup accessible from Settings->Outgoing Server @@ -142,6 +142,8 @@ Talk to us at http://forums.vtiger.com Discuss with us at http://blogs.vtiger.com + + We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 10:38:44 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:38:44 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10501 - /vtigercrm/branches/5.0.3/Smarty/templates/ Message-ID: <20070320143844.05E347C814B@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 08:38:21 2007 New Revision: 10501 Log: fix for i18n issue: lots of untranslatable alt= and title= in *.tpl --Minnie Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ActivityListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ComposeEmail.tpl vtigercrm/branches/5.0.3/Smarty/templates/CreateEmailTemplate.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldList.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldMapping.tpl vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl vtigercrm/branches/5.0.3/Smarty/templates/DisplayFields.tpl vtigercrm/branches/5.0.3/Smarty/templates/FieldAccess.tpl vtigercrm/branches/5.0.3/Smarty/templates/GroupEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Header.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListRoles.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListWordTemplates.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/QuickCreate.tpl vtigercrm/branches/5.0.3/Smarty/templates/RoleEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Settings.tpl vtigercrm/branches/5.0.3/Smarty/templates/SysInformation.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserProfileList.tpl Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl Tue Mar 20 08:38:21 2007 @@ -279,7 +279,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.date_start} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -300,7 +300,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -321,7 +321,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} @@ -746,7 +746,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.date_start} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -765,7 +765,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} - + {foreach key=date_fmt item=date_str from=$secondvalue.due_date} {assign var=date_vl value="$date_fmt"} {/foreach} @@ -877,13 +877,13 @@
+ We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Tue Mar 20 10:38:44 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Tue, 20 Mar 2007 14:38:44 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10501 - /vtigercrm/branches/5.0.3/Smarty/templates/ Message-ID: <20070320143844.05E347C814B@vtiger.fosslabs.com> Author: saraj Date: Tue Mar 20 08:38:21 2007 New Revision: 10501 Log: fix for i18n issue: lots of untranslatable alt= and title= in *.tpl --Minnie Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ActivityListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ComposeEmail.tpl vtigercrm/branches/5.0.3/Smarty/templates/CreateEmailTemplate.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CurrencyListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldList.tpl vtigercrm/branches/5.0.3/Smarty/templates/CustomFieldMapping.tpl vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl vtigercrm/branches/5.0.3/Smarty/templates/DisplayFields.tpl vtigercrm/branches/5.0.3/Smarty/templates/FieldAccess.tpl vtigercrm/branches/5.0.3/Smarty/templates/GroupEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Header.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListRoles.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListView.tpl vtigercrm/branches/5.0.3/Smarty/templates/ListWordTemplates.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/OrgSharingEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/QuickCreate.tpl vtigercrm/branches/5.0.3/Smarty/templates/RoleEditView.tpl vtigercrm/branches/5.0.3/Smarty/templates/Settings.tpl vtigercrm/branches/5.0.3/Smarty/templates/SysInformation.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserDetailView.tpl vtigercrm/branches/5.0.3/Smarty/templates/UserProfileList.tpl Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl Tue Mar 20 08:38:21 2007 @@ -279,7 +279,7 @@ {assign var=date_val value="$date_value"} {assign var=time_val value="$time_value"} {/foreach} -
We aim to be - simply the best. Come on over, there is space for you too! From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 22 04:57:33 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Thu, 22 Mar 2007 08:57:33 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10515 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070322085733.906727C8174@vtiger.fosslabs.com> Author: richie Date: Thu Mar 22 02:57:26 2007 New Revision: 10515 Log: another variable added to avoid empty hostname Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Thu Mar 22 02:57:26 2007 @@ -28,7 +28,8 @@ //$web_root = $_SERVER['SERVER_NAME']. ":" .$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']; //$web_root = $hostname.$_SERVER['PHP_SELF']; //$web_root = $HTTP_SERVER_VARS["HTTP_HOST"] . $HTTP_SERVER_VARS["REQUEST_URI"]; -$web_root = $_ENV["HOSTNAME"] . $HTTP_SERVER_VARS["REQUEST_URI"]; +$web_root = ($_ENV["HOSTNAME"]=='')? $HTTP_SERVER_VARS["HTTP_HOST"]:$_ENV["HOSTNAME"]; +$web_root .= $HTTP_SERVER_VARS["REQUEST_URI"]; $web_root = str_replace("/install.php", "", $web_root); $web_root = "http://".$web_root; From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 22 05:34:27 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Thu, 22 Mar 2007 09:34:27 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10516 - in /vtigercrm/branches/5.0.3: Smarty/templates/Webmails.tpl include/js/en_us.lang.js modules/Webmails/ListView.php modules/Webmails/Webmails.js modules/Webmails/Webmails.php modules/Webmails/language/en_us.lang.php Message-ID: <20070322093427.C257F7C8181@vtiger.fosslabs.com> Author: jerrydgeorge Date: Thu Mar 22 03:33:40 2007 New Revision: 10516 Log: Issues in Webmails has been fixed Modified: vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl vtigercrm/branches/5.0.3/include/js/en_us.lang.js vtigercrm/branches/5.0.3/modules/Webmails/ListView.php vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js vtigercrm/branches/5.0.3/modules/Webmails/Webmails.php vtigercrm/branches/5.0.3/modules/Webmails/language/en_us.lang.php Modified: vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl ============================================================================== --- vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl (original) +++ vtigercrm/branches/5.0.3/Smarty/templates/Webmails.tpl Thu Mar 22 03:33:40 2007 @@ -115,15 +115,8 @@ {if $DEGRADED_SERVICE eq 'false'}
- We aim to be - simply the best. Come on over, there is space for you too! + We aim to be -simply the best.Come on over,there is space for you too! + From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 29 05:20:09 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Thu, 29 Mar 2007 09:20:09 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10518 - /vtigercrm/branches/5.0.3/tabdata.php Message-ID: <20070329092009.101BF7C7FF9@vtiger.fosslabs.com> Author: richie Date: Thu Mar 29 03:20:04 2007 New Revision: 10518 Log: * Added entry for Users module which was missed earlier Modified: vtigercrm/branches/5.0.3/tabdata.php Modified: vtigercrm/branches/5.0.3/tabdata.php ============================================================================== --- vtigercrm/branches/5.0.3/tabdata.php (original) +++ vtigercrm/branches/5.0.3/tabdata.php Thu Mar 29 03:20:04 2007 @@ -11,7 +11,7 @@ //This file contains the commonly used variables -$tab_info_array=array('Home'=>3,'Leads'=>7,'Accounts'=>6,'Contacts'=>4,'Potentials'=>2,'Notes'=>8,'Calendar'=>9,'Emails'=>10,'HelpDesk'=>13,'Products'=>14,'Dashboard'=>1,'Faq'=>15,'Events'=>16,'Vendors'=>18,'PriceBooks'=>19,'Quotes'=>20,'PurchaseOrder'=>21,'SalesOrder'=>22,'Invoice'=>23,'Rss'=>24,'Reports'=>25,'Campaigns'=>26,'Portal'=>27,'Webmails'=>28,); +$tab_info_array=array('Home'=>3,'Leads'=>7,'Accounts'=>6,'Contacts'=>4,'Potentials'=>2,'Notes'=>8,'Calendar'=>9,'Emails'=>10,'HelpDesk'=>13,'Products'=>14,'Dashboard'=>1,'Faq'=>15,'Events'=>16,'Vendors'=>18,'PriceBooks'=>19,'Quotes'=>20,'PurchaseOrder'=>21,'SalesOrder'=>22,'Invoice'=>23,'Rss'=>24,'Reports'=>25,'Campaigns'=>26,'Portal'=>27,'Webmails'=>28,'Users'=>29,); $tab_seq_array=array('3'=>0,'7'=>0,'6'=>0,'4'=>0,'2'=>0,'8'=>0,'9'=>0,'10'=>0,'13'=>0,'14'=>0,'1'=>0,'15'=>0,'16'=>2,'18'=>0,'19'=>0,'20'=>0,'21'=>0,'22'=>0,'23'=>0,'24'=>0,'25'=>0,'26'=>0,'27'=>0,'28'=>0,); ?> From vtigercrm-commits at vtiger.fosslabs.com Thu Mar 29 05:29:21 2007 From: vtigercrm-commits at vtiger.fosslabs.com (vtigercrm-commits at vtiger.fosslabs.com) Date: Thu, 29 Mar 2007 09:29:21 -0000 Subject: [Vtigercrm-commits] [vtiger-commits] r10519 - /vtigercrm/branches/5.0.3/install/2setConfig.php Message-ID: <20070329092922.2808E7D2606@vtiger.fosslabs.com> Author: richie Date: Thu Mar 29 03:29:16 2007 New Revision: 10519 Log: Message added for the currency configuration Modified: vtigercrm/branches/5.0.3/install/2setConfig.php Modified: vtigercrm/branches/5.0.3/install/2setConfig.php ============================================================================== --- vtigercrm/branches/5.0.3/install/2setConfig.php (original) +++ vtigercrm/branches/5.0.3/install/2setConfig.php Thu Mar 29 03:29:16 2007 @@ -1,525 +1,528 @@ -$value) { - $language_keys[] = $key; - $language_values[] = $value; - } - $_SESSION['language_keys'] = urlencode(implode(",",$language_keys)); - $_SESSION['language_values'] = urlencode(implode(",",$language_values)); - } - - global $dbconfig; - - if (isset($_REQUEST['db_hostname'])) - $db_hostname = $_REQUEST['db_hostname']; - elseif (isset($dbconfig['db_hostname'])) - $db_hostname = $dbconfig['db_hostname']; - else - $db_hostname = $hostname; - - if (isset($_REQUEST['db_username'])) - $db_username = $_REQUEST['db_username']; - elseif (isset($dbconfig['db_username'])) - $db_username = $dbconfig['db_username']; - - if (isset($_REQUEST['db_password'])) - $db_password = $_REQUEST['db_password']; - elseif (isset($dbconfig['db_password'])) - $db_password = $dbconfig['db_password']; - - if (isset($_REQUEST['db_type'])) - $db_type = $_REQUEST['db_type']; - elseif (isset($dbconfig['db_type'])) - $db_type = $dbconfig['db_type']; - - if (isset($_REQUEST['db_name'])) - $db_name = $_REQUEST['db_name']; - elseif (isset($dbconfig['db_name']) && $dbconfig['db_name']!='_DBC_NAME_') - $db_name = $dbconfig['db_name']; - else - $db_name = 'vtigercrm503'; - - !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; - if (isset($_REQUEST['host_name'])) $host_name = $_REQUEST['host_name']; - else $host_name = $hostname; - - if (isset($_REQUEST['site_URL'])) $site_URL = $_REQUEST['site_URL']; - elseif (isset($site_URL) && $site_URL!='_SITE_URL_') - $site_URL = $site_URL; - else $site_URL = $web_root; - - if(isset($_REQUEST['root_directory'])) $root_directory = $_REQUEST['root_directory']; - else $root_directory = $current_dir; - - if (isset($_REQUEST['cache_dir'])) - $cache_dir= $_REQUEST['cache_dir']; - - if (isset($_REQUEST['mail_server'])) - $mail_server= $_REQUEST['mail_server']; - - if (isset($_REQUEST['mail_server_username'])) - $mail_server_username= $_REQUEST['mail_server_username']; - - if (isset($_REQUEST['mail_server_password'])) - $mail_server_password= $_REQUEST['mail_server_password']; - - if (isset($_REQUEST['admin_email'])) - $admin_email = $_REQUEST['admin_email']; - - if (isset($_REQUEST['admin_password'])) - $admin_password = $_REQUEST['admin_password']; - - if (isset($_REQUEST['currency_name'])) - $currency_name = $_REQUEST['currency_name']; - else - $currency_name = ''; - - if (isset($_REQUEST['currency_symbol'])) - $currency_symbol = $_REQUEST['currency_symbol']; - - if (isset($_REQUEST['currency_code'])) - $currency_code = $_REQUEST['currency_code']; - - } - else { - !isset($_REQUEST['db_hostname']) ? $db_hostname = $hostname: $db_hostname = $_REQUEST['db_hostname']; - !isset($_REQUEST['db_name']) ? $db_name = "vtigercrm503" : $db_name = $_REQUEST['db_name']; - !isset($_REQUEST['db_drop_tables']) ? $db_drop_tables = "0" : $db_drop_tables = $_REQUEST['db_drop_tables']; - !isset($_REQUEST['host_name']) ? $host_name= $hostname : $host_name= $_REQUEST['host_name']; - !isset($_REQUEST['site_URL']) ? $site_URL = $web_root : $site_URL = $_REQUEST['site_URL']; - !isset($_REQUEST['root_directory']) ? $root_directory = $current_dir : $root_directory = stripslashes($_REQUEST['root_directory']); - !isset($_REQUEST['cache_dir']) ? $cache_dir = $cache_dir : $cache_dir = stripslashes($_REQUEST['cache_dir']); - !isset($_REQUEST['mail_server']) ? $mail_server = $mail_server : $mail_server = stripslashes($_REQUEST['mail_server']); - !isset($_REQUEST['mail_server_username']) ? $mail_server_username = $mail_server_username : $mail_server_username = stripslashes($_REQUEST['mail_server_username']); - !isset($_REQUEST['mail_server_password']) ? $mail_server_password = $mail_server_password : $mail_server_password = stripslashes($_REQUEST['mail_server_password']); - !isset($_REQUEST['admin_email']) ? $admin_email = "" : $admin_email = $_REQUEST['admin_email']; - } - !isset($_REQUEST['check_createdb']) ? $check_createdb = "" : $check_createdb = $_REQUEST['check_createdb']; - !isset($_REQUEST['root_user']) ? $root_user = "" : $root_user = $_REQUEST['root_user']; - !isset($_REQUEST['root_password']) ? $root_password = "" : $root_password = $_REQUEST['root_password']; - // determine database options - $db_options = array(); - if(function_exists('mysql_connect')) { - $db_options['mysql'] = 'MySQL'; - } - if(function_exists('pg_connect')) { - $db_options['pgsql'] = 'Postgres'; - } -?> - - - -