You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: Jon O. <jon...@us...> - 2006-12-10 15:40:24
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25315/includes Modified Files: mx_functions_core.php Log Message: fix to avoid message_die when block init fails Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** mx_functions_core.php 14 Sep 2006 17:41:55 -0000 1.36 --- mx_functions_core.php 10 Dec 2006 15:40:18 -0000 1.37 *************** *** 1111,1114 **** --- 1111,1116 ---- var $auth_edit = false; var $auth_mod = false; + + var $init_error_msg = false; /**#@-*/ *************** *** 1204,1208 **** $this->is_dynamic = $this->_is_dynamic(); $this->is_sub = $this->_is_sub(); - } --- 1206,1209 ---- *************** *** 1241,1244 **** --- 1242,1247 ---- unset($this->is_dynamic); unset($this->is_sub); + + unset($this->init_error_msg); } *************** *** 1289,1293 **** { $is_sub = false; ! mx_message_die( GENERAL_ERROR, "Nested block count must be >=2." ); } --- 1292,1296 ---- { $is_sub = false; ! $this->init_error_msg = "Nested block count must be >=2."; } *************** *** 1298,1302 **** { $is_sub = false; ! mx_message_die( GENERAL_ERROR, "Number of block sizes must be equal to block count." ); } --- 1301,1305 ---- { $is_sub = false; ! $this->init_error_msg = "Number of block sizes must be equal to block count."; } |
|
From: Jon O. <jon...@us...> - 2006-12-10 15:40:24
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25315 Modified Files: index.php Log Message: fix to avoid message_die when block init fails Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** index.php 5 Sep 2006 16:33:20 -0000 1.62 --- index.php 10 Dec 2006 15:40:19 -0000 1.63 *************** *** 180,185 **** // ob_start(); ! include($module_root_path . $mx_block->block_file); ! $mx_block->block_contents = ob_get_contents(); ob_end_clean(); --- 180,192 ---- // ob_start(); ! if (!$mx_block->init_error_msg) ! { ! include($module_root_path . $mx_block->block_file); ! $mx_block->block_contents = ob_get_contents(); ! } ! else ! { ! $mx_block->block_contents = $mx_block->init_error_msg; ! } ob_end_clean(); |
|
From: Horace <jus...@us...> - 2006-11-23 16:38:34
|
Update of /cvsroot/mxbb/mx_who_am_i/language/lang_english In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24914 Modified Files: lang_main.php Log Message: lol - Corrected wrong email address. Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/language/lang_english/lang_main.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** lang_main.php 23 Nov 2006 16:34:59 -0000 1.6 --- lang_main.php 23 Nov 2006 16:38:27 -0000 1.7 *************** *** 10,14 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 10,14 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function |
|
From: Horace <jus...@us...> - 2006-11-23 16:38:21
|
Update of /cvsroot/mxbb/mx_who_am_i/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24885 Modified Files: mx_common.php Log Message: lol - Corrected wrong email address. Index: mx_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/includes/mx_common.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mx_common.php 23 Nov 2006 16:34:45 -0000 1.7 --- mx_common.php 23 Nov 2006 16:38:17 -0000 1.8 *************** *** 10,14 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 10,14 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function |
|
From: Horace <jus...@us...> - 2006-11-23 16:38:12
|
Update of /cvsroot/mxbb/mx_who_am_i In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24670 Modified Files: changelog.txt db_install.php db_upgrade.php mx_who_am_i.php readme.txt Log Message: lol - Corrected wrong email address. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/db_install.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_install.php 23 Nov 2006 16:34:34 -0000 1.5 --- db_install.php 23 Nov 2006 16:38:07 -0000 1.6 *************** *** 10,14 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 10,14 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function Index: changelog.txt =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/changelog.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** changelog.txt 23 Nov 2006 16:34:34 -0000 1.4 --- changelog.txt 23 Nov 2006 16:38:07 -0000 1.5 *************** *** 9,13 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 9,13 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function Index: mx_who_am_i.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/mx_who_am_i.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_who_am_i.php 23 Nov 2006 16:34:34 -0000 1.6 --- mx_who_am_i.php 23 Nov 2006 16:38:07 -0000 1.7 *************** *** 10,14 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 10,14 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function Index: readme.txt =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/readme.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** readme.txt 23 Nov 2006 16:34:34 -0000 1.4 --- readme.txt 23 Nov 2006 16:38:07 -0000 1.5 *************** *** 9,13 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 9,13 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/db_upgrade.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_upgrade.php 23 Nov 2006 16:34:34 -0000 1.5 --- db_upgrade.php 23 Nov 2006 16:38:07 -0000 1.6 *************** *** 10,14 **** | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function --- 10,14 ---- | author : horace (see additional credit below) | author site : www.sketchworkproductions.com ! | author email : de...@sk... | | additional credit : This module is based on the mx_loggedin function |
|
From: Horace <jus...@us...> - 2006-11-23 16:35:07
|
Update of /cvsroot/mxbb/mx_who_am_i/language/lang_english In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23144 Modified Files: lang_main.php Log Message: Corrected some spellings and changed my author details. Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/language/lang_english/lang_main.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lang_main.php 14 Aug 2006 10:51:41 -0000 1.5 --- lang_main.php 23 Nov 2006 16:34:59 -0000 1.6 *************** *** 1,12 **** <?php - /** - * - * @package mxBB Portal Module - mx_who_am_i - * @version $Id$ - * @copyright (c) 2002-2006 [Horace] mxBB Project Team - * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 - * - */ - /********************************************************************************\ | --- 1,3 ---- *************** *** 14,23 **** | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.empire-wars.com ! | author email : ho...@em... | | additional credit : This module is based on the mx_loggedin function --- 5,14 ---- | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function *************** *** 25,42 **** | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! \********************************************************************************/ ! ! /********************************************************************************\ | ! | 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. | \********************************************************************************/ --- 16,31 ---- | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! |********************************************************************************| | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ |
|
From: Horace <jus...@us...> - 2006-11-23 16:34:53
|
Update of /cvsroot/mxbb/mx_who_am_i/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23125 Modified Files: mx_common.php Log Message: Corrected some spellings and changed my author details. Index: mx_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/includes/mx_common.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_common.php 29 Jun 2006 19:10:10 -0000 1.6 --- mx_common.php 23 Nov 2006 16:34:45 -0000 1.7 *************** *** 1,12 **** <?php - /** - * - * @package mxBB Portal Module - mx_who_am_i - * @version $Id$ - * @copyright (c) 2002-2006 [Horace] mxBB Project Team - * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 - * - */ - /********************************************************************************\ | --- 1,3 ---- *************** *** 18,23 **** | | author : horace (see additional credit below) ! | author site : www.empire-wars.com ! | author email : ho...@em... | | additional credit : This module is based on the mx_loggedin function --- 9,14 ---- | | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function *************** *** 25,42 **** | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! \********************************************************************************/ ! ! /********************************************************************************\ | ! | 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. | \********************************************************************************/ --- 16,31 ---- | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! |********************************************************************************| | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ |
|
From: Horace <jus...@us...> - 2006-11-23 16:34:43
|
Update of /cvsroot/mxbb/mx_who_am_i In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23106 Modified Files: changelog.txt db_install.php db_upgrade.php mx_who_am_i.php readme.txt Log Message: Corrected some spellings and changed my author details. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/db_install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_install.php 12 Sep 2006 19:35:02 -0000 1.4 --- db_install.php 23 Nov 2006 16:34:34 -0000 1.5 *************** *** 1,11 **** <?php ! /** ! * ! * @package mxBB Portal Module - mx_who_am_i ! * @version $Id$ ! * @copyright (c) 2002-2006 [Horace] mxBB Project Team ! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * ! */ define( 'IN_PORTAL', true ); --- 1,33 ---- <?php ! /********************************************************************************\ ! | ! | subject : mx-portal, CMS & portal, module ! | name : mx_who_am_i ! | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System ! | mxBB project site : www.mx-system.com ! | ! | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... ! | ! | additional credit : This module is based on the mx_loggedin function ! | created by RETORQ. ! | re...@di... ! | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block that ! | will be visable only to registered users who are ! | logged in. It can be used to quickly display ! | statistics and current user image. ! | ! |********************************************************************************| ! | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! | ! \********************************************************************************/ define( 'IN_PORTAL', true ); Index: changelog.txt =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/changelog.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** changelog.txt 17 Oct 2005 13:15:48 -0000 1.3 --- changelog.txt 23 Nov 2006 16:34:34 -0000 1.4 *************** *** 8,13 **** | | author : horace (see additional credit below) ! | author site : www.empire-wars.com ! | author email : ho...@em... | | additional credit : This module is based on the mx_loggedin function --- 8,13 ---- | | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function *************** *** 16,35 **** | www.digitalhijinx.com | ! | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. - |********************************************************************************| - | - | $Id$ | ! \********************************************************************************/ ! ! /********************************************************************************\ | ! | 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. | \********************************************************************************/ --- 16,30 ---- | www.digitalhijinx.com | ! | description : The "Who Am I" block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! |********************************************************************************| | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ Index: mx_who_am_i.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/mx_who_am_i.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mx_who_am_i.php 29 Jun 2006 19:10:10 -0000 1.5 --- mx_who_am_i.php 23 Nov 2006 16:34:34 -0000 1.6 *************** *** 1,12 **** <?php - /** - * - * @package mxBB Portal Module - mx_who_am_i - * @version $Id$ - * @copyright (c) 2002-2006 [Horace] mxBB Project Team - * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 - * - */ - /********************************************************************************\ | --- 1,3 ---- *************** *** 14,23 **** | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.empire-wars.com ! | author email : ho...@em... | | additional credit : This module is based on the mx_loggedin function --- 5,14 ---- | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function *************** *** 25,42 **** | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! \********************************************************************************/ ! ! /********************************************************************************\ | ! | 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. | \********************************************************************************/ --- 16,31 ---- | re...@di... | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! |********************************************************************************| | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ Index: readme.txt =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/readme.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** readme.txt 17 Oct 2005 13:15:48 -0000 1.3 --- readme.txt 23 Nov 2006 16:34:34 -0000 1.4 *************** *** 4,13 **** | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.empire-wars.com ! | author email : ho...@em... | | additional credit : This module is based on the mx_loggedin function --- 4,13 ---- | name : mx_who_am_i | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System | mxBB project site : www.mx-system.com | | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... | | additional credit : This module is based on the mx_loggedin function *************** *** 16,35 **** | www.digitalhijinx.com | ! | description : The "Who Am I" block is a block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. - |********************************************************************************| - | - | $Id$ | ! \********************************************************************************/ ! ! /********************************************************************************\ | ! | 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. | \********************************************************************************/ --- 16,30 ---- | www.digitalhijinx.com | ! | description : The "Who Am I" block is a block that | will be visable only to registered users who are | logged in. It can be used to quickly display | statistics and current user image. | ! |********************************************************************************| | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ *************** *** 60,64 **** 7) If you have followed the instructions correctly you should now be able to ! create mx_who_am_i blocks for inclusion on you pages. /********************************************************************************\ --- 55,59 ---- 7) If you have followed the instructions correctly you should now be able to ! create mx_who_am_i blocks for inclusion on your pages. /********************************************************************************\ Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_who_am_i/db_upgrade.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_upgrade.php 12 Sep 2006 19:35:02 -0000 1.4 --- db_upgrade.php 23 Nov 2006 16:34:34 -0000 1.5 *************** *** 1,11 **** <?php ! /** ! * ! * @package mxBB Portal Module - mx_who_am_i ! * @version $Id$ ! * @copyright (c) 2002-2006 [Horace] mxBB Project Team ! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * ! */ define( 'IN_PORTAL', true ); --- 1,33 ---- <?php ! /********************************************************************************\ ! | ! | subject : mx-portal, CMS & portal, module ! | name : mx_who_am_i ! | begin : october, 2005 ! | copyright : (C) 2002-2005 MX-System ! | mxBB project site : www.mx-system.com ! | ! | author : horace (see additional credit below) ! | author site : www.sketchworkproductions.com ! | author email : j.h...@sk... ! | ! | additional credit : This module is based on the mx_loggedin function ! | created by RETORQ. ! | re...@di... ! | www.digitalhijinx.com ! | ! | description : The "Who Am I" block is a block that ! | will be visable only to registered users who are ! | logged in. It can be used to quickly display ! | statistics and current user image. ! | ! |********************************************************************************| ! | ! | @package mxBB Portal Module - mx_calendar ! | @version $Id$ ! | @copyright (c) 2002-2006 [Horace] mxBB Project Team ! | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! | ! \********************************************************************************/ define( 'IN_PORTAL', true ); |
|
From: Horace <jus...@us...> - 2006-11-16 11:42:48
|
Update of /cvsroot/mxbb/mx_quotations In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2518/mx_quotations Modified Files: db_install.php Log Message: Create statement was wrong. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_quotations/db_install.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** db_install.php 12 Sep 2006 19:33:23 -0000 1.11 --- db_install.php 16 Nov 2006 11:42:43 -0000 1.12 *************** *** 37,41 **** quote text, author varchar(255) default NULL, ! poster_id int(11) unsigned NOT NULL default '-1', post_time int(11) unsigned NOT NULL default '0', PRIMARY KEY (quote_id))" --- 37,41 ---- quote text, author varchar(255) default NULL, ! poster_id int(11) unsigned NOT NULL default '0', post_time int(11) unsigned NOT NULL default '0', PRIMARY KEY (quote_id))" |
|
From: Horace <jus...@us...> - 2006-11-16 11:41:58
|
Update of /cvsroot/mxbb/mx_kb In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2088/mx_kb Modified Files: db_install.php Log Message: Create table statement was wrong. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/db_install.php,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** db_install.php 12 Sep 2006 19:30:00 -0000 1.46 --- db_install.php 16 Nov 2006 11:41:51 -0000 1.47 *************** *** 102,107 **** auth_edit_groups smallint(5) NOT NULL default '0', auth_delete_groups smallint(5) NOT NULL default '0', ! auth_approval_groups smallint(5) NOT NULL default '0', // not really used ! auth_approval_edit_groups smallint(5) NOT NULL default '0', // not really used auth_moderator_groups smallint(5) NOT NULL default '0', --- 102,107 ---- auth_edit_groups smallint(5) NOT NULL default '0', auth_delete_groups smallint(5) NOT NULL default '0', ! auth_approval_groups smallint(5) NOT NULL default '0', /* not really used */ ! auth_approval_edit_groups smallint(5) NOT NULL default '0', /* not really used */ auth_moderator_groups smallint(5) NOT NULL default '0', |
|
From: Horace <jus...@us...> - 2006-10-18 11:35:06
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv25309 Modified Files: Rebuild Search Tables.pak Log Message: Corrected Spelling Index: Rebuild Search Tables.pak =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/Rebuild Search Tables.pak,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Rebuild Search Tables.pak 12 Sep 2006 20:27:33 -0000 1.5 --- Rebuild Search Tables.pak 18 Oct 2006 11:34:59 -0000 1.6 *************** *** 1,2 **** ! module=+:54=+:Reguild Search Tables=+:modules/mx_rebuild_search_tables/=+:=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- 1,2 ---- ! module=+:54=+:Rebuild Search Tables=+:modules/mx_rebuild_search_tables/=+:=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:54:23
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv5456/modules/mx_simpledoc/simpledoc/includes Modified Files: functions_zip.php Log Message: further fixes Index: functions_zip.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/functions_zip.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_zip.php 17 Jun 2006 20:50:47 -0000 1.2 --- functions_zip.php 17 Sep 2006 21:54:18 -0000 1.3 *************** *** 16,20 **** // Created by bouchon // http://dev.maxg.info - // Need help ? http://forum.maxg.info --- 16,19 ---- *************** *** 349,352 **** } } - ?> \ No newline at end of file --- 348,350 ---- |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:54:23
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv5456/modules/mx_simpledoc/simpledoc/modules Modified Files: simpledoc_view.php Log Message: further fixes Index: simpledoc_view.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc_view.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** simpledoc_view.php 30 Jun 2006 11:17:24 -0000 1.3 --- simpledoc_view.php 17 Sep 2006 21:54:18 -0000 1.4 *************** *** 112,119 **** 'MANAGE' => $edit_auth ? ' - <a href="'.$this->this_simpledoc_mxurl('mode=index').'" >[' . $lang['sd_Management'] . ']</a>' : '', - - )); - } } --- 112,116 ---- |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:03:42
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv19144/modules/mx_simpledoc/simpledoc/modules Modified Files: simpledoc__tab-view-content.php simpledoc__tab-view-publish.php Log Message: further fixes Index: simpledoc__tab-view-publish.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-publish.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** simpledoc__tab-view-publish.php 17 Sep 2006 20:15:57 -0000 1.4 --- simpledoc__tab-view-publish.php 17 Sep 2006 21:03:38 -0000 1.5 *************** *** 103,107 **** $html = IoFile::read($path); ! $html = mx_decode($html,''); $search = array ( --- 103,107 ---- $html = IoFile::read($path); ! //$html = mx_decode($html,''); $search = array ( *************** *** 145,147 **** <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo mx_decode($html,''); ?> --- 145,147 ---- <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo $html; ?> Index: simpledoc__tab-view-content.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-content.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** simpledoc__tab-view-content.php 17 Sep 2006 20:15:57 -0000 1.4 --- simpledoc__tab-view-content.php 17 Sep 2006 21:03:37 -0000 1.5 *************** *** 103,106 **** --- 103,130 ---- $html = IoFile::read($path); + //$html = mx_decode($html,''); + + $search = array ( + "'<script[^>]*?>.*?</script>'si", // Strip out javascript + "'<head[^>]*?>.*?</head>'si", // Strip out javascript + //"'([\r\n])[\s]+'", // Strip out white space + "'<br />'i", + "'<html>'i", + "'</html>'i", + "'<body>'i", + "'</body>'i", + ); + $replace = array ( + "", + "", + //"\\1", + "", + "", + "", + "", + "", + ); + + $html = preg_replace( $search, $replace, $html ); // Date in the past *************** *** 120,122 **** ?> ! <?php echo mx_decode($html,''); ?> --- 144,146 ---- ?> ! <?php echo $html; ?> |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:03:42
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv19144/modules/mx_simpledoc/simpledoc/includes/js Modified Files: management.js.php Log Message: further fixes Index: management.js.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/management.js.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** management.js.php 17 Sep 2006 20:15:57 -0000 1.3 --- management.js.php 17 Sep 2006 21:03:37 -0000 1.4 *************** *** 286,290 **** //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! html = html.replace(/<\s*br[^>]*>/gi,""); html = html.trim(); --- 286,290 ---- //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! //html = html.replace(/<\s*br[^>]*>/gi,""); html = html.trim(); |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:02:17
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18618 Modified Files: .htaccess Log Message: Minor htaccess fix Index: .htaccess =================================================================== RCS file: /cvsroot/mxbb/core/.htaccess,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** .htaccess 17 Sep 2006 11:08:16 -0000 1.6 --- .htaccess 17 Sep 2006 21:02:10 -0000 1.7 *************** *** 5,10 **** Options -Indexes ! # Just in case, let's disable register globals. ! php_flag register_globals 0 # Disable the security module --- 5,11 ---- Options -Indexes ! # Just in case, let's disable register globals (only valid for php4). ! # Do NOT enable this when running php5, or you may face internal server errors ! # php_flag register_globals 0 # Disable the security module |
|
From: Jon O. <jon...@us...> - 2006-09-17 21:02:17
|
Update of /cvsroot/mxbb/core/modules/mx_shared/ajax In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18618/modules/mx_shared/ajax Modified Files: AjaxRequest_comp.js Log Message: Minor htaccess fix Index: AjaxRequest_comp.js =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_shared/ajax/AjaxRequest_comp.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AjaxRequest_comp.js 28 Apr 2006 14:29:38 -0000 1.2 --- AjaxRequest_comp.js 17 Sep 2006 21:02:11 -0000 1.3 *************** *** 12,16 **** // site, or any other form where the code is actually being used. You // may not put the plain javascript up on your site for download or ! // include it in your javascript libraries for download. // If you wish to share this code with others, please just point them // to the URL instead. --- 12,16 ---- // site, or any other form where the code is actually being used. You // may not put the plain javascript up on your site for download or ! // include it in your javascript libraries for download. // If you wish to share this code with others, please just point them // to the URL instead. *************** *** 69,73 **** req.status =req.xmlHttpRequest.status; req.statusText =req.xmlHttpRequest.statusText; ! req.responseText =req.xmlHttpRequest.responseText; req.responseXML =req.xmlHttpRequest.responseXML; if(typeof(req.onComplete)=="function"){req.onComplete(req);}if(req.xmlHttpRequest.status==200 && typeof(req.onSuccess)=="function"){req.onSuccess(req);}else if(typeof(req.onError)=="function"){req.onError(req);}delete req.xmlHttpRequest['onreadystatechange']; --- 69,73 ---- req.status =req.xmlHttpRequest.status; req.statusText =req.xmlHttpRequest.statusText; ! req.responseText =req.xmlHttpRequest.responseText; // IE req.responseXML =req.xmlHttpRequest.responseXML; if(typeof(req.onComplete)=="function"){req.onComplete(req);}if(req.xmlHttpRequest.status==200 && typeof(req.onSuccess)=="function"){req.onSuccess(req);}else if(typeof(req.onError)=="function"){req.onError(req);}delete req.xmlHttpRequest['onreadystatechange']; |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:03
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc/includes/js Modified Files: init_main.js management.js.php Log Message: My god, this module is advanced... Index: init_main.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/init_main.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** init_main.js 17 Sep 2006 14:39:23 -0000 1.2 --- init_main.js 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 132,136 **** function treeMoveUp() { ! if (tree.mayMoveUp() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveUp&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveUp(); } else { --- 132,136 ---- function treeMoveUp() { ! if (tree.mayMoveUp() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveUp&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveUp(); } else { *************** *** 139,143 **** } function treeMoveDown() { ! if (tree.mayMoveDown() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveDown&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveDown(); } else { --- 139,143 ---- } function treeMoveDown() { ! if (tree.mayMoveDown() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveDown&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveDown(); } else { *************** *** 146,150 **** } function treeMoveLeft() { ! if (tree.mayMoveLeft() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveLeft&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveLeft(); } else { --- 146,150 ---- } function treeMoveLeft() { ! if (tree.mayMoveLeft() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveLeft&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveLeft(); } else { *************** *** 153,157 **** } function treeMoveRight() { ! if (tree.mayMoveRight() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveRight&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveRight(); } else { --- 153,157 ---- } function treeMoveRight() { ! if (tree.mayMoveRight() && httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=moveRight&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.moveRight(); } else { *************** *** 190,217 **** name.value = name.value.substr(0, name.value.length-5); } ! var id = encodeURIComponent(name.value); if (type.value != "folder") { ! id = name.value + ".html"; } if (tree.active) { switch (where.value) { case "before": ! //alert("&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id); ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertBefore&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertBefore(id, name.value, type.value); } break; case "after": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertAfter&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertAfter(id, name.value, type.value); } break; case "inside_start": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtStart&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtStart(id, name.value, type.value); } break; case "inside_end": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtEnd&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtEnd(id, name.value, type.value); } --- 190,216 ---- name.value = name.value.substr(0, name.value.length-5); } ! var id = escape(name.value); if (type.value != "folder") { ! id = escape(name.value + ".html"); } if (tree.active) { switch (where.value) { case "before": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertBefore&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertBefore(id, name.value, type.value); } break; case "after": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertAfter&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertAfter(id, name.value, type.value); } break; case "inside_start": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtStart&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtStart(id, name.value, type.value); } break; case "inside_end": ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insertInsideAtEnd&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insertInsideAtEnd(id, name.value, type.value); } *************** *** 219,223 **** } } else { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insert&id="+encodeURIComponent(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insert(id, name.value, type.value); } --- 218,222 ---- } } else { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=insert&id="+escape(treeGetId())+"&name="+id+"&is_folder="+(type.value=="folder" ? 1 : 0)+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.insert(id, name.value, type.value); } *************** *** 236,240 **** if (tree.mayRemove()) { if (confirm("Delete current node ?")) { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=remove&id="+encodeURIComponent(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.remove(); if (document.getElementById("tree-insert-form").style.display == "block") { --- 235,239 ---- if (tree.mayRemove()) { if (confirm("Delete current node ?")) { ! if (httpSave("modules/mx_simpledoc/simpledoc/modules/simpledoc__node.php?do=remove&id="+escape(treeGetId())+'&block_id='+mxBlock.block_id+'&page_id='+mxBlock.page_id)) { tree.remove(); if (document.getElementById("tree-insert-form").style.display == "block") { Index: management.js.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/js/management.js.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** management.js.php 17 Sep 2006 14:39:23 -0000 1.2 --- management.js.php 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 286,290 **** //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! //html = html.replace(/<\s*br[^>]*>/gi,""); html = html.trim(); --- 286,290 ---- //html = html.replace(/<\s*(\w[^>]*) style="([^"]*)"([^>]*)/gi, "") ; ! html = html.replace(/<\s*br[^>]*>/gi,""); html = html.trim(); |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:02
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/XulMenu In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc/shared/XulMenu Modified Files: XulMenu.js Log Message: My god, this module is advanced... Index: XulMenu.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/XulMenu/XulMenu.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XulMenu.js 23 Apr 2006 19:21:28 -0000 1.1 --- XulMenu.js 17 Sep 2006 20:15:57 -0000 1.2 *************** *** 11,15 **** /* This code has been modified a little to get it work with SimpleDoc the way I wanted */ function XulMenu(id) { ! this.type = "horizontal"; this.position = { --- 11,15 ---- /* This code has been modified a little to get it work with SimpleDoc the way I wanted */ function XulMenu(id) { ! this.type = "horizontal"; this.position = { |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:02
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc/includes Modified Files: functions.php functions_node.php functions_simpledoc.php Log Message: My god, this module is advanced... Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/functions.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions.php 23 Apr 2006 19:21:27 -0000 1.1 --- functions.php 17 Sep 2006 20:15:56 -0000 1.2 *************** *** 8,12 **** * */ ! if ( !defined( 'IN_PORTAL' ) ) { --- 8,12 ---- * */ ! if ( !defined( 'IN_PORTAL' ) ) { *************** *** 24,32 **** $mx_simpledoc->debug('functions->set_config', basename( __FILE__ )); ! $sql = "UPDATE " . SIMPLEDOC_CONFIG_TABLE . " SET config_value = '" . str_replace( "\'", "''", $config_value ) . "' WHERE config_name = '$config_name'"; ! if ( !$db->sql_query( $sql ) ) { --- 24,32 ---- $mx_simpledoc->debug('functions->set_config', basename( __FILE__ )); ! $sql = "UPDATE " . SIMPLEDOC_CONFIG_TABLE . " SET config_value = '" . str_replace( "\'", "''", $config_value ) . "' WHERE config_name = '$config_name'"; ! if ( !$db->sql_query( $sql ) ) { *************** *** 54,59 **** $mx_simpledoc->debug('functions->get config', basename( __FILE__ )); ! ! $sql = "SELECT * FROM " . SIMPLEDOC_CONFIG_TABLE; --- 54,59 ---- $mx_simpledoc->debug('functions->get config', basename( __FILE__ )); ! ! $sql = "SELECT * FROM " . SIMPLEDOC_CONFIG_TABLE; *************** *** 72,76 **** return ( $simpledoc_config ); } ! // fix xmlhttprequest charset bug , utf-8 => windows-1250 function fix_charset($str) { --- 72,76 ---- return ( $simpledoc_config ); } ! // fix xmlhttprequest charset bug , utf-8 => windows-1250 function fix_charset($str) { *************** *** 89,91 **** --- 89,115 ---- } + // error handler function + function myErrorHandler($errno, $errstr, $errfile, $errline) + { + switch ($errno) + { + case E_USER_ERROR: + $Node->error = true; + echo "<b>My ERROR</b> [$errno] $errstr\n\n"; + echo "Fatal error in line $errline of file $errfile"; + echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")\n\n"; + echo "Aborting...\n"; + exit(1); + break; + case E_USER_WARNING: + echo "<b>My WARNING</b> [$errno] $errstr\n\n"; + break; + case E_USER_NOTICE: + echo "<b>My NOTICE</b> [$errno] $errstr\n\n"; + break; + default: + // echo "Unknown error type: [$errno] $errstr<br />\n"; + break; + } + } ?> \ No newline at end of file Index: functions_node.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/functions_node.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions_node.php 17 Sep 2006 14:39:23 -0000 1.3 --- functions_node.php 17 Sep 2006 20:15:56 -0000 1.4 *************** *** 58,62 **** $this->level = substr_count($this->id, '/'); - //trigger_error("Info: '{$this->path}' ", E_USER_ERROR); if ($this->id) { if (IoFile::exists($this->path)) { --- 58,61 ---- *************** *** 78,82 **** function moveUp() { - trigger_error("Node.moveUp() failed, this action cannot be executed for the root element", E_USER_ERROR); if (!$this->id) { return trigger_error("Node.moveUp() failed, this action cannot be executed for the root element", E_USER_ERROR); } $nodes = $this->loadSort($this->currFolder); --- 77,80 ---- Index: functions_simpledoc.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/includes/functions_simpledoc.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** functions_simpledoc.php 30 Aug 2006 19:22:08 -0000 1.5 --- functions_simpledoc.php 17 Sep 2006 20:15:56 -0000 1.6 *************** *** 463,466 **** --- 463,498 ---- return true; } + + function unicode_urldecode($url) + { + preg_match_all('/%u([[:alnum:]]{4})/', $url, $a); + + foreach ($a[1] as $uniord) + { + $dec = hexdec($uniord); + $utf = ''; + + if ($dec < 128) + { + $utf = chr($dec); + } + else if ($dec < 2048) + { + $utf = chr(192 + (($dec - ($dec % 64)) / 64)); + $utf .= chr(128 + ($dec % 64)); + } + else + { + $utf = chr(224 + (($dec - ($dec % 4096)) / 4096)); + $utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64)); + $utf .= chr(128 + ($dec % 64)); + } + + $url = str_replace('%u'.$uniord, $utf, $url); + } + + return urldecode($url); + } + } |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:02
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc Modified Files: simpledoc_common.php Log Message: My god, this module is advanced... Index: simpledoc_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/simpledoc_common.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** simpledoc_common.php 17 Sep 2006 14:47:57 -0000 1.5 --- simpledoc_common.php 17 Sep 2006 20:15:57 -0000 1.6 *************** *** 14,18 **** } ! $simpledoc_debug = false; // =================================================== --- 14,18 ---- } ! $simpledoc_debug = true; // =================================================== *************** *** 55,59 **** --- 55,61 ---- include_once( $module_root_path . 'simpledoc/includes/functions_io.' . $phpEx ); include_once( $module_root_path . 'simpledoc/includes/functions_node.' . $phpEx ); + //include_once( $module_root_path . 'config.' . $phpEx ); + $CONFIG['encoding'] = 'iso-8859-1'; ini_set('display_errors', 1); |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:02
|
Update of /cvsroot/mxbb/mx_simpledoc/templates/subSilver In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/templates/subSilver Modified Files: simpledoc_index.tpl Log Message: My god, this module is advanced... Index: simpledoc_index.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/templates/subSilver/simpledoc_index.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc_index.tpl 2 May 2006 23:29:00 -0000 1.2 --- simpledoc_index.tpl 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 327,331 **** </div> <script type="text/javascript">var menu = new XulMenu("menu"); menu.zIndex.visible = 10; menu.init();</script> ! </td> </tr> --- 327,331 ---- </div> <script type="text/javascript">var menu = new XulMenu("menu"); menu.zIndex.visible = 10; menu.init();</script> ! </td> </tr> *************** *** 344,348 **** <table cellspacing="0" cellpadding="0"> <tr> ! <td class="row2"> <div class="wrap1"> <div class="top">{L_TOC}</div> --- 344,348 ---- <table cellspacing="0" cellpadding="0"> <tr> ! <td class="row2"> <div class="wrap1"> <div class="top">{L_TOC}</div> *************** *** 354,358 **** </div> <script type="text/javascript">var tree = new DynamicTree("tree"); tree.path = "{MX_ROOT_PATH}{MODULE_ROOT_PATH}simpledoc/shared/DynamicTree/images/"; tree.init();</script> ! </td> </tr> --- 354,358 ---- </div> <script type="text/javascript">var tree = new DynamicTree("tree"); tree.path = "{MX_ROOT_PATH}{MODULE_ROOT_PATH}simpledoc/shared/DynamicTree/images/"; tree.init();</script> ! </td> </tr> |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:02
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc/modules Modified Files: simpledoc__node.php simpledoc__tab-document-info.php simpledoc__tab-edit-content.php simpledoc__tab-save-content.php simpledoc__tab-view-content.php simpledoc__tab-view-publish.php Log Message: My god, this module is advanced... Index: simpledoc__tab-edit-content.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-edit-content.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__tab-edit-content.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__tab-edit-content.php 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 84,88 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! $id = urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; --- 84,98 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } ! ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; *************** *** 110,114 **** ?> <form name="simpleform" action="./modules/mx_simpledoc/simpledoc/modules/simpledoc__tab-save-content.php" method="post" onSubmit="ste.submit(); saveContent(this); this.blur();return false;"> ! <input type="hidden" id="id" name="id" value="<?php echo $id; ?>"> <input type="hidden" id="block_id" name="block_id" value="<?php echo $block_id; ?>"> <input type="hidden" id="page_id" name="page_id" value="<?php echo $page_id; ?>"> --- 120,124 ---- ?> <form name="simpleform" action="./modules/mx_simpledoc/simpledoc/modules/simpledoc__tab-save-content.php" method="post" onSubmit="ste.submit(); saveContent(this); this.blur();return false;"> ! <input type="hidden" id="id" name="id" value="<?php echo get('id'); ?>"> <input type="hidden" id="block_id" name="block_id" value="<?php echo $block_id; ?>"> <input type="hidden" id="page_id" name="page_id" value="<?php echo $page_id; ?>"> Index: simpledoc__node.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__node.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** simpledoc__node.php 17 Sep 2006 14:47:56 -0000 1.4 --- simpledoc__node.php 17 Sep 2006 20:15:57 -0000 1.5 *************** *** 85,113 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); - // error handler function - function myErrorHandler($errno, $errstr, $errfile, $errline) - { - switch ($errno) - { - case E_USER_ERROR: - $Node->error = true; - echo "<b>My ERROR</b> [$errno] $errstr\n\n"; - echo "Fatal error in line $errline of file $errfile"; - echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")\n\n"; - echo "Aborting...\n"; - exit(1); - break; - case E_USER_WARNING: - echo "<b>My WARNING</b> [$errno] $errstr\n\n"; - break; - case E_USER_NOTICE: - echo "<b>My NOTICE</b> [$errno] $errstr\n\n"; - break; - default: - // echo "Unknown error type: [$errno] $errstr<br />\n"; - break; - } - } - if ($simpledoc_debug) { --- 85,88 ---- *************** *** 121,130 **** $do = get('do'); ! $id = urldecode(get('id')); // reverse the js encodeURIComponent ! $name = get('name'); ! $is_folder = get('is_folder'); ! $id = $mx_simpledoc_functions->fix_charset($id); ! $name = $mx_simpledoc_functions->fix_charset($name); switch ($do) --- 96,103 ---- $do = get('do'); ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('id'))); ! $name = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('name'))); ! $is_folder = get('is_folder'); switch ($do) Index: simpledoc__tab-view-content.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-content.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** simpledoc__tab-view-content.php 17 Sep 2006 14:39:24 -0000 1.3 --- simpledoc__tab-view-content.php 17 Sep 2006 20:15:57 -0000 1.4 *************** *** 84,88 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! $id = urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; --- 84,98 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } ! ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; *************** *** 110,112 **** ?> ! <?php echo $html ?> --- 120,122 ---- ?> ! <?php echo mx_decode($html,''); ?> Index: simpledoc__tab-view-publish.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-view-publish.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** simpledoc__tab-view-publish.php 17 Sep 2006 14:39:24 -0000 1.3 --- simpledoc__tab-view-publish.php 17 Sep 2006 20:15:57 -0000 1.4 *************** *** 84,88 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! $id = urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $PUBLISH.'/html/'.$id; --- 84,98 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } ! ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $PUBLISH.'/html/'.$id; *************** *** 135,137 **** <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo $html; ?> --- 145,147 ---- <?php echo '<div id="parentTOC"></div>' ?> ! <?php echo mx_decode($html,''); ?> Index: simpledoc__tab-save-content.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-save-content.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__tab-save-content.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__tab-save-content.php 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 84,93 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! $id = $mx_request_vars->request('id', MX_TYPE_POST_VARS, ''); ! $body = $mx_request_vars->request('body', MX_TYPE_POST_VARS, ''); ! $id = $mx_simpledoc_functions->fix_charset($id); $path = $CONTENT.'/'.$id; ! $body = $mx_simpledoc_functions->fix_charset($body); if (!IoFile::exists($path)) { --- 84,101 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(post('id'))); $path = $CONTENT.'/'.$id; ! ! $body = $mx_request_vars->request('body', MX_TYPE_POST_VARS, ''); if (!IoFile::exists($path)) { *************** *** 95,98 **** --- 103,107 ---- exit; } + IoFile::write($path, $body); Index: simpledoc__tab-document-info.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__tab-document-info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** simpledoc__tab-document-info.php 2 May 2006 23:29:00 -0000 1.2 --- simpledoc__tab-document-info.php 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 84,88 **** include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! $id = urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; --- 84,98 ---- include_once( $module_root_path . 'simpledoc/simpledoc_common.' . $phpEx ); ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } ! ! $id = $mx_simpledoc->unicode_urldecode($mx_simpledoc_functions->fix_charset(get('id'))); $path = $CONTENT.'/'.$id; |
|
From: Jon O. <jon...@us...> - 2006-09-17 20:16:01
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/DynamicTree In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32089/modules/mx_simpledoc/simpledoc/shared/DynamicTree Modified Files: DynamicTree.js Log Message: My god, this module is advanced... Index: DynamicTree.js =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/shared/DynamicTree/DynamicTree.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DynamicTree.js 17 Sep 2006 14:39:24 -0000 1.2 --- DynamicTree.js 17 Sep 2006 20:15:57 -0000 1.3 *************** *** 245,249 **** }; this.createNode = function(id, text, type) { ! alert(id + ' ' + text); if (!id || findNode(id) || !text || (type != "doc" && type != "folder")) { throw this.id+'.createNode("'+id+'", "'+text+'", "'+type+'") failed, illegal action'; --- 245,249 ---- }; this.createNode = function(id, text, type) { ! id = unescape(id); if (!id || findNode(id) || !text || (type != "doc" && type != "folder")) { throw this.id+'.createNode("'+id+'", "'+text+'", "'+type+'") failed, illegal action'; |
|
From: Jon O. <jon...@us...> - 2006-09-17 14:48:00
|
Update of /cvsroot/mxbb/mx_simpledoc/simpledoc/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv28791/modules/mx_simpledoc/simpledoc/modules Modified Files: simpledoc__node.php Log Message: debug option Index: simpledoc__node.php =================================================================== RCS file: /cvsroot/mxbb/mx_simpledoc/simpledoc/modules/simpledoc__node.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** simpledoc__node.php 17 Sep 2006 14:39:24 -0000 1.3 --- simpledoc__node.php 17 Sep 2006 14:47:56 -0000 1.4 *************** *** 88,114 **** function myErrorHandler($errno, $errstr, $errfile, $errline) { ! switch ($errno) { ! case E_USER_ERROR: ! $Node->error = true; ! echo "<b>My ERROR</b> [$errno] $errstr<br />\n"; ! echo " Fatal error in line $errline of file $errfile"; ! echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n"; ! echo "Aborting...<br />\n"; ! exit(1); ! break; ! case E_USER_WARNING: ! echo "<b>My WARNING</b> [$errno] $errstr<br />\n"; ! break; ! case E_USER_NOTICE: ! echo "<b>My NOTICE</b> [$errno] $errstr<br />\n"; ! break; ! default: ! // echo "Unknown error type: [$errno] $errstr<br />\n"; ! break; ! } } ! set_error_handler('myErrorHandler'); ! $LOGERROR = 'error.txt'; $do = get('do'); --- 88,122 ---- function myErrorHandler($errno, $errstr, $errfile, $errline) { ! switch ($errno) ! { ! case E_USER_ERROR: ! $Node->error = true; ! echo "<b>My ERROR</b> [$errno] $errstr\n\n"; ! echo "Fatal error in line $errline of file $errfile"; ! echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")\n\n"; ! echo "Aborting...\n"; ! exit(1); ! break; ! case E_USER_WARNING: ! echo "<b>My WARNING</b> [$errno] $errstr\n\n"; ! break; ! case E_USER_NOTICE: ! echo "<b>My NOTICE</b> [$errno] $errstr\n\n"; ! break; ! default: ! // echo "Unknown error type: [$errno] $errstr<br />\n"; ! break; ! } } ! if ($simpledoc_debug) ! { ! set_error_handler('myErrorHandler'); ! } ! else ! { ! set_error_handler('logError'); ! $LOGERROR = 'error.txt'; ! } $do = get('do'); |