phpslash-commit Mailing List for phpSlash (Page 61)
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-02-19 16:27:58
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv3977/phpslash-ft/class Modified Files: slashAuthCR.class Log Message: corrected 'Account created, but validation failed' Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashAuthCR.class,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** slashAuthCR.class 6 Feb 2003 20:28:20 -0000 1.38 --- slashAuthCR.class 19 Feb 2003 16:27:54 -0000 1.39 *************** *** 421,425 **** function auth_doregister() { ! global $HTTP_POST_VARS; if(empty($HTTP_POST_VARS)) { --- 421,425 ---- function auth_doregister() { ! global $HTTP_POST_VARS, $challenge; if(empty($HTTP_POST_VARS)) { *************** *** 507,511 **** $HTTP_POST_VARS['username'] = $username; $HTTP_POST_VARS['password'] = $pass1; ! $HTTP_POST_VARS['challenge'] = md5(uniqid($this->magic)); $HTTP_POST_VARS['response'] = ''; // debug("username", $username); --- 507,512 ---- $HTTP_POST_VARS['username'] = $username; $HTTP_POST_VARS['password'] = $pass1; ! // $HTTP_POST_VARS['challenge'] = md5(uniqid($this->magic)); ! $HTTP_POST_VARS['challenge'] = $challenge; $HTTP_POST_VARS['response'] = ''; // debug("username", $username); |
From: Joe S. <joe...@us...> - 2003-02-19 16:27:58
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv3977/phpslash-ft Modified Files: CHANGES Log Message: corrected 'Account created, but validation failed' Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.696 retrieving revision 1.697 diff -C2 -d -r1.696 -r1.697 *** CHANGES 18 Feb 2003 15:33:05 -0000 1.696 --- CHANGES 19 Feb 2003 16:27:51 -0000 1.697 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-19 10:00AM CST Joe Stewart <joe...@us...> + [B] - slashAuthCR.class - corrected "Account created, but validation failed" + error. + 2003-February-18 9:00AM CST Joe Stewart <joe...@us...> [B] - login.php3 - corrected problem of logging in after an unsuccessful login |
From: Joe S. <joe...@us...> - 2003-02-18 15:33:14
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv9830/phpslash-ft Modified Files: CHANGES Log Message: corrected login after unsucessful try Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.695 retrieving revision 1.696 diff -C2 -d -r1.695 -r1.696 *** CHANGES 14 Feb 2003 16:56:27 -0000 1.695 --- CHANGES 18 Feb 2003 15:33:05 -0000 1.696 *************** *** 13,16 **** --- 13,21 ---- 9 - Removal of something (kill -9 :) + 2003-February-18 9:00AM CST Joe Stewart <joe...@us...> + [B] - login.php3 - corrected problem of logging in after an unsuccessful login + attempt. Removed previously needed code for phplib to allow login from + login block. + 2003-February-14 11:00AM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7RC3. |
From: Joe S. <joe...@us...> - 2003-02-18 15:33:14
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv9830/phpslash-ft/public_html Modified Files: login.php3 Log Message: corrected login after unsucessful try Index: login.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/login.php3,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** login.php3 10 Jan 2003 19:07:25 -0000 1.35 --- login.php3 18 Feb 2003 15:33:11 -0000 1.36 *************** *** 37,45 **** $auth->auth['perm'] = ""; } ! if(isset($HTTP_POST_VARS['username'])) { // this would be present if a login is in progress $auth->auth["uid"]= "form"; // this is what auth seems to want $auth->start(); } $auth->login_if(!$perm->have_perm('user')); --- 37,47 ---- $auth->auth['perm'] = ""; } ! /* ! // old kludge for phplib to accept login from an external form such as the login block. Will be removed. jvs - 02/18/2003 if(isset($HTTP_POST_VARS['username'])) { // this would be present if a login is in progress $auth->auth["uid"]= "form"; // this is what auth seems to want $auth->start(); } + */ $auth->login_if(!$perm->have_perm('user')); |
From: Joe S. <joe...@us...> - 2003-02-14 16:59:20
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv880/phpslash-ft Modified Files: VERSION Log Message: Released phpSlash 0.7RC3 Index: VERSION =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/VERSION,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** VERSION 25 Jan 2003 01:48:07 -0000 1.13 --- VERSION 14 Feb 2003 16:59:15 -0000 1.14 *************** *** 1 **** ! 0.7RC2 --- 1 ---- ! 0.7RC3 |
From: Joe S. <joe...@us...> - 2003-02-14 16:56:34
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv30971/phpslash-ft/public_html/templates/en/basic Modified Files: about.tpl Log Message: Released phpSlash 0.7RC3 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/about.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** about.tpl 13 Feb 2003 17:17:48 -0000 1.3 --- about.tpl 14 Feb 2003 16:56:29 -0000 1.4 *************** *** 10,16 **** </tr> <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC2.tar.gz?download">V0.7RC2</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>January 24, 2003</td> </tr> <tr> --- 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> |
From: Joe S. <joe...@us...> - 2003-02-14 16:56:34
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv30971/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: Released phpSlash 0.7RC3 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** about.tpl 13 Feb 2003 17:17:49 -0000 1.11 --- about.tpl 14 Feb 2003 16:56:30 -0000 1.12 *************** *** 16,22 **** </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC2.tar.gz">V0.7RC2</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>January 24, 2003</TD> </TR> <TR> --- 16,22 ---- </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> </TR> <TR> |
From: Joe S. <joe...@us...> - 2003-02-14 16:56:33
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv30971/phpslash-ft Modified Files: CHANGES Log Message: Released phpSlash 0.7RC3 Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.694 retrieving revision 1.695 diff -C2 -d -r1.694 -r1.695 *** CHANGES 13 Feb 2003 18:24:08 -0000 1.694 --- CHANGES 14 Feb 2003 16:56:27 -0000 1.695 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-February-14 11:00AM CST Joe Stewart <joe...@us...> + [R] - Released phpSlash 0.7RC3. + 2003-February-13 12:00PM CST Joe Stewart <joe...@us...> [W] - config-dist.php3, config.php3 - provided example default block option |
From: Joe S. <joe...@us...> - 2003-02-13 18:24:45
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv9879/phpslash-ft Modified Files: CHANGES Log Message: provided example default block option - column Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.693 retrieving revision 1.694 diff -C2 -d -r1.693 -r1.694 *** CHANGES 13 Feb 2003 17:17:46 -0000 1.693 --- CHANGES 13 Feb 2003 18:24:08 -0000 1.694 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-13 12:00PM CST Joe Stewart <joe...@us...> + [W] - config-dist.php3, config.php3 - provided example default block option + "column". + 2003-February-13 11:00AM CST Joe Stewart <joe...@us...> [T] - about.tpl - updated the about page. |
From: Joe S. <joe...@us...> - 2003-02-13 18:24:17
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv9879/phpslash-ft/public_html Modified Files: config.php3 config-dist.php3 Log Message: provided example default block option - column Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.181 retrieving revision 1.182 diff -C2 -d -r1.181 -r1.182 *** config.php3 6 Feb 2003 20:28:20 -0000 1.181 --- config.php3 13 Feb 2003 18:24:10 -0000 1.182 *************** *** 852,855 **** --- 852,874 ---- } + $default_block_options = ''; + /* + * default values of options for all blocks + * + * default options legend: + * + * name - option name. This option will always be available to the admin. + * value - option value. This value will be displayed for the option. The + * admin can assign a new value. + * + * To add default option items, add a complete entry below. + */ + $default_block_options[] = array( + 'name' => "column", + 'value' => "" + ); + + $_PSL['default_block_options'] = $default_block_options; + /* ============= Things to deprecate ============= */ Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** config-dist.php3 6 Feb 2003 20:28:20 -0000 1.34 --- config-dist.php3 13 Feb 2003 18:24:12 -0000 1.35 *************** *** 648,651 **** --- 648,669 ---- } + $default_block_options = ''; + /* + * default values of options for all blocks + * + * default options legend: + * + * name - option name. This option will always be available to the admin. + * value - option value. This value will be displayed for the option. The + * admin can assign a new value. + * + * To add default option items, add a complete entry below. + */ + $default_block_options[] = array( + 'name' => "column", + 'value' => "" + ); + + $_PSL['default_block_options'] = $default_block_options; /* ============= Things to deprecate ============= */ |
From: Joe S. <joe...@us...> - 2003-02-13 17:18:22
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv9432/phpslash-ft Modified Files: CHANGES Log Message: updated about page Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.692 retrieving revision 1.693 diff -C2 -d -r1.692 -r1.693 *** CHANGES 12 Feb 2003 22:33:38 -0000 1.692 --- CHANGES 13 Feb 2003 17:17:46 -0000 1.693 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-February-13 11:00AM CST Joe Stewart <joe...@us...> + [T] - about.tpl - updated the about page. + 2003-February-12 4:30PM CST Joe Stewart <joe...@us...> [W] - en.php3, Block_admin.class, Author.class - A few strings weren't |
From: Joe S. <joe...@us...> - 2003-02-13 17:17:54
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv9432/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: updated about page Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** about.tpl 21 Feb 2002 00:13:04 -0000 1.10 --- about.tpl 13 Feb 2003 17:17:49 -0000 1.11 *************** *** 5,21 **** <FONT color="#000000" FACE="arial,helvetica"> ! <P> ! Original message from <A HREF="mailto:ja...@pa...">Jay Bloodworth:</A></P> ! <CITE> ! "It's Slashdot, ported to PHP3. It attempts to be a ! drop in replacement for the perl code (using the same databases and ! such) and almost succeeds. It's a fairly naive port (line by line cut ! and paste in many places), but I tried to improve things where I ! could. In future releases I hope to neaten things up considerably and ! bring the code closer to standard PHP3 idiom." ! </CITE> <P> ! <TABLE BORDER="1" CELLSPACING="0" ALIGN="RIGHT"> <TR> <TH>Version</TH> --- 5,13 ---- <FONT color="#000000" FACE="arial,helvetica"> ! <P>phpSlash is a CMS that provides an easy and flexible means to publish websites. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies.</P> ! <P> ! <TABLE BORDER="1" CELLSPACING="0" ALIGN="CENTER"> <TR> <TH>Version</TH> *************** *** 24,55 **** </TR> <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.61.tar.gz">V0.61</A></TD> ! <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>March 26, 2001</TD> ! </TR> ! <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.6.tar.gz">V0.6 FINAL</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>February 23, 2001</TD> </TR> <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.6-rc4.tar.gz">V0.6-rc4</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>December 30, 2000</TD> </TR> <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.6-rc3.tar.gz">V0.6-rc3</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>October 7, 2000</TD> </TR> <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.6-rc2.tar.gz">V0.6-rc2</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>October 7, 2000</TD> </TR> <TR> ! <TD><A HREF="http://download.sourceforge.net/phpslash/phpslash-0.6-rc1.tar.gz">V0.6-rc1</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>September 15, 2000</TD> </TR> <TR> --- 16,42 ---- </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC2.tar.gz">V0.7RC2</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>January 24, 2003</TD> </TR> <TR> ! <TD>V0.65</TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>May 18, 2002</TD> </TR> <TR> ! <TD>V0.62</TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>June 8, 2001</TD> </TR> <TR> ! <TD>V0.61</TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>March 26, 2001</TD> </TR> <TR> ! <TD>V0.6 FINAL</TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> ! <TD>February 23, 2001</TD> </TR> <TR> *************** *** 94,105 **** </TR> </TABLE> ! ! Now that 0.6 is out, we are working on the 0.65 release. This will ! feature tighter integration with PHPLIB with the use of their ! authentication/permission modules. The comment and poll modules will ! also get a full rewrite. <P> Visit <A HREF="http://www.phpslash.org">www.phpslash.org</A> or our <A HREF=http://sourceforge.net/projects/phpslash>Sourceforge</A> site for the latest information on PHPSlash. ! <P> </FONT> --- 81,88 ---- </TR> </TABLE> ! </p> <P> Visit <A HREF="http://www.phpslash.org">www.phpslash.org</A> or our <A HREF=http://sourceforge.net/projects/phpslash>Sourceforge</A> site for the latest information on PHPSlash. ! </P> </FONT> |
From: Joe S. <joe...@us...> - 2003-02-13 17:17:53
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv9432/phpslash-ft/public_html/templates/en/basic Modified Files: about.tpl Log Message: updated about page Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/about.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** about.tpl 9 Apr 2002 16:57:06 -0000 1.2 --- about.tpl 13 Feb 2003 17:17:48 -0000 1.3 *************** *** 1,8 **** <!-- Start about.tpl --> <div id="about"> ! <p>Original message from <a href="mailto:ja...@pa...">Jay Bloodworth:</a></p> ! <p><cite>"It's Slashdot, ported to PHP3. It attempts to be a drop in replacement for the perl code (using the same databases and such) and almost succeeds. It's a fairly naive port (line by line cut and paste in many places), but I tried to improve things where I could. In future releases I hope to neaten things up considerably and bring the code closer to standard PHP3 idiom."</cite></p> ! ! <table border="1" cellspacing="0" align="right"> <tr> <th>Version</th> --- 1,7 ---- <!-- Start about.tpl --> <div id="about"> ! <p>phpSlash is a CMS that provides an easy and flexible means to publish websites. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies.</p> ! <p> ! <table border="1" cellspacing="0" align="center"> <tr> <th>Version</th> *************** *** 10,42 **** <th>Date</th> </tr> ! <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.61.tar.gz">V0.61</a></td> ! <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>March 26, 2001</td> ! </tr> ! <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.6.tar.gz">V0.6 FINAL</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>February 23, 2001</td> </tr> <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.6-rc4.tar.gz">V0.6-rc4</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>December 30, 2000</td> </tr> <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.6-rc3.tar.gz">V0.6-rc3</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>October 7, 2000</td> </tr> <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.6-rc2.tar.gz">V0.6-rc2</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>October 7, 2000</td> </tr> <tr> ! <td><a href="http://download.sourceforge.net/phpslash/phpslash-0.6-rc1.tar.gz">V0.6-rc1</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>September 15, 2000</td> </tr> <tr> --- 9,36 ---- <th>Date</th> </tr> ! <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7RC2.tar.gz?download">V0.7RC2</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>January 24, 2003</td> </tr> <tr> ! <td>V0.65</td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>May 18, 2002</td> </tr> <tr> ! <td>V0.6.2</td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>June 8, 2001</td> </tr> <tr> ! <td>V0.61</td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>March 26, 2001</td> </tr> <tr> ! <td>V0.6 FINAL</td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> ! <td>February 23, 2001</td> </tr> <tr> *************** *** 81,86 **** </tr> </table> ! ! <p>Now that 0.6 is out, we are working on the 0.65 release. This will feature tighter integration with PHPLIB with the use of their authentication/permission modules. The comment and poll modules will also get a full rewrite.</p> <p>Visit <a href="http://www.phpslash.org/">www.phpslash.org</a> or our <a href="http://sourceforge.net/projects/phpslash/">Sourceforge</a> site for the latest information on PHPSlash.</p> --- 75,79 ---- </tr> </table> ! </p> <p>Visit <a href="http://www.phpslash.org/">www.phpslash.org</a> or our <a href="http://sourceforge.net/projects/phpslash/">Sourceforge</a> site for the latest information on PHPSlash.</p> |
From: Joe S. <joe...@us...> - 2003-02-12 22:34:18
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv23704/phpslash-ft/class Modified Files: Block_admin.class Author.class Log Message: a few text strings Index: Block_admin.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_admin.class,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Block_admin.class 12 Feb 2003 16:44:09 -0000 1.8 --- Block_admin.class 12 Feb 2003 22:33:43 -0000 1.9 *************** *** 268,273 **** $each = $this->psl['classdir'] . "/" . $eachfile; if( (is_file($each)) AND ! ( preg_match('/Block_render_/i', $each)) ) { ! $eachtype = str_replace("Block_render_", "", $eachfile); $eachtype = str_replace(".class", "", $eachtype); --- 268,274 ---- $each = $this->psl['classdir'] . "/" . $eachfile; if( (is_file($each)) AND ! ( preg_match('/Block_render_/i', $each)) AND ! ( !preg_match('/Block_render_i/i', $each)) ) { ! $eachtype = str_replace("Block_render_", "", $eachfile); $eachtype = str_replace(".class", "", $eachtype); Index: Author.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Author.class,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** Author.class 6 Feb 2003 20:28:20 -0000 1.39 --- Author.class 12 Feb 2003 22:33:44 -0000 1.40 *************** *** 595,604 **** $author_id = $this->db->Record['author_id']; ! // $author_perms = $this->db->Record['perms']; $tauthor_perms = explode(',',$this->db->Record['perms'] ); $this->author_templ->set_block("template","perm_row","perm_rows"); $this->author_templ->set_block("template","permhave_row","permhave_rows"); $this->author_templ->set_var(array( ! 'TITLEBAR' => getTitlebar("100%",sprintf("Update Author (%s)", $id)), 'ACTION_URL' => $this->psl['phpself'], 'AUTHOR_ID' => $author_id, --- 595,604 ---- $author_id = $this->db->Record['author_id']; ! // $author_perms = $this->db->Record['perms']; $tauthor_perms = explode(',',$this->db->Record['perms'] ); $this->author_templ->set_block("template","perm_row","perm_rows"); $this->author_templ->set_block("template","permhave_row","permhave_rows"); $this->author_templ->set_var(array( ! 'TITLEBAR' => getTitlebar("100%",sprintf(pslgetText("Update Author (%s)"), $id)), 'ACTION_URL' => $this->psl['phpself'], 'AUTHOR_ID' => $author_id, |
From: Joe S. <joe...@us...> - 2003-02-12 22:34:16
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv23704/phpslash-ft Modified Files: CHANGES Log Message: a few text strings Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.691 retrieving revision 1.692 diff -C2 -d -r1.691 -r1.692 *** CHANGES 12 Feb 2003 20:45:48 -0000 1.691 --- CHANGES 12 Feb 2003 22:33:38 -0000 1.692 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-12 4:30PM CST Joe Stewart <joe...@us...> + [W] - en.php3, Block_admin.class, Author.class - A few strings weren't + translated. + 2003-February-12 2:30PM CST Joe Stewart <joe...@us...> [B] - functions.inc - str_html shouldn't act on an empty string. |
From: Joe S. <joe...@us...> - 2003-02-12 22:33:49
|
Update of /cvsroot/phpslash/phpslash-ft/class/locale In directory sc8-pr-cvs1:/tmp/cvs-serv23704/phpslash-ft/class/locale Modified Files: en.php3 Log Message: a few text strings Index: en.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/locale/en.php3,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** en.php3 6 Feb 2003 17:16:45 -0000 1.15 --- en.php3 12 Feb 2003 22:33:45 -0000 1.16 *************** *** 362,365 **** --- 362,370 ---- "[Add or Remove Block Types]", + "Create a New Block" => + "Create a New Block", + + "Update a Block" => + "Update a Block", // Block_i.class // Block_render_cal.class *************** *** 644,647 **** --- 649,670 ---- "[Delete]", + "Add a new Group" => + "Add a new Group", + + "Change existing Groups" => + "Change existing Groups", + + "Edit Group" => + "Edit Group", + + "Change existing Permissions" => + "Change existing Permissions", + + "Add a new Permission" => + "Add a new Permission", + + "Edit Permission" => + "Edit Permission", + // Infolog.class "Deleting all log entries...." => *************** *** 1016,1021 **** "Topic Administration" => ! "Topic Administration" ); ?> --- 1039,1046 ---- "Topic Administration" => ! "Topic Administration", + "Group Administration" => + "Group Administration" ); ?> |
From: Joe S. <joe...@us...> - 2003-02-12 20:45:55
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv22354/phpslash-ft Modified Files: CHANGES Log Message: str_html shouldn't act on an empty string. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.690 retrieving revision 1.691 diff -C2 -d -r1.690 -r1.691 *** CHANGES 12 Feb 2003 19:10:18 -0000 1.690 --- CHANGES 12 Feb 2003 20:45:48 -0000 1.691 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-February-12 2:30PM CST Joe Stewart <joe...@us...> + [B] - functions.inc - str_html shouldn't act on an empty string. + 2003-February-12 1:00PM CST Joe Stewart <joe...@us...> [B] - functions.inc - Peter's fix to getMessage to allow debug mode and striking |
From: Joe S. <joe...@us...> - 2003-02-12 20:45:55
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv22354/phpslash-ft/class Modified Files: functions.inc Log Message: str_html shouldn't act on an empty string. Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** functions.inc 12 Feb 2003 19:10:24 -0000 1.130 --- functions.inc 12 Feb 2003 20:45:51 -0000 1.131 *************** *** 1357,1362 **** function str_html( $string) { ! $ordhtml = "&#" . implode(';&#',unpack('C*char', $string)) .";"; ! return $ordhtml; } --- 1357,1366 ---- function str_html( $string) { ! if($string != '') { ! $ordhtml = "&#" . implode(';&#',unpack('C*char', $string)) .";"; ! return $ordhtml; ! } else { ! return false; ! } } |
From: Joe S. <joe...@us...> - 2003-02-12 19:10:32
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv13358/phpslash-ft/class Modified Files: functions.inc Log Message: debug mode bug and striking text Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** functions.inc 11 Feb 2003 14:03:42 -0000 1.129 --- functions.inc 12 Feb 2003 19:10:24 -0000 1.130 *************** *** 21,25 **** $tpl -> template to use ( "$tpl + ".tpl") ****************************************************************************/ ! function getMessage($msg, $tpl="") { global $_PSL; --- 21,25 ---- $tpl -> template to use ( "$tpl + ".tpl") ****************************************************************************/ ! function getMessage($msg, $tpl="", $translate=true) { global $_PSL; *************** *** 41,46 **** $templ->set_var(array( ! 'ERROR' => pslgetText($msg) ! )); $msg = $templ->parse('OUT','template'); --- 41,46 ---- $templ->set_var(array( ! 'ERROR' => $translate ? pslgetText($msg) : $msg ! )); $msg = $templ->parse('OUT','template'); *************** *** 970,974 **** $string = htmlentities($pslstrings[$string]); } elseif (($_PSL['debug']) AND ($pslstrings)) { ! $string = getMessage( $string, "messageStrike"); } return $string; --- 970,974 ---- $string = htmlentities($pslstrings[$string]); } elseif (($_PSL['debug']) AND ($pslstrings)) { ! $string = getMessage( $string, "messageStrike", false); } return $string; |
From: Joe S. <joe...@us...> - 2003-02-12 19:10:27
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv13358/phpslash-ft Modified Files: CHANGES Log Message: debug mode bug and striking text Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.689 retrieving revision 1.690 diff -C2 -d -r1.689 -r1.690 *** CHANGES 12 Feb 2003 16:44:08 -0000 1.689 --- CHANGES 12 Feb 2003 19:10:18 -0000 1.690 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-12 1:00PM CST Joe Stewart <joe...@us...> + [B] - functions.inc - Peter's fix to getMessage to allow debug mode and striking + of untranslated text. + 2003-February-12 10:30AM CST Joe Stewart <joe...@us...> [W] - Block_i.class, Block_admin.class - cleaned up constructors of both |
From: Joe S. <joe...@us...> - 2003-02-12 16:44:12
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv32511/phpslash-ft/class Modified Files: Block_i.class Block_admin.class Log Message: Block_i, Block_admin constructor cleanup Index: Block_i.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_i.class,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Block_i.class 22 Jan 2003 17:28:42 -0000 1.25 --- Block_i.class 12 Feb 2003 16:44:09 -0000 1.26 *************** *** 33,40 **** /* Here starts Block_i specfic construction */ - global $_PSL; - - $this->psl = $_PSL; - $this->argv_ary = ""; --- 33,36 ---- *************** *** 45,55 **** $this->templ = pslNew("slashTemplate",$this->psl['templatedir']); $this->templ->debug = 0; - - /* Setup the files array */ - $this->templ->set_file(array( - 'listblock' => "blockList.tpl", - 'newblock' => "blockEdit.tpl", - 'editblock' => "blockEdit.tpl" - )); /* Setup the template vars. We need these in all our templates */ --- 41,44 ---- Index: Block_admin.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_admin.class,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Block_admin.class 22 Jan 2003 17:28:42 -0000 1.7 --- Block_admin.class 12 Feb 2003 16:44:09 -0000 1.8 *************** *** 14,20 **** */ class Block_admin extends Block_i { ! /* Declare properties for class Block_admin */ ! var $psl, $templ, $debug, $argv_ary; ! /* * class Block also defines the following properties: --- 14,21 ---- */ class Block_admin extends Block_i { ! /* class Block_i also defines the following properties ! * psl, $templ, $debug, $argv_ary ! */ ! /* * class Block also defines the following properties: *************** *** 29,47 **** /* Constructor: Create sub-objects here, etc... */ ! $this->Block(); /* Calls the contructor for the parent class */ ! ! /* Here starts Block_i specfic construction */ ! global $_PSL; ! ! $this->psl = $_PSL; ! ! $this->argv_ary = ""; /* Do we debug? [Boolean] */ ! $this->debug = 1; ! ! /* Start Template Object */ ! $this->templ = pslNew("slashTemplate",$this->psl['templatedir'], "remove"); ! $this->templ->debug = 0; /* Setup the files array */ --- 30,37 ---- /* Constructor: Create sub-objects here, etc... */ ! $this->Block_i(); /* Calls the contructor for the parent class */ /* Do we debug? [Boolean] */ ! // $this->debug = 1; /* Setup the files array */ *************** *** 52,60 **** )); - /* Setup the template vars. We need these in all our templates */ - $this->templ->set_var( array( - 'ROOTDIR' => $this->psl['rooturl'], - 'IMAGEDIR' => $this->psl['imageurl'] - )); } --- 42,45 ---- *************** *** 270,275 **** function listBlockTypes($option="", $name="") { - $this->templ = pslNew("slashTemplate",$this->psl['templatedir']); - $this->templ->debug = 0; $this->templ->set_file(array( 'listblocktypes' => "blocktypeList.tpl" --- 255,258 ---- *************** *** 311,315 **** } } ! $this->templ->set_block("listblocktypes","addrow","rows"); while( list($key, $val) = each($avail_ary) ) { --- 294,298 ---- } } ! $this->templ->set_block("listblocktypes","addrow","addrows"); while( list($key, $val) = each($avail_ary) ) { *************** *** 318,322 **** 'ADDURL' => $this->psl[phpself] ."?option=add". $this->psl[amp] ."name=". $key )); ! $this->templ->parse("rows","addrow",true); } --- 301,305 ---- 'ADDURL' => $this->psl[phpself] ."?option=add". $this->psl[amp] ."name=". $key )); ! $this->templ->parse("addrows","addrow",true); } |
From: Joe S. <joe...@us...> - 2003-02-12 16:44:12
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv32511/phpslash-ft Modified Files: CHANGES Log Message: Block_i, Block_admin constructor cleanup Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.688 retrieving revision 1.689 diff -C2 -d -r1.688 -r1.689 *** CHANGES 11 Feb 2003 20:09:31 -0000 1.688 --- CHANGES 12 Feb 2003 16:44:08 -0000 1.689 *************** *** 13,16 **** --- 13,21 ---- 9 - Removal of something (kill -9 :) + 2003-February-12 10:30AM CST Joe Stewart <joe...@us...> + [W] - Block_i.class, Block_admin.class - cleaned up constructors of both + classes and Block_admin::listBlockTypes uses the same template object + as the other class methods. Thanks to Peter C for the suggestions. + 2003-February-11 3:00PM EST Matthew Leingang <sym...@us...> [D] - Added inline documentation to config-dist.ini.php3, including |
From: Matthew L. <sym...@us...> - 2003-02-11 20:09:39
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv30778 Modified Files: CHANGES Log Message: Added inline documentation to config-dist.ini.php3, including commented-out directives for variables usually guessed by config script. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.687 retrieving revision 1.688 diff -C2 -d -r1.687 -r1.688 *** CHANGES 11 Feb 2003 14:05:22 -0000 1.687 --- CHANGES 11 Feb 2003 20:09:31 -0000 1.688 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-11 3:00PM EST Matthew Leingang <sym...@us...> + [D] - Added inline documentation to config-dist.ini.php3, including + commented-out directives for variables usually guessed by config script. + 2003-February-11 9:00AM EST Matthew Leingang <sym...@us...> [F] - psl_strftime($format,$time) now defaults to current time in the |
From: Matthew L. <sym...@us...> - 2003-02-11 20:07:29
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv29563 Modified Files: config-dist.ini.php3 Log Message: More inline documentation, including commented-out directives with explanation for many of the variables normally guessed in config.php. Index: config-dist.ini.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.ini.php3,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** config-dist.ini.php3 23 Jan 2003 19:30:54 -0000 1.13 --- config-dist.ini.php3 11 Feb 2003 20:07:23 -0000 1.14 *************** *** 107,112 **** classdir = "/path/to/class" ;; ! ;; The base URL for the phpslash site rooturl = "http://localhost/phpslash/public_html" ;;; --- 107,141 ---- classdir = "/path/to/class" ;; ! ;; The base URL for the PHPSlash site rooturl = "http://localhost/phpslash/public_html" + ;; + ;; The directories and URLs below have default values based on the above + ;; three. + ;; + ;; Complete filesystem path to the template files + ;; Default: ${basedir}/templates + ; templatedir = "" + ;; + ;; URL for the adminstrative pages + ;; Default: ${baseurl}/admin + ; adminurl = "" + ;; + ;; URL for PHPSlash images + ;; Default: ${rooturl}/images + ; imageurl = "" + ;; + ;; URL for PHPSlash topic images + ;; Default: ${imageurl}/topics + ; topicimageurl = "" + ;; + ;; Complete filesystem path to the topic images. + ;; Default: ${basedir}/images/topics + ; topicimagedir = "" + ;; + ;; Complete filesystem path to the language and localization files + ;; Default: ${classdir}/locale + ; localedir = "" + ;;; + ;;; *************** *** 114,118 **** ;; ;; Make sure you initialize the database with one of the sql scripts in ! ;; the PHPSLASH distribution and create the user below. DB_Host = "localhost" DB_Database = "phpslash" --- 143,147 ---- ;; ;; Make sure you initialize the database with one of the sql scripts in ! ;; the PHPSlash distribution and create the user below. DB_Host = "localhost" DB_Database = "phpslash" *************** *** 125,133 **** ;; PHPLIB configuration ;; ! ;; directory where PHPLIB classes and functions can be found ; phplibdir = "/classdir/phplib/php/" ! ;; Used only if the location is not defined in local php.ini or .htaccess ! ;; DEPRECATED -- replaced by loadLibrary("phplib") (MPL 2002/12/19) ! ;prependfile = "/home/nathan/webDevel/php-lib-stable/php/prepend.php3" ;; end of PHPLIB config ;;; --- 154,166 ---- ;; PHPLIB configuration ;; ! ;; Source directory for PHPLIB classes and functions. ! ;; Default: classdir/phplib/php/ ! ;; Note: Make sure you have a trailing slash (unlike the other directory ! ;; variables!) ; phplibdir = "/classdir/phplib/php/" ! ;; ! ;; Loader script for PHPLIB classes and functions ! ;; DEPRECATED: replaced by loadLibrary("phplib") (MPL 2002/12/19) ! ;prependfile = "/path/to/phplib/php/prepend.php3" ;; end of PHPLIB config ;;; *************** *** 137,141 **** ;; ;; These values are used in your RSS Feeds generated by backend.php3 as ! ;; well as by phpslash for the pages your views see. Please take a ;; moment and adjust these to the correct value ;; --- 170,174 ---- ;; ;; These values are used in your RSS Feeds generated by backend.php3 as ! ;; well as by PHPSlash for the pages your views see. Please take a ;; moment and adjust these to the correct value ;; *************** *** 409,413 **** ;; Note that this too is used by the backend module in your RSS feed. ;; Please change it! ! description = "phpSlash is a port of the slash-0.2 code from Perl to PHP. Since it was first started, phpslash has become a different beast of its own. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies." ;;; end of metatags definitions --- 442,446 ---- ;; Note that this too is used by the backend module in your RSS feed. ;; Please change it! ! description = "PHPSlash is a port of the slash-0.2 code from Perl to PHP. Since it was first started, PHPSlash has become a different beast of its own. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies." ;;; end of metatags definitions |
From: Matthew L. <sym...@us...> - 2003-02-11 14:05:25
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv18041 Modified Files: CHANGES Log Message: psl_strftime($fmt,$time) now defaults to current time in the second variable Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.686 retrieving revision 1.687 diff -C2 -d -r1.686 -r1.687 *** CHANGES 10 Feb 2003 18:58:32 -0000 1.686 --- CHANGES 11 Feb 2003 14:05:22 -0000 1.687 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-February-11 9:00AM EST Matthew Leingang <sym...@us...> + [F] - psl_strftime($format,$time) now defaults to current time in the + second variable. + 2003-February-10 2:00PM EST Matthew Leingang <sym...@us...> [W] - pslError made even more robust. |