Thread: [phpwebapp-commits] CVS: app3 webapp.php,1.1.1.1,1.2 init.php,1.1.1.1,1.2 index.php,1.1.1.1,1.2 glob
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-25 22:39:47
|
Update of /cvsroot/phpwebapp/app3 In directory sc8-pr-cvs1:/tmp/cvs-serv19640 Modified Files: webapp.php init.php index.php global.php browse.php before_page.php after_page.php Log Message: Added copying permission statement for GNU GPL. Index: webapp.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/webapp.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** webapp.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- webapp.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,24 ---- <?php + /* + Copyright 2001,2002,2003 Dashamir Hoxha, das...@us... + + This file is part of phpWebApp. + + phpWebApp is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + phpWebApp is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with phpWebApp; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + //define APP_PATH and APP_URL $script_filename = $_SERVER["SCRIPT_FILENAME"]; Index: init.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/init.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** init.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- init.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,13 **** ! <?php ! /** ! * This file is included the first time that the application ! * is opened (when the session starts). ! */ ! ! WebApp::message("Wellcome to Sample Application 3"); ! ! if (COUNT_CLICKS) ! { ! WebApp::addSVar("click_nr", "0"); ! } ! ?> --- 1,15 ---- ! <?php ! /* This file is part of phpWebApp. */ ! ! /** ! * This file is included the first time that the application ! * is opened (when the session starts). ! */ ! ! WebApp::message("Wellcome to Sample Application 3"); ! ! if (COUNT_CLICKS) ! { ! WebApp::addSVar("click_nr", "0"); ! } ! ?> Index: index.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- index.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,24 ---- <?php + /* + Copyright 2001,2002,2003 Dashamir Hoxha, das...@us... + + This file is part of phpWebApp. + + phpWebApp is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + phpWebApp is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with phpWebApp; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + include_once "webapp.php"; Index: global.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/global.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** global.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- global.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- <?php + /* This file is part of phpWebApp. */ + /** * This file is included every time. It contains functions, Index: browse.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/browse.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** browse.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- browse.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,24 ---- <?php + /* + Copyright 2001,2002,2003 Dashamir Hoxha, das...@us... + + This file is part of phpWebApp. + + phpWebApp is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + phpWebApp is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with phpWebApp; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + include "webapp.php"; Index: before_page.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/before_page.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** before_page.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- before_page.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- <?php + /* This file is part of phpWebApp. */ + /** * This file is included before each page is parsed. Index: after_page.php =================================================================== RCS file: /cvsroot/phpwebapp/app3/after_page.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** after_page.php 22 Aug 2003 16:14:23 -0000 1.1.1.1 --- after_page.php 25 Aug 2003 13:52:02 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- <?php + /* This file is part of phpWebApp. */ + /** * This file is included after each page is constructed. |