tbrehm
2009-05-04 6149e17b80b0b3466db725831a6b95f54092756b
Removed some unmaintained tables and files and introduced the pre_update.sql script for sql commands to be run before an update.
22 files deleted
1 files added
2 files modified
1429 ■■■■■ changed files
install/sql/ispconfig3.sql 257 ●●●●● patch | view | raw | blame | history
install/sql/pre_update.sql 46 ●●●●● patch | view | raw | blame | history
install/update.php 9 ●●●●● patch | view | raw | blame | history
interface/web/domain/README_DEVELOPER.txt 53 ●●●●● patch | view | raw | blame | history
interface/web/domain/domain_del.php 66 ●●●●● patch | view | raw | blame | history
interface/web/domain/domain_edit.php 116 ●●●●● patch | view | raw | blame | history
interface/web/domain/domain_list.php 23 ●●●●● patch | view | raw | blame | history
interface/web/domain/form/domain.tform.php 165 ●●●●● patch | view | raw | blame | history
interface/web/domain/handle_list.php 23 ●●●●● patch | view | raw | blame | history
interface/web/domain/lib/admin.conf.php 2 ●●●●● patch | view | raw | blame | history
interface/web/domain/lib/lang/en.lng 3 ●●●●● patch | view | raw | blame | history
interface/web/domain/lib/lang/en_domain.lng 17 ●●●●● patch | view | raw | blame | history
interface/web/domain/lib/lang/en_domain_list.lng 10 ●●●●● patch | view | raw | blame | history
interface/web/domain/lib/module.conf.php 38 ●●●●● patch | view | raw | blame | history
interface/web/domain/list/domain.list.php 60 ●●●●● patch | view | raw | blame | history
interface/web/domain/list/handle.list.php 50 ●●●●● patch | view | raw | blame | history
interface/web/domain/list/provider.list.php 50 ●●●●● patch | view | raw | blame | history
interface/web/domain/list/tld.list.php 50 ●●●●● patch | view | raw | blame | history
interface/web/domain/provider_list.php 23 ●●●●● patch | view | raw | blame | history
interface/web/domain/templates/domain_edit.htm 94 ●●●●● patch | view | raw | blame | history
interface/web/domain/templates/domain_handle_list.htm 56 ●●●●● patch | view | raw | blame | history
interface/web/domain/templates/domain_list.htm 65 ●●●●● patch | view | raw | blame | history
interface/web/domain/templates/domain_provider_list.htm 65 ●●●●● patch | view | raw | blame | history
interface/web/domain/templates/domain_tld_list.htm 65 ●●●●● patch | view | raw | blame | history
interface/web/domain/tld_list.php 23 ●●●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql
@@ -41,126 +41,6 @@
-- --------------------------------------------------------
-- 
-- Table structure for table  `billing_invoice`
--
CREATE TABLE `billing_invoice` (
  `billing_invoice_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `invoice_number` varchar(32) NOT NULL default '',
  `invoice_date` date default NULL,
  `xml` longtext NOT NULL,
  `total_fee_net` decimal(10,4) NOT NULL default '0.00',
  `total_fee_gross` decimal(10,4) NOT NULL default '0.00',
  `currency_code` char(3) default 'EUR',
  PRIMARY KEY  (`billing_invoice_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `billing_product`
--
CREATE TABLE `billing_product` (
  `billing_product_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `parent_id` int(11) unsigned NOT NULL default '0',
  `product_name` varchar(64) default NULL,
  `product_details` varchar(256) default NULL,
  `template_id` int(11) unsigned NOT NULL default '0',
  `service_class_id` int(11) unsigned NOT NULL default '0',
  `billing_tax_id` int(11) unsigned NOT NULL default '0',
  `setup_fee_gross` decimal(10,4) NOT NULL default '0.00',
  `interval_fee_gross` decimal(10,4) NOT NULL default '0.00',
  `interval_length` tinyint(3) NOT NULL default '0',
  `interval_type` enum('non-recurring','hour','day','week','month','quarter','year') NOT NULL default 'non-recurring',
  `interval_payment` enum('prepaid','postpaid') NOT NULL default 'prepaid',
  `clearing_period` tinyint(3) unsigned default '1',
  `currency_code` char(3) default 'EUR',
  PRIMARY KEY  (`billing_product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `billing_service`
--
CREATE TABLE `billing_service` (
  `billing_service_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `product_id` int(11) unsigned default NULL,
  `product_pid` int(11) unsigned default NULL,
  `product_name` varchar(64) default NULL,
  `product_details` varchar(256) default NULL,
  `service_class_id` int(11) unsigned default '0',
  `service_template_id` int(11) unsigned default NULL,
  `service_id` int(11) unsigned default NULL,
  `billing_tax_id` int(11) unsigned NOT NULL default '1',
  `quantity` smallint(5) unsigned NOT NULL default '1',
  `setup_fee_gross` decimal(10,4) NOT NULL default '0.00',
  `interval_fee_gross` decimal(10,4) default '0.00',
  `interval_fee_is_individual` tinyint(1) default '0',
  `interval_length` int(11) NOT NULL default '1',
  `interval_type` enum('non-recurring','hour','day','week','month','quarter','year') NOT NULL default 'non-recurring',
  `interval_payment` enum('prepaid','postpaid') NOT NULL default 'prepaid',
  `clearing_period` tinyint(3) unsigned default '1',
  `currency_code` char(3) default 'EUR',
  `is_active` tinyint(1) NOT NULL default '0',
  `service_start_at` date default NULL,
  `service_end_at` date default NULL,
  `invoiced_upto` date default NULL,
  PRIMARY KEY  (`billing_service_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `billing_service_class`
--
CREATE TABLE `billing_service_class` (
  `billing_service_class_id` int(11) unsigned NOT NULL auto_increment,
  `name` varchar(64) NOT NULL default '',
  `sort_order` int(11) unsigned NOT NULL default '0',
  PRIMARY KEY  (`billing_service_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `billing_tax`
--
CREATE TABLE `billing_tax` (
  `billing_tax_id` int(11) unsigned NOT NULL auto_increment,
  `name` varchar(64) NOT NULL default '',
  `tax_rate` decimal(10,4) default NULL,
  `is_default` tinyint(1) NOT NULL default '0',
  `valid_from` date default NULL,
  `valid_till` date default NULL,
  PRIMARY KEY  (`billing_tax_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `client`
-- 
@@ -222,38 +102,6 @@
  `template_additional` varchar(255) NOT NULL default '',
  `created_at` datetime default NULL,
  PRIMARY KEY  (`client_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `client_address_book`
--
CREATE TABLE `client_address_book` (
  `client_address_book_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `entry_role` enum('Standard','Other','Administrator','Abuse','Accounting','Owner','Emergency','Technician','Signatory') default 'Standard',
  `entry_company` varchar(64) default NULL,
  `entry_gender` enum('m','f') default NULL,
  `entry_title` varchar(16) default NULL,
  `entry_firstname` varchar(32) NOT NULL,
  `entry_lastname` varchar(32) NOT NULL,
  `entry_address1` varchar(64) default NULL,
  `entry_address2` varchar(64) default NULL,
  `entry_postcode` varchar(32) NOT NULL,
  `entry_city` varchar(64) NOT NULL,
  `entry_state` varchar(32) default NULL,
  `entry_country` char(2) default NULL,
  `entry_phone` varchar(32) default NULL,
  `entry_fax` varchar(32) default NULL,
  `entry_mobile` varchar(32) default NULL,
  `entry_email` varchar(256) default NULL,
  PRIMARY KEY  (`client_address_book_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
@@ -371,94 +219,6 @@
  `template` text,
  `visible` enum('N','Y') NOT NULL default 'Y',
  PRIMARY KEY  (`template_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `domain`
--
CREATE TABLE `domain` (
  `domain_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `domain_provider_id` int(11) unsigned NOT NULL default '0',
  `provider_domain_id` int(11) unsigned default NULL,
  `domain` varchar(255) NOT NULL default '',
  `tld` varchar(32) NOT NULL default '',
  `handle_desc` varchar(32) default NULL,
  `handle_admin_c` varchar(32) default NULL,
  `handle_tech_c` varchar(32) default NULL,
  `handle_zone_c` varchar(32) default NULL,
  `added_at` timestamp NULL default NULL,
  `connected_at` date default NULL,
  `disconnected_at` date default NULL,
  `status` varchar(64) NOT NULL default '0',
  PRIMARY KEY  (`domain_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `domain_handle`
--
CREATE TABLE `domain_handle` (
  `domain_handle_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `domain_registrar` varchar(64) default NULL,
  `handle` varchar(32) default NULL,
  PRIMARY KEY  (`domain_handle_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `domain_provider`
--
CREATE TABLE `domain_provider` (
  `domain_provider_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `provider` varchar(255) default NULL,
  `is_extern` tinyint(1) NOT NULL default '0',
  `domainrobot_interface` varchar(16) default '',
  PRIMARY KEY  (`domain_provider_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
--
-- Table structure for table  `domain_tld`
--
CREATE TABLE `domain_tld` (
  `domain_tld_id` int(11) unsigned NOT NULL auto_increment,
  `sys_userid` int(11) unsigned NOT NULL default '0',
  `sys_groupid` int(11) unsigned NOT NULL default '0',
  `sys_perm_user` varchar(5) default NULL,
  `sys_perm_group` varchar(5) default NULL,
  `sys_perm_other` varchar(5) default NULL,
  `sys_perm_all` varchar(5) default NULL,
  `tld` varchar(32) default NULL,
  `domain_provider_id` int(11) unsigned NOT NULL default '0',
  `domain_registrar` varchar(64) default NULL,
  PRIMARY KEY  (`domain_tld_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
-- --------------------------------------------------------
@@ -1329,23 +1089,6 @@
-- DB-DATA
-- --------------------------------------------------------
-- --------------------------------------------------------
--
-- Dumping data for table `billing_service_class`
--
INSERT INTO `billing_service_class` VALUES (1,'other',9999);
INSERT INTO `billing_service_class` VALUES (2,'hosting',10);
INSERT INTO `billing_service_class` VALUES (3,'domains',20);
INSERT INTO `billing_service_class` VALUES (4,'traffic',30);
INSERT INTO `billing_service_class` VALUES (5,'diskspace',40);
--
-- Dumping data for table `billing_tax_class`
--
INSERT INTO `billing_tax` VALUES (1,'USt. (DE)',19,1,'2007-01-01',NULL);
INSERT INTO `billing_tax` VALUES (2,'USt. ermäßigt (DE)',7,0,'2007-01-01',NULL);
-- 
-- Dumping data for table `dns_template`
install/sql/pre_update.sql
New file
@@ -0,0 +1,46 @@
/*
Copyright (c) 2007-2009, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
--
-- These SQL commands will be executed before the ISPConfig update is performed.
--
SET FOREIGN_KEY_CHECKS = 0;
DROP TABLE IF EXISTS `billing_invoice`;
DROP TABLE IF EXISTS `billing_product`;
DROP TABLE IF EXISTS `billing_service`;
DROP TABLE IF EXISTS `billing_service_class`;
DROP TABLE IF EXISTS `billing_tax`;
DROP TABLE IF EXISTS `client_address_book`;
DROP TABLE IF EXISTS `domain`;
DROP TABLE IF EXISTS `domain_handle`;
DROP TABLE IF EXISTS `domain_provider`;
DROP TABLE IF EXISTS `domain_tld`;
SET FOREIGN_KEY_CHECKS = 1;
install/update.php
@@ -119,6 +119,15 @@
    $conf["mysql"]["admin_password"] = $inst->free_query('MySQL root password', $conf['mysql']['admin_password']);
}
//** load the pre update sql script do perform modifications on the database before the database is dumped
if(is_file(ISPC_INSTALL_ROOT."/install/sql/pre_update.sql")) {
    if($conf['mysql']['admin_password'] == '') {
        caselog("mysql --default-character-set=".$conf['mysql']['charset']." -h '".$conf['mysql']['host']."' -u '".$conf['mysql']['admin_user']."' '".$conf['mysql']['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/pre_update.sql' &> /dev/null", __FILE__, __LINE__, 'read in ispconfig3.sql', 'could not read in ispconfig3.sql');
    } else {
        caselog("mysql --default-character-set=".$conf['mysql']['charset']." -h '".$conf['mysql']['host']."' -u '".$conf['mysql']['admin_user']."' -p'".$conf['mysql']['admin_password']."' '".$conf['mysql']['database']."' < '".ISPC_INSTALL_ROOT."/install/sql/pre_update.sql' &> /dev/null", __FILE__, __LINE__, 'read in ispconfig3.sql', 'could not read in ispconfig3.sql');
    }
}
//** export the current database data
if( !empty($conf["mysql"]["admin_password"]) ) {
interface/web/domain/README_DEVELOPER.txt
File was deleted
interface/web/domain/domain_del.php
File was deleted
interface/web/domain/domain_edit.php
File was deleted
interface/web/domain/domain_list.php
File was deleted
interface/web/domain/form/domain.tform.php
File was deleted
interface/web/domain/handle_list.php
File was deleted
interface/web/domain/lib/admin.conf.php
File was deleted
interface/web/domain/lib/lang/en.lng
File was deleted
interface/web/domain/lib/lang/en_domain.lng
File was deleted
interface/web/domain/lib/lang/en_domain_list.lng
File was deleted
interface/web/domain/lib/module.conf.php
File was deleted
interface/web/domain/list/domain.list.php
File was deleted
interface/web/domain/list/handle.list.php
File was deleted
interface/web/domain/list/provider.list.php
File was deleted
interface/web/domain/list/tld.list.php
File was deleted
interface/web/domain/provider_list.php
File was deleted
interface/web/domain/templates/domain_edit.htm
File was deleted
interface/web/domain/templates/domain_handle_list.htm
File was deleted
interface/web/domain/templates/domain_list.htm
File was deleted
interface/web/domain/templates/domain_provider_list.htm
File was deleted
interface/web/domain/templates/domain_tld_list.htm
File was deleted
interface/web/domain/tld_list.php
File was deleted