[phpwebapp-commits] CVS: empty-sample webapp.php,1.1.1.1,1.2 init.php,1.1.1.1,1.2 index.php,1.1.1.1,
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-25 13:46:49
|
Update of /cvsroot/phpwebapp/empty-sample In directory sc8-pr-cvs1:/tmp/cvs-serv18306 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/empty-sample/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:27:30 -0000 1.1.1.1 --- webapp.php 25 Aug 2003 13:43:35 -0000 1.2 *************** *** 1,3 **** --- 1,23 ---- <?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 + */ + /** * Standard file for all the applications, Index: init.php =================================================================== RCS file: /cvsroot/phpwebapp/empty-sample/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:27:30 -0000 1.1.1.1 --- init.php 25 Aug 2003 13:43:35 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- <?php + /* This file is part of phpWebApp. */ + /** * This file is included the first time that the application Index: index.php =================================================================== RCS file: /cvsroot/phpwebapp/empty-sample/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:27:30 -0000 1.1.1.1 --- index.php 25 Aug 2003 13:43:35 -0000 1.2 *************** *** 1,3 **** --- 1,23 ---- <?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 + */ + /** * Standard file for all the applications, Index: global.php =================================================================== RCS file: /cvsroot/phpwebapp/empty-sample/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:27:30 -0000 1.1.1.1 --- global.php 25 Aug 2003 13:43:35 -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/empty-sample/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:27:30 -0000 1.1.1.1 --- browse.php 25 Aug 2003 13:43:35 -0000 1.2 *************** *** 1,3 **** --- 1,23 ---- <?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 + */ + /** * This is a tool that is used to browse the files Index: before_page.php =================================================================== RCS file: /cvsroot/phpwebapp/empty-sample/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:27:30 -0000 1.1.1.1 --- before_page.php 25 Aug 2003 13:43:35 -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/empty-sample/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:27:30 -0000 1.1.1.1 --- after_page.php 25 Aug 2003 13:43:35 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- <?php + /* This file is part of phpWebApp. */ + /** * This file is included after each page is constructed. |