Removed support for dBase, Frontbase, and mSQL database servers.
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 26 May 2010 19:35:43 +0000 (13:35 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 27 May 2010 16:44:52 +0000 (10:44 -0600)
At a minimum, none of these are supported by PDO drivers.

framework/Core/lib/Horde/Config.php
horde/docs/UPGRADING

index c2f6734..4cb8973 100644 (file)
@@ -951,26 +951,6 @@ class Horde_Config
                     'desc' => '[None]',
                     'fields' => array()
                 ),
-                'dbase' => array(
-                    'desc' => 'dBase',
-                    'fields' => array(
-                        'database' => array(
-                            '_type' => 'text',
-                            'required' => true,
-                            'desc' => 'Absolute path to the database file',
-                            'default' => $this->_default($ctx . '|database', '')
-                        ),
-                        'mode' => array(
-                            '_type' => 'enum',
-                            'desc' => 'The mode to open the file with',
-                            'values' => array(
-                                0 => 'Read Only',
-                                2 => 'Read Write'),
-                            'default' => $this->_default($ctx . '|mode', 2)
-                        ),
-                        'charset' => $charset
-                    )
-                ),
                 'ibase' => array(
                     'desc' => 'Firebird/InterBase',
                     'fields' => array(
@@ -1009,17 +989,6 @@ class Horde_Config
                         'charset' => $charset
                     )
                 ),
-                'fbsql' => array(
-                    'desc' => 'Frontbase',
-                    'fields' => array(
-                        'persistent' => $persistent,
-                        'hostspec' => $hostspec,
-                        'username' => $username,
-                        'password' => $password,
-                        'database' => $database,
-                        'charset' => $charset
-                    )
-                ),
                 'ifx' => array(
                     'desc' => 'Informix',
                     'fields' => array(
@@ -1030,20 +999,8 @@ class Horde_Config
                         'charset' => $charset
                     )
                 ),
-                'msql' => array(
-                    'desc' => 'mSQL',
-                    'fields' => array(
-                        'persistent' => $persistent,
-                        'hostspec' => $hostspec,
-                        'username' => $username,
-                        'password' => $password,
-                        'port' => $port,
-                        'database' => $database,
-                        'charset' => $charset
-                    )
-                ),
                 'mssql' => array(
-                    'desc' => 'MS SQL Server',
+                    'desc' => 'MS SQL/Sybase Server',
                     'fields' => array(
                         'persistent' => $persistent,
                         'hostspec' => $hostspec,
@@ -1156,23 +1113,6 @@ class Horde_Config
                         ),
                         'charset' => $charset
                     )
-                ),
-                'sybase' => array(
-                    'desc' => 'Sybase',
-                    'fields' => array(
-                        'persistent' => $persistent,
-                        'hostspec' => $hostspec,
-                        'username' => $username,
-                        'password' => $password,
-                        'database' => $database,
-                        'appname' => array(
-                            '_type' => 'text',
-                            'desc' => 'Application Name',
-                            'required' => false,
-                            'default' => $this->_default($ctx . '|appname', '')
-                        ),
-                        'charset' => $charset
-                    )
                 )
             )
         );
index 541da14..f664aa9 100644 (file)
@@ -43,6 +43,8 @@ Horde_Alarm is using UTC dates now.
 
 Crypt_Blowfish is required.
 
+Removed support for dBase, Frontbase, and mSQL database servers.
+
 
 Upgrading Horde from 3.3.x to 3.3.5
 ===================================