Update of /cvsroot/phpwebapp/documentation/config
In directory sc8-pr-cvs1:/tmp/cvs-serv4938/config
Modified Files:
const.Paths.php const.Options.php
Log Message:
Index: const.Paths.php
===================================================================
RCS file: /cvsroot/phpwebapp/documentation/config/const.Paths.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** const.Paths.php 23 Feb 2003 14:29:07 -0000 1.2
--- const.Paths.php 7 Aug 2003 15:54:14 -0000 1.3
***************
*** 1,6 ****
<?php
//constants of the paths in the application
! define("APP_URL", "/documentation/");
! define("WEBAPP_PATH", APP_PATH."../web_app/");
define("EVENTHANDLER_PATH", APP_PATH."event_handlers/");
--- 1,5 ----
<?php
//constants of the paths in the application
! define("WEBAPP_PATH", UP_PATH."web_app/");
define("EVENTHANDLER_PATH", APP_PATH."event_handlers/");
***************
*** 9,17 ****
define("WOBJ_PATH", APP_PATH."webobjects/");
! define("APP1_PATH", APP_PATH."../app1/");
! define("APP2_PATH", APP_PATH."../app2/");
! define("APP3_PATH", APP_PATH."../app3/");
! define("APP1_URL", "/app1/");
! define("APP2_URL", "/app2/");
! define("APP3_URL", "/app3/");
?>
--- 8,18 ----
define("WOBJ_PATH", APP_PATH."webobjects/");
! //define paths and URLs of the sample applications
! define("APP1_PATH", UP_PATH."app1/");
! define("APP2_PATH", UP_PATH."app2/");
! define("APP3_PATH", UP_PATH."app3/");
!
! define("APP1_URL", UP_URL."app1/");
! define("APP2_URL", UP_URL."app2/");
! define("APP3_URL", UP_URL."app3/");
?>
Index: const.Options.php
===================================================================
RCS file: /cvsroot/phpwebapp/documentation/config/const.Options.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** const.Options.php 21 Feb 2003 08:18:23 -0000 1.1.1.1
--- const.Options.php 7 Aug 2003 15:54:14 -0000 1.2
***************
*** 49,59 ****
define("DISPLAY_CGI_VARS", false);
- /**
- * When this constant is true, then the application provides
- * an interface for setting the current date of the application
- * in order to test the application for a long period of time.
- */
- define("TEST", true);
-
//etc.
?>
--- 49,52 ----
|