phpslash-commit Mailing List for phpSlash (Page 59)
Brought to you by:
joestewart,
nhruby
This list is closed, nobody may subscribe to it.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2003-03-05 21:20:28
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv25313/phpslash-ft Modified Files: CHANGES Log Message: slashAuth magic and remember me fix Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.714 retrieving revision 1.715 diff -C2 -d -r1.714 -r1.715 *** CHANGES 4 Mar 2003 21:54:27 -0000 1.714 --- CHANGES 5 Mar 2003 21:20:19 -0000 1.715 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-March-05 3:30PM CST Joe Stewart <joe...@us...> + [B] - slashAuthCR.class - correctly use the "magic" word in the config file + if available. This was causing the "remember me" cookie not to work. + 2003-March-04 3:30PM CST Joe Stewart <joe...@us...> [W] - index.php3, functions.inc, Comment.class - added SKIN and IMAGEURL |
From: Joe S. <joe...@us...> - 2003-03-04 21:55:03
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv4933/phpslash-ft/public_html Modified Files: index.php3 Log Message: added SKIN placeholder availability to a few templates Index: index.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** index.php3 20 Dec 2002 22:17:31 -0000 1.65 --- index.php3 4 Mar 2003 21:54:29 -0000 1.66 *************** *** 53,58 **** )); ! if( !empty($GLOBALS['QUERY_STRING'])) { ! $QUERY_STRING = '?'.$GLOBALS['QUERY_STRING']; } else { $QUERY_STRING = ''; --- 53,58 ---- )); ! if( !empty($_SERVER['QUERY_STRING'])) { ! $QUERY_STRING = '?'.$_SERVER['QUERY_STRING']; } else { $QUERY_STRING = ''; *************** *** 60,63 **** --- 60,64 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], |
From: Joe S. <joe...@us...> - 2003-03-04 21:55:03
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv4933/phpslash-ft Modified Files: CHANGES Log Message: added SKIN placeholder availability to a few templates Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.713 retrieving revision 1.714 diff -C2 -d -r1.713 -r1.714 *** CHANGES 3 Mar 2003 16:58:49 -0000 1.713 --- CHANGES 4 Mar 2003 21:54:27 -0000 1.714 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-March-04 3:30PM CST Joe Stewart <joe...@us...> + [W] - index.php3, functions.inc, Comment.class - added SKIN and IMAGEURL + placeholders to comment submit form, footer, and index page. + 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> [BT] - search.php3, searchPage.tpl - use getTitle and TITLEBAR template |
From: Joe S. <joe...@us...> - 2003-03-04 21:54:36
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv4933/phpslash-ft/class Modified Files: functions.inc Comment.class Log Message: added SKIN placeholder availability to a few templates Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v retrieving revision 1.134 retrieving revision 1.135 diff -C2 -d -r1.134 -r1.135 *** functions.inc 21 Feb 2003 21:47:04 -0000 1.134 --- functions.inc 4 Mar 2003 21:54:30 -0000 1.135 *************** *** 646,649 **** --- 646,651 ---- $templ->set_var(array( + 'IMAGEURL' => $_PSL['imageurl'], + 'SKIN' => $_PSL['skin'], 'BASEURL' => $_PSL['rooturl'], 'NAVBAR' => $navbarcontent Index: Comment.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Comment.class,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** Comment.class 3 Feb 2003 17:59:21 -0000 1.42 --- Comment.class 4 Mar 2003 21:54:31 -0000 1.43 *************** *** 571,574 **** --- 571,577 ---- $this->ctempl->set_var(array( + 'IMAGEDIR' => $this->psl['imageurl'], + 'ROOTURL' => $this->psl['rooturl'], + 'SKIN' => $this->psl['skin'], 'COMMENT_ID' => $ary['comment_id'], 'PARENT' => $ary['replying_to'], |
From: Joe S. <joe...@us...> - 2003-03-03 16:59:30
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv28310/phpslash-ft/public_html/templates/en/default Modified Files: searchPage.tpl Log Message: search.php3, searchPage.tpl - use getTitle and TITLEBAR template placeholder Index: searchPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/searchPage.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** searchPage.tpl 17 Mar 2002 01:00:08 -0000 1.5 --- searchPage.tpl 3 Mar 2003 16:58:55 -0000 1.6 *************** *** 1,4 **** <!-- searchPage.tpl begin--> ! <img src="{TOPIC_IMAGE_SRC}" hspace=60 vspace=10 width={TOPIC_WIDTH} height={TOPIC_HEIGHT} alt="{TOPIC_ALT_TEXT}"> <table width="100%" border="0"> --- 1,4 ---- <!-- searchPage.tpl begin--> ! {TITLEBAR} <img src="{TOPIC_IMAGE_SRC}" hspace=60 vspace=10 width={TOPIC_WIDTH} height={TOPIC_HEIGHT} alt="{TOPIC_ALT_TEXT}"> <table width="100%" border="0"> |
From: Joe S. <joe...@us...> - 2003-03-03 16:59:29
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv28310/phpslash-ft Modified Files: CHANGES Log Message: search.php3, searchPage.tpl - use getTitle and TITLEBAR template placeholder Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.712 retrieving revision 1.713 diff -C2 -d -r1.712 -r1.713 *** CHANGES 3 Mar 2003 16:54:41 -0000 1.712 --- CHANGES 3 Mar 2003 16:58:49 -0000 1.713 *************** *** 14,16 **** --- 14,20 ---- 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> + [BT] - search.php3, searchPage.tpl - use getTitle and TITLEBAR template + placeholder. + + 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> [D] - Moved CHANGES to doc/changeHistory/CHANGES-065-070 and reset CHANGES file. |
From: Joe S. <joe...@us...> - 2003-03-03 16:59:29
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv28310/phpslash-ft/public_html/templates/en/basic Modified Files: searchPage.tpl Log Message: search.php3, searchPage.tpl - use getTitle and TITLEBAR template placeholder Index: searchPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/searchPage.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** searchPage.tpl 9 Apr 2002 16:57:06 -0000 1.2 --- searchPage.tpl 3 Mar 2003 16:58:54 -0000 1.3 *************** *** 1,4 **** --- 1,5 ---- <!-- Start searchPage.tpl --> <div id="searchPage"> + {TITLEBAR} <img src="{TOPIC_IMAGE_SRC}" hspace="60" vspace="10" width="{TOPIC_WIDTH}" height="{TOPIC_HEIGHT}" alt="{TOPIC_ALT_TEXT}" /> <form action="{ACTION_URL}" method="get"> |
From: Joe S. <joe...@us...> - 2003-03-03 16:59:01
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv28310/phpslash-ft/public_html Modified Files: search.php3 Log Message: search.php3, searchPage.tpl - use getTitle and TITLEBAR template placeholder Index: search.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/search.php3,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** search.php3 20 Dec 2002 22:17:32 -0000 1.54 --- search.php3 3 Mar 2003 16:58:54 -0000 1.55 *************** *** 172,176 **** $templ->set_file ("searchpage", "searchPage.tpl"); ! titlebar("100%",sprintf(pslgetText("Searching %s"),htmlentities($query))); // Required to clean the QUERY_STRING field in the template --- 172,176 ---- $templ->set_file ("searchpage", "searchPage.tpl"); ! $titlebar = getTitlebar("100%",sprintf(pslgetText("Searching %s"),htmlentities($query))); // Required to clean the QUERY_STRING field in the template *************** *** 180,183 **** --- 180,184 ---- $templ->set_var (array ( + 'TITLEBAR' => $titlebar, 'TOPIC_IMAGE_SRC' => $_PSL['imageurl']."/topics/$topic_image_name", 'TOPIC_WIDTH' => $topic_image_width, |
From: Joe S. <joe...@us...> - 2003-03-03 16:54:51
|
Update of /cvsroot/phpslash/phpslash-ft/doc/changeHistory In directory sc8-pr-cvs1:/tmp/cvs-serv26633/phpslash-ft/doc/changeHistory Added Files: CHANGES-065-070 Log Message: moved CHANGES to doc/changeHistory --- NEW FILE: CHANGES-065-070 --- $Id: CHANGES-065-070,v 1.1 2003/03/03 16:54:47 joestewart Exp $ Changes Legend... B - Bugfix F - Feature Added E - Experimental T - Template changed D - Documentation S - Database Schema R - RELEASE W - General Work on something 9 - Removal of something (kill -9 :) 2003-February-28 9:30AM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7. - VERSION, config-dist.php3, config.php3, about.tpl - bumped version for release. [...988 lines suppressed...] 2002-May-20 12:00PM CDT Joe Stewart <joe...@us...> [F] - Block_render_submission.class - display submission queue in a block. [FT] - Block_render_login.class, loginblock.tpl - added login/logout block. [D] - phpslash.sgml - Added login/logout and submission blocks to docs. [T] - basic/openbox.tpl, default/openbox.tpl, default/framedbox.tpl - added alternate fancybox templates. 2002-May-20 11:00AM CDT Joe Stewart <joe...@us...> [FT] - Block_render_navbar.class, navbarBlock.tpl - added Luis' navbar block. [D] - phpslash.sgml - Added navbar block and new upgrade section to docs. 2002-May-20 10:30AM CDT Joe Stewart <joe...@us...> [F] - Poll.class, config.php3 - Feature Request [ 528683 ]. Polls have a variable number of answers. Similar to block options. If more are needed, they are added automatically. 2002-May-20 10:00AM CDT Joe Stewart <joe...@us...> [D] - Moved CHANGES to doc/changeHistory/CHANGES-062-065 |
From: Joe S. <joe...@us...> - 2003-03-03 16:54:50
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv26633/phpslash-ft Modified Files: CHANGES Log Message: moved CHANGES to doc/changeHistory Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.711 retrieving revision 1.712 diff -C2 -d -r1.711 -r1.712 *** CHANGES 28 Feb 2003 15:39:17 -0000 1.711 --- CHANGES 3 Mar 2003 16:54:41 -0000 1.712 *************** *** 13,1027 **** 9 - Removal of something (kill -9 :) ! 2003-February-28 9:30AM CST Joe Stewart <joe...@us...> ! [R] - Released phpSlash 0.7. ! - VERSION, config-dist.php3, config.php3, about.tpl - bumped version for ! release. ! ! 2003-February-27 11:30AM CST Joe Stewart <joe...@us...> ! [W] - db_xfer.php3.disabled - ensure the page is not cached. ! [...990 lines suppressed...] ! [T] - basic/openbox.tpl, default/openbox.tpl, default/framedbox.tpl - ! added alternate fancybox templates. ! ! 2002-May-20 11:00AM CDT Joe Stewart <joe...@us...> ! [FT] - Block_render_navbar.class, navbarBlock.tpl - added Luis' navbar ! block. ! [D] - phpslash.sgml - Added navbar block and new upgrade section to docs. ! ! 2002-May-20 10:30AM CDT Joe Stewart <joe...@us...> ! [F] - Poll.class, config.php3 - Feature Request [ 528683 ]. ! Polls have a variable number of answers. Similar to block options. ! If more are needed, they are added automatically. ! ! 2002-May-20 10:00AM CDT Joe Stewart <joe...@us...> ! [D] - Moved CHANGES to doc/changeHistory/CHANGES-062-065 --- 13,16 ---- 9 - Removal of something (kill -9 :) ! 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> ! [D] - Moved CHANGES to doc/changeHistory/CHANGES-065-070 and reset CHANGES file. |
From: Joe S. <joe...@us...> - 2003-02-28 15:42:42
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv1007/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: Released phpSlash 0.7 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** about.tpl 28 Feb 2003 15:39:27 -0000 1.13 --- about.tpl 28 Feb 2003 15:42:37 -0000 1.14 *************** *** 18,22 **** <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz">V0.7</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>February 14, 2003</TD> </TR> <TR> --- 18,22 ---- <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz">V0.7</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>February 28, 2003</TD> </TR> <TR> |
From: Joe S. <joe...@us...> - 2003-02-28 15:40:00
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv32042/phpslash-ft/public_html/templates/en/basic Modified Files: about.tpl Log Message: Released phpSlash 0.7 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/about.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** about.tpl 14 Feb 2003 16:56:29 -0000 1.4 --- about.tpl 28 Feb 2003 15:39:25 -0000 1.5 *************** *** 10,16 **** </tr> <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC3.tar.gz?download">V0.7RC3</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>February 14, 2003</td> </tr> <tr> --- 10,16 ---- </tr> <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz?download">V0.7</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>February 28, 2003</td> </tr> <tr> |
From: Joe S. <joe...@us...> - 2003-02-28 15:39:59
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv32042/phpslash-ft/public_html Modified Files: config-dist.php3 config.php3 Log Message: Released phpSlash 0.7 Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** config-dist.php3 25 Feb 2003 16:34:01 -0000 1.38 --- config-dist.php3 28 Feb 2003 15:39:23 -0000 1.39 *************** *** 74,78 **** $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7RC4'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 74,78 ---- $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7'; /**** START DEBUGGING - Comment or delete this for production! ****/ Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.183 retrieving revision 1.184 diff -C2 -d -r1.183 -r1.184 *** config.php3 25 Feb 2003 16:34:02 -0000 1.183 --- config.php3 28 Feb 2003 15:39:24 -0000 1.184 *************** *** 60,64 **** } ! $_PSL['version'] = '0.7RC4'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 60,64 ---- } ! $_PSL['version'] = '0.7'; /**** START DEBUGGING - Comment or delete this for production! ****/ |
From: Joe S. <joe...@us...> - 2003-02-28 15:39:58
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv32042/phpslash-ft Modified Files: CHANGES VERSION Log Message: Released phpSlash 0.7 Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.710 retrieving revision 1.711 diff -C2 -d -r1.710 -r1.711 *** CHANGES 27 Feb 2003 17:32:18 -0000 1.710 --- CHANGES 28 Feb 2003 15:39:17 -0000 1.711 *************** *** 13,21 **** 9 - Removal of something (kill -9 :) 2003-February-27 11:30AM CST Joe Stewart <joe...@us...> [W] - db_xfer.php3.disabled - ensure the page is not cached. 2003-February-25 10:30AM CST Joe Stewart <joe...@us...> ! [R] - Released phpSlash 0.7RC2. - VERSION, config-dist.php3, config.php3 - bumped version for release. --- 13,26 ---- 9 - Removal of something (kill -9 :) + 2003-February-28 9:30AM CST Joe Stewart <joe...@us...> + [R] - Released phpSlash 0.7. + - VERSION, config-dist.php3, config.php3, about.tpl - bumped version for + release. + 2003-February-27 11:30AM CST Joe Stewart <joe...@us...> [W] - db_xfer.php3.disabled - ensure the page is not cached. 2003-February-25 10:30AM CST Joe Stewart <joe...@us...> ! [R] - Released phpSlash 0.7RC4. - VERSION, config-dist.php3, config.php3 - bumped version for release. Index: VERSION =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/VERSION,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** VERSION 25 Feb 2003 16:34:01 -0000 1.15 --- VERSION 28 Feb 2003 15:39:22 -0000 1.16 *************** *** 1 **** ! 0.7RC4 --- 1 ---- ! 0.7 |
From: Joe S. <joe...@us...> - 2003-02-28 15:39:32
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv32042/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: Released phpSlash 0.7 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** about.tpl 14 Feb 2003 16:56:30 -0000 1.12 --- about.tpl 28 Feb 2003 15:39:27 -0000 1.13 *************** *** 16,20 **** </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC3.tar.gz">V0.7RC3</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> <TD>February 14, 2003</TD> --- 16,20 ---- </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz">V0.7</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> <TD>February 14, 2003</TD> |
From: Joe S. <joe...@us...> - 2003-02-27 17:32:32
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv24080/phpslash-ft Modified Files: CHANGES Log Message: ensure the db_xfer script is not cached Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.709 retrieving revision 1.710 diff -C2 -d -r1.709 -r1.710 *** CHANGES 25 Feb 2003 16:33:58 -0000 1.709 --- CHANGES 27 Feb 2003 17:32:18 -0000 1.710 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-February-27 11:30AM CST Joe Stewart <joe...@us...> + [W] - db_xfer.php3.disabled - ensure the page is not cached. + 2003-February-25 10:30AM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7RC2. |
From: Joe S. <joe...@us...> - 2003-02-27 17:32:32
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv24080/phpslash-ft/public_html Modified Files: db_xfer.php3.disabled Log Message: ensure the db_xfer script is not cached Index: db_xfer.php3.disabled =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/db_xfer.php3.disabled,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** db_xfer.php3.disabled 11 Jan 2003 04:48:50 -0000 1.21 --- db_xfer.php3.disabled 27 Feb 2003 17:32:25 -0000 1.22 *************** *** 10,14 **** */ ! require("config.php"); /* Array of availible functions. Please update if need be*/ --- 10,17 ---- */ ! // don't cache this page ! $cachetimeout=-1; ! ! require("config.php3"); /* Array of availible functions. Please update if need be*/ |
From: Joe S. <joe...@us...> - 2003-02-25 16:34:07
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv27347/phpslash-ft/public_html Modified Files: config-dist.php3 config.php3 Log Message: Release phpSlash 0.7RC4 Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** config-dist.php3 21 Feb 2003 15:58:01 -0000 1.37 --- config-dist.php3 25 Feb 2003 16:34:01 -0000 1.38 *************** *** 74,78 **** $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7RC3'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 74,78 ---- $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7RC4'; /**** START DEBUGGING - Comment or delete this for production! ****/ Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.182 retrieving revision 1.183 diff -C2 -d -r1.182 -r1.183 *** config.php3 13 Feb 2003 18:24:10 -0000 1.182 --- config.php3 25 Feb 2003 16:34:02 -0000 1.183 *************** *** 60,64 **** } ! $_PSL['version'] = '0.7RC3'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 60,64 ---- } ! $_PSL['version'] = '0.7RC4'; /**** START DEBUGGING - Comment or delete this for production! ****/ |
From: Joe S. <joe...@us...> - 2003-02-25 16:34:06
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv27347/phpslash-ft Modified Files: CHANGES VERSION Log Message: Release phpSlash 0.7RC4 Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.708 retrieving revision 1.709 diff -C2 -d -r1.708 -r1.709 *** CHANGES 25 Feb 2003 16:28:20 -0000 1.708 --- CHANGES 25 Feb 2003 16:33:58 -0000 1.709 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-25 10:30AM CST Joe Stewart <joe...@us...> + [R] - Released phpSlash 0.7RC2. + - VERSION, config-dist.php3, config.php3 - bumped version for release. + 2003-February-25 10:00AM CST Joe Stewart <joe...@us...> [W] - slash-all.sql, 65_to_7.sql - removed unused siteeditor and Index: VERSION =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/VERSION,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** VERSION 14 Feb 2003 16:59:15 -0000 1.14 --- VERSION 25 Feb 2003 16:34:01 -0000 1.15 *************** *** 1 **** ! 0.7RC3 --- 1 ---- ! 0.7RC4 |
From: Joe S. <joe...@us...> - 2003-02-25 16:28:29
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv24205/phpslash-ft Modified Files: CHANGES Log Message: removed siteeditor and PublicUserAccount groups Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.707 retrieving revision 1.708 diff -C2 -d -r1.707 -r1.708 *** CHANGES 25 Feb 2003 15:19:21 -0000 1.707 --- CHANGES 25 Feb 2003 16:28:20 -0000 1.708 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-25 10:00AM CST Joe Stewart <joe...@us...> + [W] - slash-all.sql, 65_to_7.sql - removed unused siteeditor and + PubicUserAccount groups. + 2003-February-25 9:00AM CST Joe Stewart <joe...@us...> [B] - slash-all.sql, 65_to_7.sql - added missing authorprofileSave permission |
From: Joe S. <joe...@us...> - 2003-02-25 16:01:41
|
Update of /cvsroot/phpslash/phpslash-ft/tables/0.7 In directory sc8-pr-cvs1:/tmp/cvs-serv9335/phpslash-ft/tables/0.7 Modified Files: slash-all.sql 65_to_7.sql Log Message: removed siteeditor and PublicUserAccount groups Index: slash-all.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/tables/0.7/slash-all.sql,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** slash-all.sql 25 Feb 2003 15:07:40 -0000 1.24 --- slash-all.sql 25 Feb 2003 16:01:37 -0000 1.25 *************** *** 323,327 **** INSERT INTO psl_group (group_id, group_name, group_description) VALUES (1,'author','administer site authors'); - INSERT INTO psl_group (group_id, group_name, group_description) VALUES (27,'PublicUserAccount','logged in Public User Account'); INSERT INTO psl_group (group_id, group_name, group_description) VALUES (4,'block','Block Admin'); INSERT INTO psl_group (group_id, group_name, group_description) VALUES (8,'comment','Comment Admin'); --- 323,326 ---- *************** *** 342,346 **** INSERT INTO psl_group (group_id, group_name, group_description) VALUES (23,'storyeditor','Special extend story editor privileges'); INSERT INTO psl_group (group_id, group_name, group_description) VALUES (24,'root','All privileges'); - INSERT INTO psl_group (group_id, group_name, group_description) VALUES (25,'siteeditor','Site Editor'); # -------------------------------------------------------- --- 341,344 ---- *************** *** 361,367 **** # - INSERT INTO psl_group_group_lut (lut_id, group_id, childgroup_id) VALUES (5,2,1); - INSERT INTO psl_group_group_lut (lut_id, group_id, childgroup_id) VALUES (6,27,20); - INSERT INTO psl_group_group_lut (lut_id, group_id, childgroup_id) VALUES (7,27,21); INSERT INTO psl_group_group_lut (lut_id, group_id, childgroup_id) VALUES (64,24,19); INSERT INTO psl_group_group_lut (lut_id, group_id, childgroup_id) VALUES (63,24,21); --- 359,362 ---- *************** *** 407,411 **** INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES (6,1,45); INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES (11,1,46); - INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES (19,2,49); INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES (20,4,35); INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES (21,4,38); --- 402,405 ---- *************** *** 519,530 **** # ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (17,1,4); ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (16,1,3); ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (15,1,5); ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (14,1,8); ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (39,2,4); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (19,3,''); - INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (38,2,3); - INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (37,2,5); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (40,4,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (41,5,''); --- 513,518 ---- # ! INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (17,1,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (19,3,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (40,4,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (41,5,''); *************** *** 548,554 **** INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (59,23,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (66,24,''); - INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (61,25,''); INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (62,26,''); - INSERT INTO psl_group_section_lut (lut_id, group_id, section_id) VALUES (63,27,''); # -------------------------------------------------------- --- 536,540 ---- Index: 65_to_7.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/tables/0.7/65_to_7.sql,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** 65_to_7.sql 25 Feb 2003 15:07:42 -0000 1.14 --- 65_to_7.sql 25 Feb 2003 16:01:38 -0000 1.15 *************** *** 44,48 **** INSERT INTO psl_group VALUES (1,'author','administer site authors'); - INSERT INTO psl_group VALUES (27,'PublicUserAccount','logged in Public User Account'); INSERT INTO psl_group VALUES (4,'block','Block Admin'); INSERT INTO psl_group VALUES (8,'comment','Comment Admin'); --- 44,47 ---- *************** *** 63,67 **** INSERT INTO psl_group VALUES (23,'storyeditor','Special extend story editor privileges'); INSERT INTO psl_group VALUES (24,'root','All privileges'); - INSERT INTO psl_group VALUES (25,'siteeditor','Site Editor'); --- 62,65 ---- *************** *** 82,88 **** # - INSERT INTO psl_group_group_lut VALUES (5,2,1); - INSERT INTO psl_group_group_lut VALUES (6,27,20); - INSERT INTO psl_group_group_lut VALUES (7,27,21); INSERT INTO psl_group_group_lut VALUES (64,24,19); INSERT INTO psl_group_group_lut VALUES (63,24,21); --- 80,83 ---- *************** *** 127,131 **** INSERT INTO psl_group_permission_lut VALUES (6,1,45); INSERT INTO psl_group_permission_lut VALUES (11,1,46); - INSERT INTO psl_group_permission_lut VALUES (19,2,49); INSERT INTO psl_group_permission_lut VALUES (20,4,35); INSERT INTO psl_group_permission_lut VALUES (21,4,38); --- 122,125 ---- *************** *** 236,247 **** # ! INSERT INTO psl_group_section_lut VALUES (17,1,4); ! INSERT INTO psl_group_section_lut VALUES (16,1,3); ! INSERT INTO psl_group_section_lut VALUES (15,1,5); ! INSERT INTO psl_group_section_lut VALUES (14,1,8); ! INSERT INTO psl_group_section_lut VALUES (39,2,4); INSERT INTO psl_group_section_lut VALUES (19,3,0); - INSERT INTO psl_group_section_lut VALUES (38,2,3); - INSERT INTO psl_group_section_lut VALUES (37,2,5); INSERT INTO psl_group_section_lut VALUES (40,4,0); INSERT INTO psl_group_section_lut VALUES (41,5,0); --- 230,235 ---- # ! INSERT INTO psl_group_section_lut VALUES (17,1,0); INSERT INTO psl_group_section_lut VALUES (19,3,0); INSERT INTO psl_group_section_lut VALUES (40,4,0); INSERT INTO psl_group_section_lut VALUES (41,5,0); *************** *** 267,271 **** INSERT INTO psl_group_section_lut VALUES (61,25,0); INSERT INTO psl_group_section_lut VALUES (62,26,0); - INSERT INTO psl_group_section_lut VALUES (63,27,0); # --- 255,258 ---- |
From: Matthew L. <sym...@us...> - 2003-02-25 15:19:28
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv20653 Modified Files: CHANGES Log Message: Fixed an SQL error in MailingList::build_body() caused by use of the obsolete 'date' column. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.706 retrieving revision 1.707 diff -C2 -d -r1.706 -r1.707 *** CHANGES 25 Feb 2003 15:04:08 -0000 1.706 --- CHANGES 25 Feb 2003 15:19:21 -0000 1.707 *************** *** 20,26 **** emailed to the user. This allows for only a single use as well as improved security. - Mailinglist.class - Matthew - Fixed an SQL error in - MailingList::build_body() caused by use of the obsolete 'date' column. 2003-February-24 11:00AM CST Joe Stewart <joe...@us...> [B] - login.php3 -discard prefs when logging out. --- 20,28 ---- emailed to the user. This allows for only a single use as well as improved security. + 2003-February-25 8:00AM EST Matthew Leingang <sym...@us...> + [B] - Mailinglist.class - Fixed an SQL error in + MailingList::build_body() caused by use of the obsolete 'date' column. + 2003-February-24 11:00AM CST Joe Stewart <joe...@us...> [B] - login.php3 -discard prefs when logging out. *************** *** 33,36 **** --- 35,45 ---- slashAuthCR.class - reset saved_get and saved_post after logging in. + 2003-February-20 4:03PM EST Matthew Leingang <sym...@us...> + [B] - functions.inc: fixed psl_getLocalInfo to default to its input + like pslGetText + [W] - added zone.tab and iso3166.tab to contrib directory. + added directives "zone_file" and "country_file" to + config-dist.ini.php3 and changed tz.class to take note of them. + 2003-February-20 3:30PM CST Joe Stewart <joe...@us...> [B] - functions.inc - setLang sets the current language in _PSL['lang']; |
From: Joe S. <joe...@us...> - 2003-02-25 15:07:45
|
Update of /cvsroot/phpslash/phpslash-ft/tables/0.7 In directory sc8-pr-cvs1:/tmp/cvs-serv15479/phpslash-ft/tables/0.7 Modified Files: slash-all.sql 65_to_7.sql Log Message: change profile and lost password fixes Index: slash-all.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/tables/0.7/slash-all.sql,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** slash-all.sql 20 Dec 2002 16:29:59 -0000 1.23 --- slash-all.sql 25 Feb 2003 15:07:40 -0000 1.24 *************** *** 124,128 **** INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_seq',27); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_section_lut_seq',66); ! INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_permission_lut_seq',111); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_group_lut_seq',64); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_author_group_lut_seq',27); --- 124,128 ---- INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_seq',27); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_section_lut_seq',66); ! INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_permission_lut_seq',112); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_group_lut_seq',64); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_author_group_lut_seq',27); *************** *** 500,504 **** INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES( '110', '20', '81'); INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES( '111', '8', '82'); ! # -------------------------------------------------------- --- 500,504 ---- INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES( '110', '20', '81'); INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES( '111', '8', '82'); ! INSERT INTO psl_group_permission_lut (lut_id, group_id, permission_id) VALUES( '112', '21', '50'); # -------------------------------------------------------- Index: 65_to_7.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/tables/0.7/65_to_7.sql,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** 65_to_7.sql 20 Dec 2002 16:29:59 -0000 1.13 --- 65_to_7.sql 25 Feb 2003 15:07:42 -0000 1.14 *************** *** 8,12 **** INSERT INTO db_sequence VALUES ('psl_group_seq',27); INSERT INTO db_sequence VALUES ('psl_group_section_lut_seq',66); ! INSERT INTO db_sequence VALUES ('psl_group_permission_lut_seq',111); INSERT INTO db_sequence VALUES ('psl_group_group_lut_seq',64); INSERT INTO db_sequence VALUES ('psl_author_group_lut_seq',26); --- 8,12 ---- INSERT INTO db_sequence VALUES ('psl_group_seq',27); INSERT INTO db_sequence VALUES ('psl_group_section_lut_seq',66); ! INSERT INTO db_sequence VALUES ('psl_group_permission_lut_seq',112); INSERT INTO db_sequence VALUES ('psl_group_group_lut_seq',64); INSERT INTO db_sequence VALUES ('psl_author_group_lut_seq',26); *************** *** 219,222 **** --- 219,223 ---- INSERT INTO psl_group_permission_lut VALUES (110,20,81); INSERT INTO psl_group_permission_lut VALUES (111,8,82); + INSERT INTO psl_group_permission_lut VALUES (112,24,50); # # Table structure for table 'psl_group_section_lut' |
From: Joe S. <joe...@us...> - 2003-02-25 15:04:45
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv13468/phpslash-ft/public_html Modified Files: profile.php3 Log Message: change profile and lost password fixes Index: profile.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/profile.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** profile.php3 20 Dec 2002 22:17:32 -0000 1.9 --- profile.php3 25 Feb 2003 15:04:11 -0000 1.10 *************** *** 16,50 **** START OF PAGE *****************************/ if ( $HTTP_GET_VARS['confirm']) { ! $confirm = $HTTP_GET_VARS['confirm']; ! $confirm_hash = base64_decode($confirm); ! $confirm_hash = unserialize($confirm_hash); ! // $confirm_hash = unserialize($HTTP_GET_VARS['confirm']); ! if($confirm_hash[2] == date("Ymd")) { ! $confirm_hash[2] = md5($auth->magic .":". $_PSL['basedir']); ! $HTTP_COOKIE_VARS['user_info'] = base64_encode(serialize($confirm_hash)); ! } } $auth->login_if(!$perm->have_perm('user')); - - - /* DEBUG */ - - /* - debug("HTTP_POST_VARS", $HTTP_POST_VARS); - debug("HTTP_GET_VARS", $HTTP_GET_VARS); - debug("author_id_ary", $author_id_ary); - debug("author_name_ary", $author_name_ary); - debug("real_name_ary", $author_name_ary); - debug("email", $email); - debug("quote", $quote); - debug("password", $password); - debug("permission", $permission); - */ - /* DEBUG */ - - $author = pslNew("Author"); $content = ''; --- 16,26 ---- START OF PAGE *****************************/ + $author = pslNew("Author"); if ( $HTTP_GET_VARS['confirm']) { ! $confirm_success = $author->confirmAuthor($HTTP_GET_VARS['confirm']); } $auth->login_if(!$perm->have_perm('user')); $content = ''; |
From: Joe S. <joe...@us...> - 2003-02-25 15:04:45
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv13468/phpslash-ft Modified Files: CHANGES Log Message: change profile and lost password fixes Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.705 retrieving revision 1.706 diff -C2 -d -r1.705 -r1.706 *** CHANGES 24 Feb 2003 17:03:14 -0000 1.705 --- CHANGES 25 Feb 2003 15:04:08 -0000 1.706 *************** *** 13,16 **** --- 13,26 ---- 9 - Removal of something (kill -9 :) + 2003-February-25 9:00AM CST Joe Stewart <joe...@us...> + [B] - slash-all.sql, 65_to_7.sql - added missing authorprofileSave permission + to the user group to allow users to change their profile. + profile.php3, Author.class - complete change of lost password functions. + Now data is stored in the user's db record and a challenge word is + emailed to the user. This allows for only a single use as well as + improved security. + Mailinglist.class - Matthew - Fixed an SQL error in + MailingList::build_body() caused by use of the obsolete 'date' column. + 2003-February-24 11:00AM CST Joe Stewart <joe...@us...> [B] - login.php3 -discard prefs when logging out. |