[phpwebapp-commits] CVS: web_app class.WebApp.php,1.6,1.7 WebApp.php,1.2,1.3 ChangeLog,1.1.1.1,1.2
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-07 16:27:49
|
Update of /cvsroot/phpwebapp/web_app In directory sc8-pr-cvs1:/tmp/cvs-serv8227 Modified Files: class.WebApp.php WebApp.php ChangeLog Log Message: WebApp::to_url_path() renamed WebApp::to_url() Index: class.WebApp.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/class.WebApp.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** class.WebApp.php 7 Aug 2003 15:47:50 -0000 1.6 --- class.WebApp.php 7 Aug 2003 16:12:22 -0000 1.7 *************** *** 447,451 **** /** takes a path and returns the corresponding url */ ! function to_url_path($path) { $doc_root = $_SERVER["DOCUMENT_ROOT"]; --- 447,451 ---- /** takes a path and returns the corresponding url */ ! function to_url($path) { $doc_root = $_SERVER["DOCUMENT_ROOT"]; Index: WebApp.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/WebApp.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** WebApp.php 16 Jul 2003 09:28:00 -0000 1.2 --- WebApp.php 7 Aug 2003 16:12:22 -0000 1.3 *************** *** 18,22 **** //declare constants define("UNDEFINED", "undefined"); ! define("WEBAPP_URL", WebApp::to_url_path(WEBAPP_PATH)); //declare some global variables --- 18,22 ---- //declare constants define("UNDEFINED", "undefined"); ! define("WEBAPP_URL", WebApp::to_url(WEBAPP_PATH)); //declare some global variables Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwebapp/web_app/ChangeLog,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ChangeLog 21 Feb 2003 08:15:01 -0000 1.1.1.1 --- ChangeLog 7 Aug 2003 16:12:22 -0000 1.2 *************** *** 0 **** --- 1,4 ---- + 2003-08-07 Dashamir Hoxha <da...@ve...> + + * class.WebApp.php: WebApp::to_url_path() improved + |