[PHPVortex-Commit] phpvortex/test vortex_test_page.php,1.3,1.4
Brought to you by:
nop144666
From: Thiago R. <nop...@us...> - 2004-10-07 21:27:30
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3461/test Modified Files: vortex_test_page.php Log Message: Test programs: Changed vortex_test_page.php to use the new class SEC_Form Index: vortex_test_page.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test_page.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** vortex_test_page.php 7 Oct 2004 18:31:26 -0000 1.3 --- vortex_test_page.php 7 Oct 2004 21:27:11 -0000 1.4 *************** *** 32,50 **** 'opts' => array( 'title' => 'SEC_Page and SEC_List test page', ! 'styles' => array('tests.css', 'vortex_test.css') ) ), ! 'content' => array( ! 'class' => 'SEC_List', ! 'opts' => array( ! 'table' => &$table, ! 'url' => new URL(), ! 'navigator' => array( ! 'class' => 'SEC_ListNavigator', ! 'opts' => array( ! 'url' => new URL() ! ) ! ), ! 'recspage' => 2 ) ) --- 32,62 ---- 'opts' => array( 'title' => 'SEC_Page and SEC_List test page', ! 'styles' => array('vortex_test_page.css') ) ), ! 'layout' => array( ! array( ! 'name' => 'list', ! 'class' => 'SEC_List', ! 'opts' => array( ! 'table' => &$table, ! 'url' => new URL(), ! 'navigator' => array( ! 'class' => 'SEC_ListNavigator', ! 'opts' => array( ! 'url' => new URL() ! ) ! ), ! 'recspage' => 2 ! ) ! ), ! array( ! 'name' => 'form', ! 'class' => 'SEC_Form', ! 'opts' => array( ! 'table' => &$table, ! 'url' => new URL(), ! 'data' => &$_REQUEST ! ) ) ) |