[phpwebapp-commits] CVS: documentation webapp.php,1.4,1.5 index.php,1.1.1.1,1.2 codeReview.php,1.2,1
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-25 15:54:51
|
Update of /cvsroot/phpwebapp/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv16099 Modified Files: webapp.php index.php codeReview.php browse.php ToDo.txt Log Message: Added copying permission statement for GNU GPL. Index: webapp.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/webapp.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** webapp.php 22 Aug 2003 06:51:17 -0000 1.4 --- webapp.php 25 Aug 2003 13:29:19 -0000 1.5 *************** *** 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: index.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.php 21 Feb 2003 08:18:22 -0000 1.1.1.1 --- index.php 25 Aug 2003 13:29:19 -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: codeReview.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/codeReview.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** codeReview.php 6 Aug 2003 08:42:38 -0000 1.2 --- codeReview.php 25 Aug 2003 13:29:19 -0000 1.3 *************** *** 1,4 **** --- 1,26 ---- <?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"; + WebApp::addSVar("codeViewer->codeFile", $file); WebApp::addSVar("codeViewer->showLineNr", "true"); *************** *** 6,9 **** --- 28,32 ---- WebApp::addSVar("codeViewer->highlightLines", $highlights); WebApp::addVar("file", basename($file)); + WebApp::constructHtmlPage("codeReview.html"); ?> Index: browse.php =================================================================== RCS file: /cvsroot/phpwebapp/documentation/browse.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** browse.php 22 Aug 2003 06:51:17 -0000 1.3 --- browse.php 25 Aug 2003 13:29:19 -0000 1.4 *************** *** 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: ToDo.txt =================================================================== RCS file: /cvsroot/phpwebapp/documentation/ToDo.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ToDo.txt 22 Aug 2003 06:51:17 -0000 1.4 --- ToDo.txt 25 Aug 2003 13:29:19 -0000 1.5 *************** *** 3,8 **** * Write tutorials 4, 5 etc. * Put summaries of the tutorials in separate files. - * Review the code of web_app and improve the comments. * Generate the code documentation with doxygen and phpDocumentor and add links to it from Documentation/Developer Docs. --- 3,8 ---- * Write tutorials 4, 5 etc. + * Add GPL notice at the head of each file. * Put summaries of the tutorials in separate files. * Generate the code documentation with doxygen and phpDocumentor and add links to it from Documentation/Developer Docs. |