phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: phpgwapi/setup default_records.inc.php, 1.4.2.6.


From: Dave Hall <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/setup default_records.inc.php, 1.4.2.6.2.1, 1.4.2.6.2.2 tables_current.inc.php, 1.32.2.6.2.9, 1.32.2.6.2.10 tables_update.inc.php, 1.53.2.9.2.14, 1.53.2.9.2.15
Date: Mon, 08 Sep 2003 09:26:41 -0400

Update of /cvsroot/phpgroupware/phpgwapi/setup
In directory subversions:/tmp/cvs-serv589/phpgwapi/setup

Modified Files:
      Tag: Version-0_9_16-branch
        default_records.inc.php tables_current.inc.php 
        tables_update.inc.php 
Log Message:
Adding new contacts backend ... and associated code


Index: default_records.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/default_records.inc.php,v
retrieving revision 1.4.2.6.2.1
retrieving revision 1.4.2.6.2.2
diff -C2 -r1.4.2.6.2.1 -r1.4.2.6.2.2
*** default_records.inc.php     2 Apr 2003 16:56:59 -0000       1.4.2.6.2.1
--- default_records.inc.php     8 Sep 2003 13:26:38 -0000       1.4.2.6.2.2
***************
*** 156,158 ****
--- 156,282 ----
        $oProc->query ("INSERT INTO phpgw_vfs (owner_id, createdby_id, 
modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, 
directory, name, link_directory, link_name) VALUES 
(0,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','', NULL, NULL)");
        $oProc->query ("INSERT INTO phpgw_vfs (owner_id, createdby_id, 
modifiedby_id, created, modified, size, mime_type, deleteable, comment, app, 
directory, name, link_directory, link_name) VALUES 
(0,0,0,'1970-01-01',NULL,NULL,'Directory','Y',NULL,NULL,'/','home', NULL, 
NULL)");
+       
+ 
+       $oProc->query("INSERT INTO phpgw_contact_types 
(contact_type_descr,contact_type_table) VALUES 
('Persons','phpgw_contact_person')");
+       $oProc->query("INSERT INTO phpgw_contact_types 
(contact_type_descr,contact_type_table) VALUES 
('Organizations','phpgw_contact_org')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('email')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('phone')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('mobile phone')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('fax')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('instant messaging')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('url')");
+       $oProc->query("INSERT INTO phpgw_contact_comm_type (type) VALUES 
('other')");
+       // Address type
+       $oProc->query("INSERT INTO phpgw_contact_addr_type (description) VALUES 
('work')");
+       $oProc->query("INSERT INTO phpgw_contact_addr_type (description) VALUES 
('home')");
+ 
+       $db1 = $oProc;
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='email'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'home email'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'work email'" 
+                       .  ");");
+       }
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='phone'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'home phone'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'work phone'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'voice phone'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'msg phone'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'pager'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'bbs'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'modem'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'isdn'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'video'" 
+                       .  ");");
+       }
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='fax'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'home fax'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'work fax'" 
+                       .  ");");
+       }
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='mobile phone'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'mobile (cell) phone'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'car phone'" 
+                       .  ");");
+       }
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='instant messaging'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'msn'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'aim'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'yahoo'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'icq'" 
+                       .  ");");
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'jabber'" 
+                       .  ");");                               
+       }
+       $oProc->query("SELECT comm_type_id FROM phpgw_contact_comm_type WHERE 
type='url'"); 
+       while ($oProc->next_record())
+       {
+               $db1->query("INSERT INTO phpgw_contact_comm_descr 
(comm_type_id,descr) VALUES (" 
+                       . $oProc->f('comm_type_id') 
+                       . ",'website'" 
+                       .  ");");
+       }
  ?>

Index: tables_current.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/tables_current.inc.php,v
retrieving revision 1.32.2.6.2.9
retrieving revision 1.32.2.6.2.10
diff -C2 -r1.32.2.6.2.9 -r1.32.2.6.2.10
*** tables_current.inc.php      5 Jul 2003 20:35:56 -0000       1.32.2.6.2.9
--- tables_current.inc.php      8 Sep 2003 13:26:38 -0000       1.32.2.6.2.10
***************
*** 56,69 ****
                                'account_lid' => array('type' => 
'varchar','precision' => '25','nullable' => False),
                                'account_pwd' => array('type' => 
'varchar','precision' => '32','nullable' => False),
!                               'account_firstname' => array('type' => 
'varchar','precision' => '50'),
!                               'account_lastname' => array('type' => 
'varchar','precision' => '50'),
!                               'account_permissions' => array('type' => 
'text'),
!                               'account_groups' => array('type' => 
'varchar','precision' => '30'),
!                               'account_lastlogin' => array('type' => 
'int','precision' => '4'),
!                               'account_lastloginfrom' => array('type' => 
'varchar','precision' => '255'),
!                               'account_lastpwd_change' => array('type' => 
'int','precision' => '4'),
                                'account_status' => array('type' => 
'char','precision' => '1','nullable' => False,'default' => 'A'),
!                               'account_expires' => array('type' => 
'int','precision' => '4'),
!                               'account_type' => array('type' => 
'char','precision' => '1','nullable' => True)
                        ),
                        'pk' => array('account_id'),
--- 56,70 ----
                                'account_lid' => array('type' => 
'varchar','precision' => '25','nullable' => False),
                                'account_pwd' => array('type' => 
'varchar','precision' => '32','nullable' => False),
!                               'account_firstname' => array('type' => 
'varchar','precision' => '50','nullable' => False),
!                               'account_lastname' => array('type' => 
'varchar','precision' => '50','nullable' => False),
!                               'account_permissions' => array('type' => 
'text','nullable' => True),
!                               'account_groups' => array('type' => 
'varchar','precision' => '30','nullable' => True),
!                               'account_lastlogin' => array('type' => 
'int','precision' => '4','nullable' => True),
!                               'account_lastloginfrom' => array('type' => 
'varchar','precision' => '255','nullable' => True),
!                               'account_lastpwd_change' => array('type' => 
'int','precision' => '4','nullable' => True),
                                'account_status' => array('type' => 
'char','precision' => '1','nullable' => False,'default' => 'A'),
!                               'account_expires' => array('type' => 
'int','precision' => '4','nullable' => False),
!                               'account_type' => array('type' => 
'char','precision' => '1','nullable' => True),
!                               'person_id' => array('type' => 
'int','precision' => '4','nullable' => True)
                        ),
                        'pk' => array('account_id'),
***************
*** 366,369 ****
--- 367,562 ----
                        ),
                        'pk' => array('id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact' => array(
+                       'fd' => array(
+                               'contact_id' => array('type' => 
'auto','precision' => '4','nullable' => False),
+                               'owner' => array('type' => 'int','precision' => 
'4','nullable' => False),
+                               'access' => array('type' => 
'varchar','precision' => '7','nullable' => True),
+                               'cat_id' => array('type' => 
'varchar','precision' => '32','nullable' => True),
+                               'contact_type_id' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array('contact_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_person' => array(
+                       'fd' => array(
+                               'person_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'first_name' => array('type' => 
'varchar','precision' => '64','nullable' => False),
+                               'last_name' => array('type' => 
'varchar','precision' => '64','nullable' => False),
+                               'middle_name' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'prefix' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'suffix' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'birthday' => array('type' => 
'varchar','precision' => '32','nullable' => True),
+                               'pubkey' => array('type' => 'text','nullable' 
=> True),
+                               'title' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'department' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'initials' => array('type' => 
'varchar','precision' => '10','nullable' => True),
+                               'sound' => array('type' => 
'varchar','precision' => '64','nullable' => True),
+                               'active' => array('type' => 'char','precision' 
=> '1','nullable' => True,'default' => 'Y'),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array(),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_org' => array(
+                       'fd' => array(
+                               'org_id' => array('type' => 'int','precision' 
=> '4','nullable' => False),
+                               'name' => array('type' => 'varchar','precision' 
=> '80','nullable' => False),
+                               'active' => array('type' => 'char','precision' 
=> '1','nullable' => False,'default' => 'Y'),
+                               'parent' => array('type' => 'int','precision' 
=> '4','nullable' => True),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array(),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_org_person' => array(
+                       'fd' => array(
+                               'org_id' => array('type' => 'int','precision' 
=> '4','nullable' => False),
+                               'person_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'addr_id' => array('type' => 'int','precision' 
=> '4','nullable' => True),
+                               'preferred' => array('type' => 
'char','precision' => '1','nullable' => False,'default' => 'N'),
+                                 'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array('org_id','person_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_addr' => array(
+                       'fd' => array(
+                               'contact_addr_id' => array('type' => 
'auto','nullable' => False),
+                               'contact_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'addr_type_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'add1' => array('type' => 'varchar','precision' 
=> '50','nullable' => True),
+                               'add2' => array('type' => 'varchar','precision' 
=> '50','nullable' => True),
+                               'add3' => array('type' => 'varchar','precision' 
=> '50','nullable' => True),
+                               'city' => array('type' => 'varchar','precision' 
=> '50','nullable' => True),
+                               'state' => array('type' => 
'varchar','precision' => '30','nullable' => True),
+                               'postal_code' => array('type' => 
'varchar','precision' => '20','nullable' => True),
+                               'country' => array('type' => 
'varchar','precision' => '40','nullable' => True),
+                               'tz' => array('type' => 'varchar','precision' 
=> '40','nullable' => True),
+                               'preferred' => array('type' => 
'char','precision' => '1','nullable' => False,'default' => 'N'),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array('contact_addr_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_note' => array(
+                       'fd' => array(
+                               'contact_note_id' => array('type' => 
'auto','nullable' => False),
+                               'contact_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'note_type_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'note_text' => array('type' => 
'text','nullable' => False),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array('contact_note_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_others' => array(
+                       'fd' => array(
+                               'other_id' => array('type' => 'auto','nullable' 
=> False),
+                               'contact_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'contact_owner' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'other_name' => array('type' => 
'varchar','precision' => '255','nullable' => False),
+                               'other_value' => array('type' => 
'text','nullable' => False)
+                       ),
+                       'pk' => array('other_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_comm' => array(
+                       'fd' => array(
+                               'comm_id' => array('type' => 'auto','nullable' 
=> False),
+                               'contact_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'comm_descr_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'preferred' => array('type' => 
'char','precision' => '1','nullable' => False,'default' => 'N'),
+                               'comm_data' => array('type' => 
'varchar','precision' => '255','nullable' => False),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array('comm_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_comm_descr' => array(
+                       'fd' => array(
+                               'comm_descr_id' => array('type' => 
'auto','nullable' => False),
+                               'comm_type_id' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'descr' => array('type' => 
'varchar','precision' => '50','nullable' => True)
+                       ),
+                       'pk' => array('comm_descr_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_comm_type' => array(
+                       'fd' => array(
+                               'comm_type_id' => array('type' => 
'auto','nullable' => False),
+                               'type' => array('type' => 'varchar','precision' 
=> '50','nullable' => True),
+                               'active' => array('type' => 
'varchar','precision' => '30','nullable' => True),
+                               'class' => array('type' => 
'varchar','precision' => '30','nullable' => True)
+                       ),
+                       'pk' => array('comm_type_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_types' => array(
+                       'fd' => array(
+                               'contact_type_id' => array('type' => 
'auto','nullable' => False),
+                               'contact_type_descr' => array('type' => 
'varchar','precision' => '50','nullable' => True),
+                               'contact_type_table' => array('type' => 
'varchar','precision' => '50','nullable' => True)
+                       ),
+                       'pk' => array('contact_type_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_addr_type' => array(
+                       'fd' => array(
+                               'addr_type_id' => array('type' => 
'auto','nullable' => False),
+                               'description' => array('type' => 
'varchar','precision' => '50','nullable' => False)
+                       ),
+                       'pk' => array('addr_type_id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+               'phpgw_contact_note_type' => array(
+                       'fd' => array(
+                               'note_type_id' => array('type' => 
'auto','nullable' => False),
+                               'description' => array('type' => 
'varchar','precision' => '30','nullable' => False)
+                       ),
+                       'pk' => array('note_type_id'),
                        'fk' => array(),
                        'ix' => array(),

Index: tables_update.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/tables_update.inc.php,v
retrieving revision 1.53.2.9.2.14
retrieving revision 1.53.2.9.2.15
diff -C2 -r1.53.2.9.2.14 -r1.53.2.9.2.15
*** tables_update.inc.php       21 Jul 2003 17:44:20 -0000      1.53.2.9.2.14
--- tables_update.inc.php       8 Sep 2003 13:26:38 -0000       1.53.2.9.2.15
***************
*** 14,20 ****
  
        /* Include older phpGroupWare update support */
!       include('tables_update_0_9_9.inc.php');
!       include('tables_update_0_9_10.inc.php');
!       include('tables_update_0_9_12.inc.php');
  
        /* This is since the last release */
--- 14,20 ----
  
        /* Include older phpGroupWare update support */
[...1179 lines suppressed...]
+               
$GLOBALS['phpgw_setup']->oProc->DropColumn('phpgw_contact_org',array(
+                       'fd' => array(
+                               'org_id' => array('type' => 'int','precision' 
=> '4','nullable' => False),
+                               'name' => array('type' => 'varchar','precision' 
=> '80','nullable' => False),
+                               'active' => array('type' => 'char','precision' 
=> '1','nullable' => False,'default' => 'Y'),
+                               'parent' => array('type' => 'int','precision' 
=> '4','nullable' => True),
+                               'created_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'created_by' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_on' => array('type' => 
'int','precision' => '4','nullable' => False),
+                               'modified_by' => array('type' => 
'int','precision' => '4','nullable' => False)
+                       ),
+                       'pk' => array(),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+                       ),'ab_id');
+               // Paste this below!!!
+               $GLOBALS['setup_info']['phpgwapi']['currentver'] = '0.9.14.509';
                return $GLOBALS['setup_info']['phpgwapi']['currentver'];
        }





reply via email to

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