Update of /cvsroot/phpvortex/phpvortex/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4095/test
Modified Files:
vortex_test.php vortex_test_page.php
Added Files:
test_conf.php
Removed Files:
conf.php
Log Message:
Test programs: Renamed conf.php to test_conf.php
--- conf.php DELETED ---
Index: vortex_test_page.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test_page.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** vortex_test_page.php 10 Oct 2004 03:03:47 -0000 1.6
--- vortex_test_page.php 13 Oct 2004 15:24:02 -0000 1.7
***************
*** 17,21 ****
require_once('../SEC_Page.class.php');
/** Require the default configuration header. */
! require_once('conf.php');
/**
--- 17,21 ----
require_once('../SEC_Page.class.php');
/** Require the default configuration header. */
! require_once('test_conf.php');
/**
--- NEW FILE: test_conf.php ---
<?php
/**
* Configuration file for the Test programs.
*
* @package Vortex
* @subpackage Debug
* @author Thiago Ramon Gonçalves Montoya
* @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya
* @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License
*/
$db_connection = array(
'server' => 'localhost',
'db' => 'vortex_test',
'user' => 'root',
'pw' => ''
);
?>
Index: vortex_test.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** vortex_test.php 10 Oct 2004 03:03:47 -0000 1.12
--- vortex_test.php 13 Oct 2004 15:24:02 -0000 1.13
***************
*** 17,21 ****
require_once('TB_Test.class.php');
/** Require the default configuration header. */
! require_once('conf.php');
?>
--- 17,21 ----
require_once('TB_Test.class.php');
/** Require the default configuration header. */
! require_once('test_conf.php');
?>
|