phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] email/setup tables_update.inc.php, 1.4 setup.inc.php,


From: skwashd
Subject: [Phpgroupware-cvs] email/setup tables_update.inc.php, 1.4 setup.inc.php, 1.26 tables_current.inc.php, 1.3
Date: Sun, 15 May 2005 16:27:00 +0200

Update of email/setup

Modified Files:
     Branch: MAIN
            tables_update.inc.php lines: +8 -37
            setup.inc.php lines: +6 -7
            tables_current.inc.php lines: +5 -5

Log Message:
little fixes and tidy ups

====================================================
Index: email/setup/tables_update.inc.php
diff -u email/setup/tables_update.inc.php:1.3 
email/setup/tables_update.inc.php:1.4
--- email/setup/tables_update.inc.php:1.3       Sun May 15 12:21:51 2005
+++ email/setup/tables_update.inc.php   Sun May 15 14:27:53 2005
@@ -1,44 +1,18 @@
 <?php
        /**
-       * EMail - Setup
+       * phpGroupWare EMail - http://phpGroupWare.org
        *
        * @author Angles <address@hidden>
-       * @copyright Copyright (C) xxxx Angles
-       * @copyright Copyright (C) 2003,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @copyright Copyright (C) 2001-2004 Angelo Tony Puglisi
+       * @copyright Portions Copyright (C) 2003-2005 Free Software Foundation, 
Inc. http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package email
        * @subpackage setup
        * @version $Id$
-       * @internal Based on Anglemail http://www.anglemail.org/
+       * @internal Based on AeroMail by Mark Cushman <address@hidden>
        */

-       /*
        $test[] = '0.9.13.002';
-       function email_upgrade0_9_13_002()
-       {
-               $GLOBALS['phpgw_setup']->oProc->CreateTable(
-                       'phpgw_anglemail' => array(
-                               'fd' => array(
-                                       'account_id' => array('type' => 
'varchar', 'precision' => 20, 'nullable' => false),
-                                       'data_key' => array('type' => 
'varchar', 'precision' => 255, 'nullable' => False, 'default' => ''),
-                                       'content' => array('type' => 'text', 
'nullable' => False, 'default' => ''),
-                               ),
-                               'pk' => array('account_id', 'data_key'),
-                               'fk' => array(),
-                               'ix' => array(),
-                               'uc' => array()
-                       )
-               );
-
-               //$GLOBALS['setup_info']['email']['currentver'] = 
'0.9.13.110805';
-               $GLOBALS['setup_info']['email']['currentver'] = '0.9.13.003';
-               return $GLOBALS['setup_info']['email']['currentver'];
-       }
-       */
-
-
-       $test[] = '0.9.13.002';
-
        /**
        * Update from 0.9.13.002 to 0.9.13.003
        *
@@ -61,15 +35,12 @@
                                'uc' => array()
                        )
                );
-
-               //$setup_info['email']['currentver'] = '0.9.13.110805';
-               $setup_info['email']['currentver'] = '0.9.13.003';
-               return $setup_info['email']['currentver'];
+               return $GLOBALS['setup_info']['email']['currentver'] = 
'0.9.13.003';
        }

+       $test[] = '0.9.13.003';
        function email_upgrade0_9_13_003()
        {
-               $setup_info['email']['currentver'] = '0.9.17.500';
-               return $setup_info['email']['currentver'];
+               return $GLOBALS['setup_info']['email']['currentver']= 
'0.9.17.500';
        }
 ?>

====================================================
Index: email/setup/setup.inc.php
diff -u email/setup/setup.inc.php:1.25 email/setup/setup.inc.php:1.26
--- email/setup/setup.inc.php:1.25      Sun May 15 12:21:51 2005
+++ email/setup/setup.inc.php   Sun May 15 14:27:52 2005
@@ -1,20 +1,18 @@
 <?php
        /**
-       * EMail - Setup
+       * phpGroupWare EMail - http://phpGroupWare.org
        *
        * @author Angles <address@hidden>
-       * @copyright Copyright (C) xxxx Angles
-       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @copyright Copyright (C) 2001-2004 Angelo Tony Puglisi
+       * @copyright Portions Copyright (C) 2003-2005 Free Software Foundation, 
Inc. http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package email
        * @subpackage setup
        * @version $Id$
-       * @internal Based on Anglemail http://www.anglemail.org/
+       * @internal Based on AeroMail by Mark Cushman <address@hidden>
        */

        $setup_info['email']['name']      = 'email';
-       $setup_info['email']['title']     = 'Email';
-       //$setup_info['email']['version']   = '0.9.13.110805';
        $setup_info['email']['version']   = '0.9.17.500';
        $setup_info['email']['app_order'] = '2';
        $setup_info['email']['enable']    = 1;
@@ -24,6 +22,7 @@
        $setup_info['email']['license']  = 'GPL';
        $setup_info['email']['description'] =
                'phpGroupWare Email reader with multiple accounts and mailbox 
filtering.';
+       $setup_info['email']['globals_checked'] = True;

         $setup_info['email']['maintainer'] = array(
                'name'  => 'Dave Hall',

====================================================
Index: email/setup/tables_current.inc.php
diff -u email/setup/tables_current.inc.php:1.2 
email/setup/tables_current.inc.php:1.3
--- email/setup/tables_current.inc.php:1.2      Wed May 11 14:08:27 2005
+++ email/setup/tables_current.inc.php  Sun May 15 14:27:53 2005
@@ -1,15 +1,15 @@
 <?php
        /**
-       * EMail - Setup
+       * phpGroupWare EMail - http://phpGroupWare.org
        *
        * @author Angles <address@hidden>
-       * @copyright Copyright (C) xxxx Angles
-       * @copyright Copyright (C) 2003,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @copyright Copyright (C) 2001-2004 Angelo Tony Puglisi
+       * @copyright Portions Copyright (C) 2003-2005 Free Software Foundation, 
Inc. http://www.fsf.org/
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package email
        * @subpackage setup
        * @version $Id$
-       * @internal Based on Anglemail http://www.anglemail.org/
+       * @internal Based on AeroMail by Mark Cushman <address@hidden>
        */

        $phpgw_baseline = array(






reply via email to

[Prev in Thread] Current Thread [Next in Thread]