You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(48) |
Apr
(45) |
May
(11) |
Jun
(7) |
Jul
|
Aug
(11) |
Sep
(75) |
Oct
(38) |
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(17) |
Feb
|
Mar
(22) |
Apr
|
May
(1) |
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(5) |
Feb
(29) |
Mar
(22) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Don S. <ri...@us...> - 2004-04-30 02:53:06
|
Update of /cvsroot/phpwsbb/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26117/conf Modified Files: boost.php Log Message: Releasing 0.9.3 for thread menu thing Index: boost.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/boost.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** boost.php 21 Apr 2004 17:40:29 -0000 1.29 --- boost.php 30 Apr 2004 02:52:58 -0000 1.30 *************** *** 31,35 **** $admin_mod = 1; $active = "on"; ! $version = "0.9.2"; $admin_op = "&PHPWSBB_MAN_OP=list"; $mod_class_files = array("Manager.php"); --- 31,35 ---- $admin_mod = 1; $active = "on"; ! $version = "0.9.3"; $admin_op = "&PHPWSBB_MAN_OP=list"; $mod_class_files = array("Manager.php"); |
From: Don S. <ri...@us...> - 2004-04-22 14:26:53
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2374/class Modified Files: Thread.php Log Message: Reimplementing the thread options bar at the bottom of the view thread screen Index: Thread.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** Thread.php 9 Apr 2004 01:01:43 -0000 1.49 --- Thread.php 22 Apr 2004 14:26:40 -0000 1.50 *************** *** 243,246 **** --- 243,248 ---- } + $content .= PHPWS_Template::processTemplate($tags, "phpwsbb", "view_thread.tpl"); + return $content; |
From: Don S. <ri...@us...> - 2004-04-21 17:40:39
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4375/docs Modified Files: ChangeLog Log Message: BUG 938818 Fix security hole through search interface Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** ChangeLog 9 Apr 2004 17:12:05 -0000 1.104 --- ChangeLog 21 Apr 2004 17:40:29 -0000 1.105 *************** *** 2,5 **** --- 2,11 ---- # $Id$ + *phpwsbb-0.9.2 (21 Apr 2004) + + 21 Apr 2004; Don Seiler <do...@NO...> + BUG #938818 Fix security hole that allowed search to show BB topic labels + regardless of allow_anon_view settings. Thanks Stephan Adler. + *phpwsbb-0.9.1 (09 Apr 2004) |
From: Don S. <ri...@us...> - 2004-04-21 17:40:39
|
Update of /cvsroot/phpwsbb/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4375/conf Modified Files: boost.php Log Message: BUG 938818 Fix security hole through search interface Index: boost.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/boost.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** boost.php 9 Apr 2004 01:01:43 -0000 1.28 --- boost.php 21 Apr 2004 17:40:29 -0000 1.29 *************** *** 31,35 **** $admin_mod = 1; $active = "on"; ! $version = "0.9.1"; $admin_op = "&PHPWSBB_MAN_OP=list"; $mod_class_files = array("Manager.php"); --- 31,35 ---- $admin_mod = 1; $active = "on"; ! $version = "0.9.2"; $admin_op = "&PHPWSBB_MAN_OP=list"; $mod_class_files = array("Manager.php"); |
From: Don S. <ri...@us...> - 2004-04-21 17:40:38
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4375/class Modified Files: Manager.php Log Message: BUG 938818 Fix security hole through search interface Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** Manager.php 9 Apr 2004 01:01:43 -0000 1.34 --- Manager.php 21 Apr 2004 17:40:28 -0000 1.35 *************** *** 388,397 **** $array = array(); ! $sql = "SELECT tid, label FROM " . PHPWS_TBL_PREFIX . "mod_phpwsbb_messages $where"; ! $result = $GLOBALS["core"]->query($sql); ! ! if($result) { ! while($row = $result->fetchRow(DB_FETCHMODE_ASSOC)) { ! $array[$row["tid"]] = $row["label"]; } } --- 388,402 ---- $array = array(); ! if(!$this->_allow_anon_view && !$_SESSION["OBJ_user"]->username) { ! $GLOBALS["CNT_phpwsbb"]["title"] = $_SESSION["translate"]->it("Anonymous Viewing Denied"); ! $GLOBALS["CNT_phpwsbb"]["content"] = $_SESSION["translate"]->it("Anonymous viewing of this bulletin board has been disabled. You must log-in to view this bulletin board."); ! } else { ! $sql = "SELECT tid, label FROM " . PHPWS_TBL_PREFIX . "mod_phpwsbb_messages $where"; ! $result = $GLOBALS["core"]->query($sql); ! ! if($result) { ! while($row = $result->fetchRow(DB_FETCHMODE_ASSOC)) { ! $array[$row["tid"]] = $row["label"]; ! } } } |
From: Don S. <ri...@us...> - 2004-04-14 19:39:46
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16866/class Modified Files: Message.php Log Message: I'm anal Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Message.php 9 Apr 2004 01:01:43 -0000 1.54 --- Message.php 14 Apr 2004 19:39:38 -0000 1.55 *************** *** 124,128 **** } ! if ($GLOBALS['core']->moduleExists("phpwscontacts")) { require_once(PHPWS_SOURCE_DIR.'mod/phpwscontacts/class/Contact.php'); // Find contact owned by this username --- 124,128 ---- } ! if ($GLOBALS["core"]->moduleExists("phpwscontacts")) { require_once(PHPWS_SOURCE_DIR.'mod/phpwscontacts/class/Contact.php'); // Find contact owned by this username |
From: Don S. <ri...@us...> - 2004-04-09 17:25:25
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1981/docs Modified Files: ChangeLog Log Message: Let the mortal kombat ... BEGIN Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** ChangeLog 9 Apr 2004 01:01:44 -0000 1.103 --- ChangeLog 9 Apr 2004 17:12:05 -0000 1.104 *************** *** 2,5 **** --- 2,7 ---- # $Id$ + *phpwsbb-0.9.1 (09 Apr 2004) + 08 Apr 2004; Don Seiler <do...@NO...> Changed headers to be GPL compliant |
From: Don S. <ri...@us...> - 2004-04-09 01:14:57
|
Update of /cvsroot/phpwsbb/phpwsbb/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24639/inc Modified Files: runtime.php Log Message: Changed headers to be GPL compliant Index: runtime.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/inc/runtime.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** runtime.php 2 Mar 2004 02:40:48 -0000 1.4 --- runtime.php 9 Apr 2004 01:01:44 -0000 1.5 *************** *** 1,11 **** <?php /** ! * runtime.php * ! * Handles runtime calls for displaying blocks etc. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ |
From: Don S. <ri...@us...> - 2004-04-09 01:14:57
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24639/docs Modified Files: ChangeLog Log Message: Changed headers to be GPL compliant Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -C2 -d -r1.102 -r1.103 *** ChangeLog 6 Apr 2004 03:33:05 -0000 1.102 --- ChangeLog 9 Apr 2004 01:01:44 -0000 1.103 *************** *** 2,5 **** --- 2,8 ---- # $Id$ + 08 Apr 2004; Don Seiler <do...@NO...> + Changed headers to be GPL compliant + 05 Apr 2004; Don Seiler <do...@NO...> BUG #930013 Don't need Ban User link for guest posts. |
From: Don S. <ri...@us...> - 2004-04-09 01:14:57
|
Update of /cvsroot/phpwsbb/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24639/conf Modified Files: boost.php controlpanel.php help.php layout.php manager.php menuman.php search.php Log Message: Changed headers to be GPL compliant Index: controlpanel.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/controlpanel.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** controlpanel.php 7 Apr 2004 21:17:13 -0000 1.5 --- controlpanel.php 9 Apr 2004 01:01:43 -0000 1.6 *************** *** 1,11 **** <?php /** ! * controlpanel.php * ! * Defines variables used by Control Panel * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: search.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/search.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** search.php 2 Mar 2004 02:40:48 -0000 1.3 --- search.php 9 Apr 2004 01:01:43 -0000 1.4 *************** *** 1,11 **** <?php /** ! * search.php * ! * Defines vars used by Search module indicate how and what to search. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: boost.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/boost.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** boost.php 2 Apr 2004 16:27:47 -0000 1.27 --- boost.php 9 Apr 2004 01:01:43 -0000 1.28 *************** *** 1,11 **** <?php /** ! * boost.php * ! * Defines variables used by Boost * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/manager.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** manager.php 29 Mar 2004 04:40:53 -0000 1.7 --- manager.php 9 Apr 2004 01:01:43 -0000 1.8 *************** *** 1,11 **** <?php /** ! * manager.php * ! * Defines arrays used by Manager for lists and templates. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: layout.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/layout.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** layout.php 2 Mar 2004 02:40:48 -0000 1.4 --- layout.php 9 Apr 2004 01:01:43 -0000 1.5 *************** *** 1,11 **** <?php /** ! * layout.php * ! * Defines layout variables for body and blocks. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: menuman.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/menuman.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** menuman.php 2 Apr 2004 02:30:10 -0000 1.4 --- menuman.php 9 Apr 2004 01:01:43 -0000 1.5 *************** *** 1,11 **** <?php /** ! * menuman.php * ! * Defines a "Module Default" entry for menuman * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: help.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/help.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** help.php 29 Mar 2004 04:06:47 -0000 1.9 --- help.php 9 Apr 2004 01:01:43 -0000 1.10 *************** *** 1,11 **** <?php /** ! * help.php * ! * Defines help items for use in phpwsBB with Help module * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ |
From: Don S. <ri...@us...> - 2004-04-09 01:14:57
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24639/class Modified Files: Forum.php Manager.php Message.php Runtime.php Thread.php Log Message: Changed headers to be GPL compliant Index: Thread.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** Thread.php 2 Apr 2004 16:48:50 -0000 1.48 --- Thread.php 9 Apr 2004 01:01:43 -0000 1.49 *************** *** 1,11 **** <?php /** ! * PHPWSBB_Thread * ! * Thread class for phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** Message.php 5 Apr 2004 20:43:41 -0000 1.53 --- Message.php 9 Apr 2004 01:01:43 -0000 1.54 *************** *** 1,11 **** <?php /** ! * PHPWSBB_Message * ! * Message class for phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** Manager.php 2 Apr 2004 17:09:19 -0000 1.33 --- Manager.php 9 Apr 2004 01:01:43 -0000 1.34 *************** *** 1,11 **** <?php /** ! * PHPWSBB_Manager * ! * Manager class for phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: Forum.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Forum.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Forum.php 2 Apr 2004 16:47:21 -0000 1.20 --- Forum.php 9 Apr 2004 01:01:43 -0000 1.21 *************** *** 1,11 **** <?php /** ! * PHPWSBB_Forum * ! * Forum class for phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: Runtime.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Runtime.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Runtime.php 18 Mar 2004 04:02:15 -0000 1.8 --- Runtime.php 9 Apr 2004 01:01:43 -0000 1.9 *************** *** 1,11 **** <?php /** ! * PHPWSBB_Runtime * ! * Runtime class for phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ |
From: Don S. <ri...@us...> - 2004-04-09 01:14:56
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24639/boost Modified Files: install.php uninstall.php update.php Log Message: Changed headers to be GPL compliant Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/uninstall.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** uninstall.php 23 Mar 2004 03:57:45 -0000 1.6 --- uninstall.php 9 Apr 2004 01:01:43 -0000 1.7 *************** *** 1,12 **** <?php /** ! * uninstall.php * ! * Called by Boost to remove module from phpWS. Removes tables and ! * any images or files added by the users. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: install.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** install.php 2 Apr 2004 16:27:46 -0000 1.16 --- install.php 9 Apr 2004 01:01:43 -0000 1.17 *************** *** 1,12 **** <?php /** ! * install.php * ! * Called by Boost during install. Will run sql commands and perform ! * other necessary functions for proper installation. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ Index: update.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/update.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** update.php 2 Apr 2004 16:27:46 -0000 1.29 --- update.php 9 Apr 2004 01:01:43 -0000 1.30 *************** *** 1,11 **** <? /** ! * update.php * ! * Called by Boost during update. Does necessary file/database mods. * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <? /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ |
From: Don S. <ri...@us...> - 2004-04-08 20:28:18
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1301 Modified Files: index.php Log Message: Ugh more header fun for GPL Index: index.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/index.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** index.php 16 Mar 2004 03:52:03 -0000 1.8 --- index.php 8 Apr 2004 20:15:06 -0000 1.9 *************** *** 1,11 **** <?php /** ! * index.php * ! * Nerve center of phpwsBB * * @author Don Seiler <do...@NO...> - * @copyright Copyright © 2003-2004, Don Seiler - * @license http://www.gnu.org/licenses/gpl.txt * @version $Id$ */ --- 1,23 ---- <?php /** ! * phpwsBB * ! * See docs/AUTHORS and docs/COPYRIGHT for relevant info. ! * ! * This program 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. ! * ! * This program 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 this program; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * @author Don Seiler <do...@NO...> * @version $Id$ */ |
From: Don S. <ri...@us...> - 2004-04-08 20:28:18
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1301/docs Added Files: COPYRIGHT Log Message: Ugh more header fun for GPL --- NEW FILE: COPYRIGHT --- phpwsBB Copyright (C) 2003-2004 by the following: (If you have contributed code to phpwsBB, you should be on this list) Don Seiler <do...@NO...> |
From: Don S. <ri...@us...> - 2004-04-07 21:30:15
|
Update of /cvsroot/phpwsbb/phpwsbb/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv659/conf Modified Files: controlpanel.php Log Message: Changing URL's & to &. Thanks mhnoyes for the heads up. Index: controlpanel.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/conf/controlpanel.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** controlpanel.php 23 Mar 2004 03:33:59 -0000 1.4 --- controlpanel.php 7 Apr 2004 21:17:13 -0000 1.5 *************** *** 16,20 **** $link[] = array ("label"=>"Bulletin Board", "module"=>"phpwsbb", ! "url"=>"index.php?module=phpwsbb&PHPWSBB_MAN_OP=list", "image"=>$image, "description"=>"A bulletin board module.", --- 16,20 ---- $link[] = array ("label"=>"Bulletin Board", "module"=>"phpwsbb", ! "url"=>"index.php?module=phpwsbb&PHPWSBB_MAN_OP=list", "image"=>$image, "description"=>"A bulletin board module.", *************** *** 23,27 **** $link[] = array ("label"=>"Set My Bulletin Board Preferences", "module"=>"phpwsbb", ! "url"=>"index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings", "image"=>$image, "description"=>"Allows you to set your bulletin board preferences.", --- 23,27 ---- $link[] = array ("label"=>"Set My Bulletin Board Preferences", "module"=>"phpwsbb", ! "url"=>"index.php?module=phpwsbb&PHPWSBB_MAN_OP=usersettings", "image"=>$image, "description"=>"Allows you to set your bulletin board preferences.", |
From: Don S. <ri...@us...> - 2004-04-06 18:10:42
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5096 Modified Files: README Log Message: Adding ref to ChangeLog Index: README =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 6 Apr 2004 15:03:55 -0000 1.2 --- README 6 Apr 2004 17:57:51 -0000 1.3 *************** *** 10,13 **** --- 10,17 ---- Please be sure to search any existing bugs to avoid duplicates. + CHANGELOG + ========= + See docs/ChangeLog for history of changes. + INSTALLATION ============ |
From: Don S. <ri...@us...> - 2004-04-06 15:16:44
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4257 Modified Files: README Log Message: Slight change Index: README =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 6 Apr 2004 04:05:40 -0000 1.1 --- README 6 Apr 2004 15:03:55 -0000 1.2 *************** *** 18,22 **** ======= The software included in this directory is licensed under the GPL v2. ! See docs/COPYING for the text of the license. VERSION --- 18,22 ---- ======= The software included in this directory is licensed under the GPL v2. ! See docs/COPYING for the full text of the license. VERSION |
From: Don S. <ri...@us...> - 2004-04-06 04:18:25
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20382/docs Modified Files: INSTALL Log Message: Adding top-level README Index: INSTALL =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/INSTALL,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** INSTALL 6 Apr 2004 03:26:23 -0000 1.1 --- INSTALL 6 Apr 2004 04:05:40 -0000 1.2 *************** *** 1,4 **** - <pre> - # INSTALL for phpwsbb # $Id$ --- 1,2 ---- *************** *** 71,74 **** http://sourceforge.net/tracker/?func=add&group_id=81260&atid=562403 - - </pre> --- 69,70 ---- |
From: Don S. <ri...@us...> - 2004-04-06 04:18:24
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20382 Added Files: README Log Message: Adding top-level README --- NEW FILE: README --- phpwsBB - phpWebSite Bulletin Board http://phpwsbb.sourceforge.net Don Seiler <do...@NO...> BUGS ==== If you have any bugs to report, file them at: http://sourceforge.net/tracker/?func=add&group_id=81260&atid=562402 Please be sure to search any existing bugs to avoid duplicates. INSTALLATION ============ See docs/INSTALL for installation instructions, as well as instructions on seeking support for phpwsBB. LICENSE ======= The software included in this directory is licensed under the GPL v2. See docs/COPYING for the text of the license. VERSION ======= Version is listed as $version in conf/boost.php. |
From: Don S. <ri...@us...> - 2004-04-06 04:08:59
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19036 Added Files: AUTHORS Removed Files: CREDITS Log Message: Changed CREDITS to AUTHORS to fake like I'm a GPL master --- CREDITS DELETED --- --- NEW FILE: AUTHORS --- # phpwsBB AUTHORS # $Id: AUTHORS,v 1.1 2004/04/06 03:56:14 rizzo Exp $ People who have made phpwsBB possible (in alphabetical order): Dan Abushanab <da...@NO...> - QA, Requirements Engineering Bobby Kennedy <bob...@NO...> - QA, Requirements Engineering Steven Levin <jyd...@NO...> - Part-time Developer, PHPWS Core Liason Greg Meiste <bli...@NO...> - QA Noah Miller <noa...@NO...> - QA Shaun Murray <sin...@NO...> - QA, Requirements Engineering Don Seiler <ri...@NO...> - Lead Developer Mike Windsor <wi...@NO...> - QA, Requirements Engineering phpwsBB contains works from the following projects: PHPWebSite http://phpwebsite.appstate.edu SVG Icons http://svgicons.sourceforge.net |
From: Don S. <ri...@us...> - 2004-04-06 03:45:48
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15772/docs Modified Files: ChangeLog Log Message: Update Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -d -r1.101 -r1.102 *** ChangeLog 6 Apr 2004 03:26:23 -0000 1.101 --- ChangeLog 6 Apr 2004 03:33:05 -0000 1.102 *************** *** 4,8 **** 05 Apr 2004; Don Seiler <do...@NO...> BUG #930013 Don't need Ban User link for guest posts. ! Changed headers to play nice with GPL. 02 Apr 2004; Don Seiler <do...@NO...> --- 4,8 ---- 05 Apr 2004; Don Seiler <do...@NO...> BUG #930013 Don't need Ban User link for guest posts. ! Changes docs pages to be more GPL standard 02 Apr 2004; Don Seiler <do...@NO...> |
From: Don S. <ri...@us...> - 2004-04-06 03:41:43
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15249 Modified Files: COPYING Log Message: Using raw GPL Index: COPYING =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/COPYING,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** COPYING 6 Apr 2004 03:26:23 -0000 1.1 --- COPYING 6 Apr 2004 03:28:58 -0000 1.2 *************** *** 1,15 **** ! GNU GENERAL PUBLIC LICENSE ! Version 2, June 1991 ! ! Copyright (C) 1989, 1991 Free Software Foundation, Inc. ! 59 Temple Place, Suite 330 ! Boston, MA 02111-1307 USA ! Everyone is permitted to copy and distribute verbatim copies ! of this license document, but changing it is not allowed. ! Preamble ! The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free --- 1,13 ---- ! GNU GENERAL PUBLIC LICENSE ! Version 2, June 1991 ! Copyright (C) 1989, 1991 Free Software Foundation, Inc. ! 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! Everyone is permitted to copy and distribute verbatim copies ! of this license document, but changing it is not allowed. ! Preamble ! The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free *************** *** 21,25 **** your programs, too. ! When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for --- 19,23 ---- your programs, too. ! When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for *************** *** 28,37 **** in new free programs; and that you know you can do these things. ! To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. ! For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the --- 26,35 ---- in new free programs; and that you know you can do these things. ! To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. ! For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the *************** *** 39,47 **** rights. ! We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. ! Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we --- 37,45 ---- rights. ! We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. ! Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we *************** *** 50,54 **** authors' reputations. ! Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the --- 48,52 ---- authors' reputations. ! Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the *************** *** 56,66 **** patent must be licensed for everyone's free use or not licensed at all. ! The precise terms and conditions for copying, distribution and modification follow. ! ! GNU GENERAL PUBLIC LICENSE ! TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ! 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, --- 54,64 ---- patent must be licensed for everyone's free use or not licensed at all. ! The precise terms and conditions for copying, distribution and modification follow. ! ! GNU GENERAL PUBLIC LICENSE ! TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ! 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, *************** *** 79,83 **** Whether that is true depends on what the Program does. ! 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate --- 77,81 ---- Whether that is true depends on what the Program does. ! 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate *************** *** 90,94 **** you may at your option offer warranty protection in exchange for a fee. ! 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 --- 88,92 ---- you may at your option offer warranty protection in exchange for a fee. ! 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 *************** *** 113,117 **** does not normally print such an announcement, your work based on the Program is not required to print an announcement.) ! These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, --- 111,115 ---- does not normally print such an announcement, your work based on the Program is not required to print an announcement.) ! These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, *************** *** 134,138 **** the scope of this License. ! 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: --- 132,136 ---- the scope of this License. ! 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: *************** *** 171,176 **** distribution of the source code, even though third parties are not compelled to copy the source along with the object code. ! ! 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is --- 169,174 ---- distribution of the source code, even though third parties are not compelled to copy the source along with the object code. ! ! 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is *************** *** 180,184 **** parties remain in full compliance. ! 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are --- 178,182 ---- parties remain in full compliance. ! 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are *************** *** 189,193 **** the Program or works based on it. ! 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to --- 187,191 ---- the Program or works based on it. ! 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to *************** *** 197,201 **** this License. ! 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or --- 195,199 ---- this License. ! 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or *************** *** 228,233 **** This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. ! ! 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License --- 226,231 ---- This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. ! ! 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License *************** *** 237,241 **** the limitation as if written in the body of this License. ! 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to --- 235,239 ---- the limitation as if written in the body of this License. ! 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to *************** *** 250,254 **** Foundation. ! 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free --- 248,252 ---- Foundation. ! 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free *************** *** 258,264 **** of promoting the sharing and reuse of software generally. ! NO WARRANTY ! 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES --- 256,262 ---- of promoting the sharing and reuse of software generally. ! NO WARRANTY ! 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES *************** *** 270,274 **** REPAIR OR CORRECTION. ! 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, --- 268,272 ---- REPAIR OR CORRECTION. ! 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, *************** *** 280,313 **** POSSIBILITY OF SUCH DAMAGES. ! END OF TERMS AND CONDITIONS ! ! How to Apply These Terms to Your New Programs ! If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. ! To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. ! phpwsBB - phpWebSite Bulletin Board ! Copyright (C) 2003 Donald Seiler ! This program 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. ! This program 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 this program; if not, write to the Free Software ! Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! Donald Seiler ! do...@se... --- 278,340 ---- POSSIBILITY OF SUCH DAMAGES. ! END OF TERMS AND CONDITIONS ! ! How to Apply These Terms to Your New Programs ! If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. ! To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. ! <one line to give the program's name and a brief idea of what it does.> ! Copyright (C) <year> <name of author> ! This program 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. ! This program 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 this program; if not, write to the Free Software ! Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ! ! Also add information on how to contact you by electronic and paper mail. ! ! If the program is interactive, make it output a short notice like this ! when it starts in an interactive mode: ! ! Gnomovision version 69, Copyright (C) year name of author ! Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. ! This is free software, and you are welcome to redistribute it ! under certain conditions; type `show c' for details. ! ! The hypothetical commands `show w' and `show c' should show the appropriate ! parts of the General Public License. Of course, the commands you use may ! be called something other than `show w' and `show c'; they could even be ! mouse-clicks or menu items--whatever suits your program. ! ! You should also get your employer (if you work as a programmer) or your ! school, if any, to sign a "copyright disclaimer" for the program, if ! necessary. Here is a sample; alter the names: ! ! Yoyodyne, Inc., hereby disclaims all copyright interest in the program ! `Gnomovision' (which makes passes at compilers) written by James Hacker. ! ! <signature of Ty Coon>, 1 April 1989 ! Ty Coon, President of Vice ! ! This General Public License does not permit incorporating your program into ! proprietary programs. If your program is a subroutine library, you may ! consider it more useful to permit linking proprietary applications with the ! library. If this is what you want to do, use the GNU Library General ! Public License instead of this License. |
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14907 Modified Files: ChangeLog Added Files: COPYING CREDITS INSTALL Removed Files: CREDITS.txt INSTALL.txt LICENSE.txt README_SUPPLEMENT.txt Log Message: Changes for GPL niceness --- NEW FILE: CREDITS --- # $Id: CREDITS,v 1.1 2004/04/06 03:26:23 rizzo Exp $ People who have made phpwsBB possible (in alphabetical order): Dan Abushanab <da...@NO...> - QA, Requirements Engineering Bobby Kennedy <bob...@NO...> - QA, Requirements Engineering Steven Levin <jyd...@NO...> - Part-time Developer, PHPWS Core Liason Greg Meiste <bli...@NO...> - QA Noah Miller <noa...@NO...> - QA Shaun Murray <sin...@NO...> - QA, Requirements Engineering Don Seiler <ri...@NO...> - Lead Developer Mike Windsor <wi...@NO...> - QA, Requirements Engineering This project would not be possible without standing on the shoulders of these giants: PHP http://www.php.net MySQL http://www.mysql.com Apache http://www.apache.org SourceForge http://www.sourceforge.net PHPWebSite http://phpwebsite.appstate.edu SVG Icons http://svgicons.sourceforge.net --- README_SUPPLEMENT.txt DELETED --- --- NEW FILE: COPYING --- GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330 Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. phpwsBB - phpWebSite Bulletin Board Copyright (C) 2003 Donald Seiler This program 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. This program 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 this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Donald Seiler do...@se... --- NEW FILE: INSTALL --- <pre> # INSTALL for phpwsbb # $Id: INSTALL,v 1.1 2004/04/06 03:26:23 rizzo Exp $ INSTALL steps for phpwsbb IMPORTANT: phpwsbb is a module for phpWebSite 0.9.3-2 or higher. You have to install phpWebSite >= 0.9.3-2 first, phpwsbb will not work with earlier versions of phpWebSite. If you don't have phpWebSite installed, first get the latest code here: https://sourceforge.net/project/showfiles.php?group_id=15539 Then follow the install instructions found in the INSTALL.txt included in the docs directory of that download. If you are using phpWebSite 0.9.3-2, you will need to download the fixed version of core/Database.php, which you can get at: http://phpwsbb.sourceforge.net/Database0932.zip Extract Database.php from that archive and put it into the "core" directory of your phpWebSite installation. One this is done then you can start installing phpwsBB: 1. Download the .tar.gz from a sourceforge mirror. 2. Unpack the tarball with: tar -xvzf phpwsbb-*.tar.gz This will create a directory named "phpwsbb-<version>". 3. Move the directory into your phpwebsite mod directory and rename it to "phpwsbb". Example: If you are installing phpwsbb 0.8.0 and your phpwebsite directory is /home/httpd/htdocs, you would run mv phpwsbb-0.8.0 /home/httpd/htdocs/mod/phpwsbb If you are upgrading an existing install, simply copy the contents of the phpwsbb-0.8.0 directory into /home/httpd/htdocs/mod/phpwsbb. cp -R phpwsbb-0.8.0/* /home/httpd/htdocs/mod/phpwsbb 4. BACKUP YOUR DATABASE. If you use mysql, mysqldump is recommended. 5. Go to your phpWS website and install or upgrade "Bulletin Board" from the Boost module. You are golden. The bulletin board is now installed. You can get there by going to "Control Panel" and click on "Site Content". However this means anonymous users won't be able to post. So you'll need to make a menu link. 6. Assuming you have Menu Manager installed, go to the Menu Manager control panel. Either edit an existing menu or create a new one. Once that is done go to edit the menu and click on "Add Module Default". From the drop down find the Bulletin Board link and click "Add Menu Item". The link is now added to the menu. It is up to you when and where that menu is displayed. 7. If you are upgrading from a version less than 0.8.0, you will not see the new blocks listing the forum list and latest threads until you go into the Layout Admin in control panel and "Reinitialize Default Theme". FYI. If you are having trouble with these procedures please file a Support Request at our sourceforge.net project site: http://sourceforge.net/tracker/?func=add&group_id=81260&atid=562403 </pre> --- CREDITS.txt DELETED --- --- LICENSE.txt DELETED --- Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** ChangeLog 5 Apr 2004 20:43:42 -0000 1.100 --- ChangeLog 6 Apr 2004 03:26:23 -0000 1.101 *************** *** 4,7 **** --- 4,8 ---- 05 Apr 2004; Don Seiler <do...@NO...> BUG #930013 Don't need Ban User link for guest posts. + Changed headers to play nice with GPL. 02 Apr 2004; Don Seiler <do...@NO...> --- INSTALL.txt DELETED --- |
From: Don S. <ri...@us...> - 2004-04-05 21:28:44
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17875/docs Modified Files: CREDITS.txt Log Message: Adding Noah to credits. Index: CREDITS.txt =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/CREDITS.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CREDITS.txt 5 Apr 2004 17:28:35 -0000 1.3 --- CREDITS.txt 5 Apr 2004 21:16:01 -0000 1.4 *************** *** 12,16 **** - Part-time Developer, PHPWS Core Liason ! Greg Meiste <bli...@us...> - QA --- 12,19 ---- - Part-time Developer, PHPWS Core Liason ! Greg Meiste <bli...@NO...> ! - QA ! ! Noah Miller <noa...@NO...> - QA |
From: Don S. <ri...@us...> - 2004-04-05 20:56:28
|
Update of /cvsroot/phpwsbb/phpwsbb/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11899/docs Modified Files: ChangeLog Log Message: Bug #930013 Don't need Ban User link for guests Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/docs/ChangeLog,v retrieving revision 1.99 retrieving revision 1.100 diff -C2 -d -r1.99 -r1.100 *** ChangeLog 2 Apr 2004 17:09:26 -0000 1.99 --- ChangeLog 5 Apr 2004 20:43:42 -0000 1.100 *************** *** 2,5 **** --- 2,8 ---- # $Id$ + 05 Apr 2004; Don Seiler <do...@NO...> + BUG #930013 Don't need Ban User link for guest posts. + 02 Apr 2004; Don Seiler <do...@NO...> Need to poll database when checking if phpwsBB is still offline. |