phpslash-commit Mailing List for phpSlash (Page 25)
Brought to you by:
joestewart,
nhruby
You can subscribe to this list here.
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...> - 2004-10-18 20:47:05
|
Update of /cvsroot/phpslash/phpslash-dev/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30647/phpslash-dev/scripts Modified Files: db_xfer.php.disabled Log Message: corrected bug - [ 1035199 ] [0.8] - upgrade script doesn't upgrade all sections. Index: db_xfer.php.disabled =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/scripts/db_xfer.php.disabled,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_xfer.php.disabled 14 Oct 2004 17:55:32 -0000 1.5 --- db_xfer.php.disabled 18 Oct 2004 20:46:39 -0000 1.6 *************** *** 194,197 **** --- 194,203 ---- + $sections = $section->getSections(); + + foreach($sections as $key => $value) { + $section_array[] = $value['id']; + } + // Add the "Public Page header" block $content .= getMessage("Adding Public Page Header Block"); *************** *** 206,222 **** $ary['ordernum'] = '95'; ! $section_id_ary = array(); ! $section_id_ary[] = $section->getId("About"); ! // $section_id_ary[] = $section->getId("Admin"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); $ary['section_id_ary'] = $section_id_ary; --- 212,223 ---- $ary['ordernum'] = '95'; ! $section_id_ary = $section_array; ! // Public pages only ! $id = $section->getId("Admin"); ! foreach($section_array as $key => $value) { ! if($value == $id) { ! unset($section_id_ary[$key]); ! } ! } $ary['section_id_ary'] = $section_id_ary; *************** *** 283,299 **** $ary['ordernum'] = '5'; ! $section_id_ary = array(); ! $section_id_ary[] = $section->getId("About"); ! $section_id_ary[] = $section->getId("Admin"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); $ary['section_id_ary'] = $section_id_ary; --- 284,288 ---- $ary['ordernum'] = '5'; ! $section_id_ary = $section_array; $ary['section_id_ary'] = $section_id_ary; *************** *** 325,342 **** $ary['ordernum'] = '80'; ! $section_id_ary = array(); ! $section_id_ary[] = $section->getId("About"); ! $section_id_ary[] = $section->getId("Admin"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); ! $ary['section_id_ary'] = $section_id_ary; --- 314,319 ---- $ary['ordernum'] = '80'; ! $section_id_ary = $section_array; ! $ary['section_id_ary'] = $section_id_ary; *************** *** 367,384 **** $ary['ordernum'] = '60'; ! $section_id_ary = array(); ! $section_id_ary[] = $section->getId("About"); ! $section_id_ary[] = $section->getId("Admin"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); ! $ary['section_id_ary'] = $section_id_ary; --- 344,349 ---- $ary['ordernum'] = '60'; ! $section_id_ary = $section_array; ! $ary['section_id_ary'] = $section_id_ary; *************** *** 409,426 **** $ary['ordernum'] = '10'; ! $section_id_ary = array(); ! $section_id_ary[] = $section->getId("About"); ! $section_id_ary[] = $section->getId("Admin"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); ! $ary['section_id_ary'] = $section_id_ary; --- 374,379 ---- $ary['ordernum'] = '10'; ! $section_id_ary = $section_array; ! $ary['section_id_ary'] = $section_id_ary; *************** *** 451,466 **** $ary['ordernum'] = '97'; ! $section_id_ary = null; ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Glossary"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); ! $ary['section_id_ary'] = $section_id_ary; --- 404,416 ---- $ary['ordernum'] = '97'; ! $section_id_ary = $section_array; ! // Public pages only ! $id = $section->getId("Admin"); ! foreach($section_array as $key => $value) { ! if($value == $id) { ! unset($section_id_ary[$key]); ! } ! } ! $ary['section_id_ary'] = $section_id_ary; *************** *** 709,715 **** $section_id_ary = null; ! $section_id_ary[] = $section->getId("features"); $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); $ary['section_id_ary'] = $section_id_ary; --- 659,666 ---- $section_id_ary = null; ! // $section_id_ary[] = $section->getId("features"); $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("Poll"); ! // $section_id_ary[] = $section->getId("interviews"); $ary['section_id_ary'] = $section_id_ary; *************** *** 742,748 **** $section_id_ary = null; ! $section_id_ary[] = $section->getId("features"); $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); $ary['section_id_ary'] = $section_id_ary; --- 693,699 ---- $section_id_ary = null; ! // $section_id_ary[] = $section->getId("features"); $section_id_ary[] = $section->getId("Home"); ! // $section_id_ary[] = $section->getId("interviews"); $ary['section_id_ary'] = $section_id_ary; *************** *** 777,792 **** $ary['ordernum'] = '0'; ! $section_id_ary = null; ! $section_id_ary[] = $section->getId("About"); ! $section_id_ary[] = $section->getId("features"); ! $section_id_ary[] = $section->getId("Home"); ! $section_id_ary[] = $section->getId("interviews"); ! $section_id_ary[] = $section->getId("MailingList"); ! $section_id_ary[] = $section->getId("Poll"); ! $section_id_ary[] = $section->getId("Search"); ! $section_id_ary[] = $section->getId("Submission"); ! $section_id_ary[] = $section->getId("test"); ! $section_id_ary[] = $section->getId("User"); ! $ary['section_id_ary'] = $section_id_ary; --- 728,740 ---- $ary['ordernum'] = '0'; ! $section_id_ary = $section_array; ! // Public pages only ! $id = $section->getId("Admin"); ! foreach($section_array as $key => $value) { ! if($value == $id) { ! unset($section_id_ary[$key]); ! } ! } ! $ary['section_id_ary'] = $section_id_ary; *************** *** 844,847 **** --- 792,796 ---- function xfer_sections() { + $db = pslNew("slashDB"); $section = pslNew("Section"); |
From: Peter C. <kr...@us...> - 2004-10-18 17:33:56
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12212 Modified Files: CHANGES Log Message: Sundry minor changes and bugfixes Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -d -r1.112 -r1.113 *** CHANGES 14 Oct 2004 18:04:13 -0000 1.112 --- CHANGES 18 Oct 2004 17:33:47 -0000 1.113 *************** *** 13,21 **** 9 - Removal of something (kill -9 :) 2004-October 14 Joe Stewart <joe...@us... ! [B] - story/index.php, Block_render_header.class, slash-all.sql, db_xfer.php.disabled - Story titles should display correctly. index.php - Page title should always display correctly. ! 2004-October 7 Joe Stewart <joe...@us... [B] - slash-all.sql - Blog section didn't have the right blocks. --- 13,45 ---- 9 - Removal of something (kill -9 :) + 2004-October 18 Peter Cruickshank <kr...@us...> (v 1.113) + [T] - basic/* + UI improvements: blockEdit.tpl, groupNew.tpl, permissionNew.tpl, storyNew.tpl + - mainly adding Cancel button to edit screens + - select boxes of 8 not 4 items (much easier to use) + - some rewordings too + HTML improvements: article.tpl, rssblock.tpl, permissionList.tpl + Tags moved to lower case where uppercase found and <ul> to wrap <li> + [ET]- basic/blockList.tpl + Experimental layout change to fit the table better into the screen. + + 2004-October 18 Peter Cruickshank <kr...@us...> (v 1.113) + Sundry minor changes: + [B] - slashTemplate.class - Fix for situation where templates + dont exist in current language + [W] - functions.inc - General notice squashing, adding MAINPAGE var + to getHeader, tidyup of mail-related functions + [F] - slashAuth.class - Make custom user-options available to the session + [W] - Block.class - Translate 'block added' message + [F] - Block_render_page.class - Make sensible MAINPAGE value available to + breadcrumb() + [B] - mailinglist/admin.php - Show list if nothing else is to be done + + 2004-October 14 Joe Stewart <joe...@us... ! [B] - story/index.php, Block_render_header.class, slash-all.sql, db_xfer.php.disabled - Story titles should display correctly. index.php - Page title should always display correctly. ! 2004-October 7 Joe Stewart <joe...@us... [B] - slash-all.sql - Blog section didn't have the right blocks. *************** *** 23,30 **** 2004-October 1 Joe Stewart <joe...@us... ! [W] - config-dist.php - changed skin change from url to not set cookie unless cookie argument also set. Change auth.type to allow for normal login form. ! 2004-September 25 Joe Stewart <joe...@us... [B] - Story_base.class - php5 compatibility. test for string --- 47,54 ---- 2004-October 1 Joe Stewart <joe...@us... ! [W] - config-dist.php - changed skin change from url to not set cookie unless cookie argument also set. Change auth.type to allow for normal login form. ! 2004-September 25 Joe Stewart <joe...@us... [B] - Story_base.class - php5 compatibility. test for string *************** *** 55,59 **** updated non CR loginform.tpl to be used with other auth methods. ! 2004-September 15 Joe Stewart <joe...@us... [W] - removed classes that already had been moved to module directories. --- 79,83 ---- updated non CR loginform.tpl to be used with other auth methods. ! 2004-September 15 Joe Stewart <joe...@us... [W] - removed classes that already had been moved to module directories. *************** *** 63,67 **** [B] - backend.php - Add class requirements. ! 2004-09-11 10:46 EDT Luis Mondesi <le...@ho...> [B] - include/class/jpcache/type/file.php - added check for JPCACHE_DIR and attempts to create one if it doesn't exist. --- 87,91 ---- [B] - backend.php - Add class requirements. ! 2004-09-11 10:46 EDT Luis Mondesi <le...@ho...> [B] - include/class/jpcache/type/file.php - added check for JPCACHE_DIR and attempts to create one if it doesn't exist. *************** *** 81,86 **** 2004-September 5 Joe Stewart <joe...@us... [F] - db_xfer.php.disabled, slash-all.sql, config-dist.php, config-dist.ini.php, ! config_setup.ini.php - Added User Blogs support - menu items, Blogs section, ! and blogger group. 2004-September 2 Peter Cruickshank <kr...@us...> --- 105,110 ---- 2004-September 5 Joe Stewart <joe...@us... [F] - db_xfer.php.disabled, slash-all.sql, config-dist.php, config-dist.ini.php, ! config_setup.ini.php - Added User Blogs support - menu items, Blogs section, ! and blogger group. 2004-September 2 Peter Cruickshank <kr...@us...> *************** *** 89,95 **** 2004-September 1 Joe Stewart <joe...@us... ! [B] - slash-all.sql - adjusted header blocks to be the same as upgrade. db_xfer.php - corrected related links block template. ! 2004-September 1 Joe Stewart <joe...@us... [T] - storyNew.tpl - missing form name. --- 113,119 ---- 2004-September 1 Joe Stewart <joe...@us... ! [B] - slash-all.sql - adjusted header blocks to be the same as upgrade. db_xfer.php - corrected related links block template. ! 2004-September 1 Joe Stewart <joe...@us... [T] - storyNew.tpl - missing form name. *************** *** 110,119 **** 2004-August 30 Joe Stewart <joe...@us...> [BTS] - registerform.tpl, authorNew.tpl, 7_to_8.sql, slash-all.sql, db_xfer.php - ! altered length of url and email fields. ! closing bug [ 995046 ] registerform.tpl restricts email address length to 32 chars. 2004-August 30 Joe Stewart <joe...@us...> ! [B] - login.php - uncommented kludge for login block. It was commented out on the bad assumption that phplib would be changing the auth class. closing bug [ 980974 ] Login Block Error. --- 134,143 ---- 2004-August 30 Joe Stewart <joe...@us...> [BTS] - registerform.tpl, authorNew.tpl, 7_to_8.sql, slash-all.sql, db_xfer.php - ! altered length of url and email fields. ! closing bug [ 995046 ] registerform.tpl restricts email address length to 32 chars. 2004-August 30 Joe Stewart <joe...@us...> ! [B] - login.php - uncommented kludge for login block. It was commented out on the bad assumption that phplib would be changing the auth class. closing bug [ 980974 ] Login Block Error. *************** *** 129,138 **** 2004-August 23 Joe Stewart <joe...@us...> ! [FT] - htmlarea3, slashHead-htmlarea3.tpl, storyNew.tpl, config.php - Upgraded htmlarea3. Added Image Manager module to htmlarea3 that allows uploads. Default is now for editor to be on. 2004-July 29 Peter Cruickshank <kr...@us...> ! [BF] slashTemplate.class::set_file Fix of potential infinite loop and allow modules to have language-specific templates --- 153,162 ---- 2004-August 23 Joe Stewart <joe...@us...> ! [FT] - htmlarea3, slashHead-htmlarea3.tpl, storyNew.tpl, config.php - Upgraded htmlarea3. Added Image Manager module to htmlarea3 that allows uploads. Default is now for editor to be on. 2004-July 29 Peter Cruickshank <kr...@us...> ! [BF] slashTemplate.class::set_file Fix of potential infinite loop and allow modules to have language-specific templates *************** *** 206,210 **** 2004-April 22 3:00PM CST Joe Stewart <joe...@us...> ! [T] - loginformCR.tpl - Luis says "javascript error on login form fix". 2004-April 22 3:00PM CST Joe Stewart <joe...@us...> --- 230,234 ---- 2004-April 22 3:00PM CST Joe Stewart <joe...@us...> ! [T] - loginformCR.tpl - Luis says "javascript error on login form fix". 2004-April 22 3:00PM CST Joe Stewart <joe...@us...> *************** *** 221,225 **** 2004-April 16 12:30PM CST Joe Stewart <joe...@us...> ! [F] - Story.class, relatedlinks.php, slash-all.sql - Related links for articles works again. --- 245,249 ---- 2004-April 16 12:30PM CST Joe Stewart <joe...@us...> ! [F] - Story.class, relatedlinks.php, slash-all.sql - Related links for articles works again. *************** *** 236,250 **** 2003-November 26 1:30PM CST Joe Stewart <joe...@us...> ! [B] - config.php, Story.class, Story_base.class - Added options/plugin parsing for getStories, added 'hook' parameter for limiting plugin scope. ! 2003-11-26 17:27 UTC Luis Mondesi <le...@ho...> ! [B] - Block_render_html.class - fix missing getTitle() called. All ! block renderers should have this function defined! Or else ! people get in trouble when they try to set their titles as "%%" or "%STRING%". 2003-November 20 3:00PM CST Joe Stewart <joe...@us...> ! [E] - config.ini.php, config.php, errordocument.php - beginning support for a static cache. Write cache files out to a directory to be served. --- 260,274 ---- 2003-November 26 1:30PM CST Joe Stewart <joe...@us...> ! [B] - config.php, Story.class, Story_base.class - Added options/plugin parsing for getStories, added 'hook' parameter for limiting plugin scope. ! 2003-11-26 17:27 UTC Luis Mondesi <le...@ho...> ! [B] - Block_render_html.class - fix missing getTitle() called. All ! block renderers should have this function defined! Or else ! people get in trouble when they try to set their titles as "%%" or "%STRING%". 2003-November 20 3:00PM CST Joe Stewart <joe...@us...> ! [E] - config.ini.php, config.php, errordocument.php - beginning support for a static cache. Write cache files out to a directory to be served. *************** *** 283,287 **** 2003-November 12 3:00PM CST Joe Stewart <joe...@us...> ! [FT] - config.php, storyNew.tpl, slashHead-htmlarea3 - Added preliminary htmlArea editing support to the Story entry form. Added htmlArea3 code in public_html/scripts directory. --- 307,311 ---- 2003-November 12 3:00PM CST Joe Stewart <joe...@us...> ! [FT] - config.php, storyNew.tpl, slashHead-htmlarea3 - Added preliminary htmlArea editing support to the Story entry form. Added htmlArea3 code in public_html/scripts directory. *************** *** 297,301 **** 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> ! [S] - moved sql file to tables/0.8 and reverted 0.7 to 0.7.2 release status. 2003-November 11 2:30PM CST Joe Stewart <joe...@us...> --- 321,325 ---- 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> ! [S] - moved sql file to tables/0.8 and reverted 0.7 to 0.7.2 release status. 2003-November 11 2:30PM CST Joe Stewart <joe...@us...> *************** *** 309,313 **** 2003-November 6 1:00PM CST Joe Stewart <joe...@us...> ! [BT] - storyIndex.tpl, Story.class - Peter C. supplied [ 837175 ] Dont show comment links if Comment module is off. --- 333,337 ---- 2003-November 6 1:00PM CST Joe Stewart <joe...@us...> ! [BT] - storyIndex.tpl, Story.class - Peter C. supplied [ 837175 ] Dont show comment links if Comment module is off. *************** *** 322,331 **** 2003-October 31 1:30PM CST Joe Stewart <joe...@us...> ! [B] - Added missing CHANGES-065-070 CHANGES-07-711 change history files. config-dist.php, VERSION - Bumped version to 0.8alpha for release. 2003-October 31 1:00PM CST Joe Stewart <joe...@us...> ! [F] - Added Peter C.'s breadcrumb delimiter patch. ! [ 831851 ] Parameterise breadcumb delimiter 2003-August 21 2:30PM CDT Joe Stewart <joe...@us...> --- 346,355 ---- 2003-October 31 1:30PM CST Joe Stewart <joe...@us...> ! [B] - Added missing CHANGES-065-070 CHANGES-07-711 change history files. config-dist.php, VERSION - Bumped version to 0.8alpha for release. 2003-October 31 1:00PM CST Joe Stewart <joe...@us...> ! [F] - Added Peter C.'s breadcrumb delimiter patch. ! [ 831851 ] Parameterise breadcumb delimiter 2003-August 21 2:30PM CDT Joe Stewart <joe...@us...> *************** *** 334,338 **** 2003-07-01 03:56 UTC Luis Mondesi < le...@ho... > [FT] - updated templates/en/basic/storyNew.tpl so that uploading files works in IE6, Opera and Mozilla-based browsers. ! - Changed include/modules/story/admin.php, include/modules/story/Story_base.class and include/modules/story/Story_admin.class. Added feature to upload files from the browser. Data uploaded via the webform will be appended to the text typed in the body_text TEXTAREA --- 358,362 ---- 2003-07-01 03:56 UTC Luis Mondesi < le...@ho... > [FT] - updated templates/en/basic/storyNew.tpl so that uploading files works in IE6, Opera and Mozilla-based browsers. ! - Changed include/modules/story/admin.php, include/modules/story/Story_base.class and include/modules/story/Story_admin.class. Added feature to upload files from the browser. Data uploaded via the webform will be appended to the text typed in the body_text TEXTAREA *************** *** 348,356 **** 2003-June 24 4:00PM CDT Joe Stewart <joe...@us...> ! [F] - slash-all.sql - db changes to use new error document and comment modules. 2003-June 24 2:00PM CDT Joe Stewart <joe...@us...> [B] - new modules - topicbar, navbar, commnent, error, and auth. ! poll bugfixes. article page being rewritten. 2003-June 9 2:00PM CDT Joe Stewart <joe...@us...> --- 372,380 ---- 2003-June 24 4:00PM CDT Joe Stewart <joe...@us...> ! [F] - slash-all.sql - db changes to use new error document and comment modules. 2003-June 24 2:00PM CDT Joe Stewart <joe...@us...> [B] - new modules - topicbar, navbar, commnent, error, and auth. ! poll bugfixes. article page being rewritten. 2003-June 9 2:00PM CDT Joe Stewart <joe...@us...> *************** *** 370,374 **** 2003-June 4 3:00PM CDT Joe Stewart <joe...@us...> ! [W] - Block_render_navbar.class, Block_render_page.class, Block_render_template.class - reduce php warnings. --- 394,398 ---- 2003-June 4 3:00PM CDT Joe Stewart <joe...@us...> ! [W] - Block_render_navbar.class, Block_render_page.class, Block_render_template.class - reduce php warnings. *************** *** 377,381 **** 2003-May 23 11:00AM CDT Joe Stewart <joe...@us...> ! [B] - config-dist.php - don't assign section as well as section_id if missing - breadcrumb seems to do this. functions.inc::breadcrumb - correct topic errors. --- 401,405 ---- 2003-May 23 11:00AM CDT Joe Stewart <joe...@us...> ! [B] - config-dist.php - don't assign section as well as section_id if missing - breadcrumb seems to do this. functions.inc::breadcrumb - correct topic errors. *************** *** 400,409 **** 2003-May 20 11:30AM CDT Joe Stewart <joe...@us...> [B] - author/admin.php, block/admin.php, glossary/admin.php, ! author/index.php, poll/admin.php, submission/admin.php - missed module path change. 2003-May 16 4:00PM CDT Joe Stewart <joe...@us...> [F] - Block_render_template.class - New template block type. ! slash-all.sql - About block change to template type. 2003-May 16 12:00PM CDT Joe Stewart <joe...@us...> --- 424,433 ---- 2003-May 20 11:30AM CDT Joe Stewart <joe...@us...> [B] - author/admin.php, block/admin.php, glossary/admin.php, ! author/index.php, poll/admin.php, submission/admin.php - missed module path change. 2003-May 16 4:00PM CDT Joe Stewart <joe...@us...> [F] - Block_render_template.class - New template block type. ! slash-all.sql - About block change to template type. 2003-May 16 12:00PM CDT Joe Stewart <joe...@us...> *************** *** 411,415 **** New sections clone the blocks of the home section. sectionList.tpl - name links to view of section index page. ! authorAdmin.php, blockAdmin.php, glossaryAdmin.php, groupAdmin.php, mailinglistAdmin.php, pollAdmin.php, sectionAdmin.php, storyAdmin.php, submissionAdmin.php, --- 435,439 ---- New sections clone the blocks of the home section. sectionList.tpl - name links to view of section index page. ! authorAdmin.php, blockAdmin.php, glossaryAdmin.php, groupAdmin.php, mailinglistAdmin.php, pollAdmin.php, sectionAdmin.php, storyAdmin.php, submissionAdmin.php, *************** *** 424,436 **** [W] - index.php - specify module page w/page GET variable. profile.php - use Author module index page. ! authorAdmin.php, glossaryAdmin.php, sectionAdmin.php, submissionAdmin.php, topicAdmin.php - use module admin page. 2003-May 15 2:30PM CDT Joe Stewart <joe...@us...> [ET] - Large commit to test further use of page blocks and module sections. ! Significant number of blocks added require loading of slash-all.sql. 2003-April-28 2:30PM CDT Joe Stewart <joe...@us...> ! [E] - slashTemplate.class - experimental support for module templates to be contained in a "templates" subdirectory. --- 448,460 ---- [W] - index.php - specify module page w/page GET variable. profile.php - use Author module index page. ! authorAdmin.php, glossaryAdmin.php, sectionAdmin.php, submissionAdmin.php, topicAdmin.php - use module admin page. 2003-May 15 2:30PM CDT Joe Stewart <joe...@us...> [ET] - Large commit to test further use of page blocks and module sections. ! Significant number of blocks added require loading of slash-all.sql. 2003-April-28 2:30PM CDT Joe Stewart <joe...@us...> ! [E] - slashTemplate.class - experimental support for module templates to be contained in a "templates" subdirectory. *************** *** 457,461 **** 2003-April-21 2:00PM CDT Joe Stewart <joe...@us...> [WT] - functions.inc, authorAdmin.php, Block_admin.class, authorNew.tpl, ! blockEdit.tpl, storyNew.tpl, optionTypes.tpl, config-dist.php - sync with -ft cvs. --- 481,485 ---- 2003-April-21 2:00PM CDT Joe Stewart <joe...@us...> [WT] - functions.inc, authorAdmin.php, Block_admin.class, authorNew.tpl, ! blockEdit.tpl, storyNew.tpl, optionTypes.tpl, config-dist.php - sync with -ft cvs. *************** *** 491,495 **** 2003-March-11 12:30PM CST Joe Stewart <joe...@us...> ! [W] - config-dist.php, config.php, functions.inc, Author.class, Block_render_skin.class - Changed templatedir.default to templatedir.main. slashTemplate.class - Changed structure of set_file to make recursive --- 515,519 ---- 2003-March-11 12:30PM CST Joe Stewart <joe...@us...> ! [W] - config-dist.php, config.php, functions.inc, Author.class, Block_render_skin.class - Changed templatedir.default to templatedir.main. slashTemplate.class - Changed structure of set_file to make recursive *************** *** 497,501 **** 2003-March-11 11:00AM CST Joe Stewart <joe...@us...> ! [B] - Group.class - commented debugging "echo" - closes bug [ 701658 ] Debug messages in group admin screen. --- 521,525 ---- 2003-March-11 11:00AM CST Joe Stewart <joe...@us...> ! [B] - Group.class - commented debugging "echo" - closes bug [ 701658 ] Debug messages in group admin screen. *************** *** 506,512 **** [B] - slashAuthCR.class, Author.class, login.php - correctly set and delete the "user_info" cookie. ! 2003-March-06 3:00PM CST Joe Stewart <joe...@us...> ! [W] - comment.php, commentAdmin.php - expire poll cache for comment updates too. --- 530,536 ---- [B] - slashAuthCR.class, Author.class, login.php - correctly set and delete the "user_info" cookie. ! 2003-March-06 3:00PM CST Joe Stewart <joe...@us...> ! [W] - comment.php, commentAdmin.php - expire poll cache for comment updates too. *************** *** 515,532 **** 2003-March-06 11:00AM CST Joe Stewart <joe...@us...> ! [B] - config-dist.php, config.php, functions.inc, Author.clas, ! Block_render_skin.class - tweaks for register_globals off and use new language and skin variables. 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.php, 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.php, searchPage.tpl - use getTitle and TITLEBAR template placeholder. --- 539,556 ---- 2003-March-06 11:00AM CST Joe Stewart <joe...@us...> ! [B] - config-dist.php, config.php, functions.inc, Author.clas, ! Block_render_skin.class - tweaks for register_globals off and use new language and skin variables. 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.php, 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.php, searchPage.tpl - use getTitle and TITLEBAR template placeholder. |
From: Peter C. <kr...@us...> - 2004-10-18 17:30:19
|
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11280 Modified Files: blockList.tpl Log Message: Experimental layout change to fit the table better into the screen. Index: blockList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/blockList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** blockList.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- blockList.tpl 18 Oct 2004 17:29:59 -0000 1.2 *************** *** 6,11 **** <tr> <th>Title</th> ! <th>Location</th> ! <th>Source URL</th> <th>Type</th> <th>Admin</th> --- 6,10 ---- <tr> <th>Title</th> ! <th>Parameters :: Location</th> <th>Type</th> <th>Admin</th> *************** *** 15,22 **** <tr class="firstRow"> <td>{TITLE}</td> ! <td>{URL}</td> ! <td>{SOURCE_URL}</td> <td>{TYPE}</td> ! <td><a href="{MODIFYURL}">Modify</a> || <a href="{VIEWURL}">View</a> || <a href="{DELURL}">Delete</a></td> </tr> <!-- END row --> --- 14,21 ---- <tr class="firstRow"> <td>{TITLE}</td> ! <td>{SOURCE_URL} :: ! {URL}</td> <td>{TYPE}</td> ! <td><a href="{MODIFYURL}"><span title="Modify">M</span></a> || <a href="{VIEWURL}"><span title="View">V</span></a> || <a href="{DELURL}"><span title="Delete">X</span></a></td> </tr> <!-- END row --> *************** *** 24,31 **** <tr class="secondRow"> <td>{TITLE}</td> ! <td>{URL}</td> ! <td>{SOURCE_URL}</td> <td>{TYPE}</td> ! <td><a href="{MODIFYURL}">Modify</a> || <a href="{VIEWURL}">View</a> || <a href="{DELURL}">Delete</a></td> </tr> <!-- END row2 --> --- 23,30 ---- <tr class="secondRow"> <td>{TITLE}</td> ! <td>{SOURCE_URL} :: ! {URL}</td> <td>{TYPE}</td> ! <td><a href="{MODIFYURL}"><span title="Modify">M</span></a> || <a href="{VIEWURL}"><span title="View">V</span></a> || <a href="{DELURL}"><span title="Delete">X</span></a></td> </tr> <!-- END row2 --> |
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9150 Modified Files: article.tpl blockEdit.tpl groupNew.tpl permissionList.tpl permissionNew.tpl rssblock.tpl storyNew.tpl Log Message: UI improvements: - mainly adding Cancel button to edit screens - select boxes of 8 not 4 items (much easier to use) - some rewordings too Tags moved to lower case where necessary Index: article.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/article.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- article.tpl 18 Oct 2004 17:21:44 -0000 1.2 *************** *** 1,7 **** {HEADER} ! <TABLE width="100%" cellpadding=0 cellspacing=0 border="0"> ! <TR> ! <TD valign=top WIDTH="100%"><FONT color="#000000"> <!-- START article.tpl --> --- 1,7 ---- {HEADER} ! <table width="100%" cellpadding=0 cellspacing=0 border="0"> ! <tr> ! <td valign=top width="100%"> <!-- START article.tpl --> *************** *** 12,16 **** {EMAILFORM} {STORY} ! <BR><BR> {COMMENTS} </td> --- 12,16 ---- {EMAILFORM} {STORY} ! <br><br> {COMMENTS} </td> *************** *** 18,57 **** </table> ! </TD> ! <TD WIDTH="20" VALIGN="TOP"> ! <IMG SRC="{IMAGEDIR}/layout/blank.gif" WIDTH="20" HEIGHT="1"> ! </TD> ! <TD WIDTH="210" ALIGN=CENTER VALIGN="TOP"> ! <TABLE WIDTH="200" CELLPADDING="0" CELLSPACING="0" BORDER="0"> ! <TR> <!-- this TD block right here is that grey bar between the stories and the blocks --> ! <TD VALIGN="TOP" BGCOLOR="#cccccc"> ! <IMG SRC="{IMAGEDIR}/layout/blank.gif" WIDTH="1" HEIGHT="1" ALT=""> ! </TD> <!-- this TD block is a spacer between the bar and blocks column --> ! <TD VALIGN="TOP"> ! <IMG SRC="{IMAGEDIR}/layout/blank.gif" WIDTH="5" HEIGHT="1" ALT=""> ! </TD> <!-- this TD block is the blocks column --> ! <TD VALIGN="TOP"> {FANCY_BOXES} ! </TD> ! </TR> ! </TABLE> <!-- END article.tpl --> ! </TD> ! </TR> ! </TABLE> {FOOTER} --- 18,57 ---- </table> ! </td> ! <td width="20" valign="TOP"> ! <img src="{IMAGEDIR}/layout/blank.gif" width="20" height="1"> ! </td> ! <td width="210" align=CENTER valign="TOP"> ! <table width="200" cellpadding="0" cellspacing="0" border="0"> ! <tr> <!-- this TD block right here is that grey bar between the stories and the blocks --> ! <td valign="TOP" bgcolor="#cccccc"> ! <img src="{IMAGEDIR}/layout/blank.gif" width="1" height="1" alt=""> ! </td> <!-- this TD block is a spacer between the bar and blocks column --> ! <td valign="TOP"> ! <img src="{IMAGEDIR}/layout/blank.gif" width="5" height="1" alt=""> ! </td> <!-- this TD block is the blocks column --> ! <td valign="TOP"> {FANCY_BOXES} ! </td> ! </tr> ! </table> <!-- END article.tpl --> ! </td> ! </tr> ! </table> {FOOTER} Index: blockEdit.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/blockEdit.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** blockEdit.tpl 21 Apr 2003 20:15:10 -0000 1.2 --- blockEdit.tpl 18 Oct 2004 17:21:48 -0000 1.3 *************** *** 32,37 **** <tr> <td class="descr"> ! Source URL: <br /> ! <span class="hint">(source of data if type is <b>rdf</b> or <b>url</b>)</span> </td> <td><input type="text" name="source_url" value="{SOURCE_URL}" /></td> --- 32,37 ---- <tr> <td class="descr"> ! Parameters: <br /> ! <span class="hint">(source URL if type is <b>rdf</b> or <b>url</b>)</span> </td> <td><input type="text" name="source_url" value="{SOURCE_URL}" /></td> *************** *** 44,48 **** <td class="descr">Owned by Section:</td> <td> ! <select size="4" multiple="multiple" name="section_id_ary[]"> <!-- BEGIN section_row --> <option value="{SECTION_ID}" {SELECTED}>{SECTION_NAME}</option> --- 44,48 ---- <td class="descr">Owned by Section:</td> <td> ! <select size="8" multiple="multiple" name="section_id_ary[]"> <!-- BEGIN section_row --> <option value="{SECTION_ID}" {SELECTED}>{SECTION_NAME}</option> *************** *** 76,80 **** <tr> <td> </td> ! <td><input type="submit" name="submit" value="update" /></td> </tr> </table> --- 76,80 ---- <tr> <td> </td> ! <td><input type="submit" name="submit" value="update" /> <input type="submit" name="submit" value="cancel" /></td> </tr> </table> Index: groupNew.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/groupNew.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** groupNew.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- groupNew.tpl 18 Oct 2004 17:21:48 -0000 1.2 *************** *** 47,51 **** <tr> <td> </td> ! <td><input type="submit" name="submit" value="submit" /></td> </tr> </table> --- 47,54 ---- <tr> <td> </td> ! <td> ! <input type="submit" name="submit" value="submit" /> ! <input type="submit" name="submit" value="cancel" /> ! </td> </tr> </table> Index: permissionList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/permissionList.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** permissionList.tpl 2 Jul 2004 15:18:41 -0000 1.2 --- permissionList.tpl 18 Oct 2004 17:21:48 -0000 1.3 *************** *** 1,19 **** <!-- permissionList.tpl --> {TITLEBAR} ! <TABLE BORDER=0 CELLPADDING=3> ! <TR> ! <TD><b>ID</b></TD> ! <TD><b>Name</b></TD> ! <TD><b>Description</b></TD> ! <TD><b>Actions</b></TD> ! </TR> <!-- BEGIN row --> ! <TR> ! <TD>{PERMISSION_ID}</TD> ! <TD>{PERMISSION_NAME}</TD> ! <TD>{PERMISSION_DESCRIPTION}</TD> ! <TD>{ADMIN}</TD> ! </TR> <!-- END row --> ! </TABLE> <!-- permissionList.tpl --> --- 1,19 ---- <!-- permissionList.tpl --> {TITLEBAR} ! <table border=0 cellpadding=3> ! <tr> ! <td><b>ID</b></td> ! <td><b>Name</b></td> ! <td><b>Description</b></td> ! <td><b>Actions</b></td> ! </tr> <!-- BEGIN row --> ! <tr> ! <td>{PERMISSION_ID}</td> ! <td>{PERMISSION_NAME}</td> ! <td>{PERMISSION_DESCRIPTION}</td> ! <td>{ADMIN}</td> ! </tr> <!-- END row --> ! </table> <!-- permissionList.tpl --> Index: permissionNew.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/permissionNew.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** permissionNew.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- permissionNew.tpl 18 Oct 2004 17:21:48 -0000 1.2 *************** *** 2,6 **** {TITLEBAR} <form action="{ACTION_URL}" method="post"> ! <input type="hidden" name="permission_id" value="{PERMISSION_ID}"> <table border=0> --- 2,6 ---- {TITLEBAR} <form action="{ACTION_URL}" method="post"> ! <input type="hidden" name="permission_id" value="{PERMISSION_ID}" /> <table border=0> *************** *** 15,19 **** <tr> <td> </td> ! <td><input type="submit" name="submit" value="submitperm"></td> </tr> </table> --- 15,22 ---- <tr> <td> </td> ! <td> ! <input type="submit" name="submit" value="submitperm" /> ! <input type="submit" name="submit" value="cancel" /> ! </td> </tr> </table> Index: rssblock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/rssblock.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** rssblock.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- rssblock.tpl 18 Oct 2004 17:21:48 -0000 1.2 *************** *** 1,15 **** <!-- BEGIN channel_title --> <b><a class="Link3" href="{CHANNEL_LINK}" target="{TARGET}">{CHANNEL_TITLE}</a></b><br> <!-- END channel_title --> <!-- BEGIN channel_image --> ! <a class="Link3" href="{IMAGE_LINK}" target="{TARGET}"><img src="{IMAGE_URL}" title="{IMAGE_TITLE}" alt="{IMAGE_TITLE}" border="0"></a> <!-- END channel_image --> <!-- BEGIN channel_description --> <i>{CHANNEL_DESCRIPTION}</i><br> <!-- END channel_description --> <!-- BEGIN each_query --> ! <li><a class="Link3" target="{TARGET}" href="{LINK}">{TITLE}</a> <!-- END each_query --> <!-- BEGIN each_description --> <br><i>{DESCRIPTION}</i> <!-- END each_description --> --- 1,19 ---- + <!-- START rssblock.tpl --> <!-- BEGIN channel_title --> <b><a class="Link3" href="{CHANNEL_LINK}" target="{TARGET}">{CHANNEL_TITLE}</a></b><br> <!-- END channel_title --> <!-- BEGIN channel_image --> ! <a class="Link3" href="{IMAGE_LINK}" target="{TARGET}"><img src="{IMAGE_URL}" title="{IMAGE_TITLE}" alt="{IMAGE_TITLE}" border="0" /></a> <!-- END channel_image --> <!-- BEGIN channel_description --> <i>{CHANNEL_DESCRIPTION}</i><br> <!-- END channel_description --> + <ul> <!-- BEGIN each_query --> ! <li><a class="Link3" target="{TARGET}" href="{LINK}">{TITLE}</a></li> <!-- END each_query --> <!-- BEGIN each_description --> <br><i>{DESCRIPTION}</i> <!-- END each_description --> + </ul> + <!-- END rssblock.tpl --> \ No newline at end of file Index: storyNew.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/storyNew.tpl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** storyNew.tpl 1 Sep 2004 20:59:30 -0000 1.8 --- storyNew.tpl 18 Oct 2004 17:21:48 -0000 1.9 *************** *** 103,108 **** <td class="descr">Body Text</td> <td colspan="3"><!-- body text --> ! <textarea id="body_text" name="body_text" wrap="physical" cols="80" rows="20">{BODYTEXT} ! </textarea> <br /> Or upload a file instead:<br /> --- 103,107 ---- <td class="descr">Body Text</td> <td colspan="3"><!-- body text --> ! <textarea id="body_text" name="body_text" wrap="physical" cols="80" rows="20">{BODYTEXT}</textarea> <br /> Or upload a file instead:<br /> *************** *** 127,130 **** --- 126,130 ---- <input type="submit" name="submit" value="save" /> <input type="submit" name="submit" value="preview" /> + <input type="submit" name="submit" value="cancel" /> </td> </tr> |
From: Peter C. <kr...@us...> - 2004-10-18 17:18:24
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/mailinglist In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8395 Modified Files: admin.php Log Message: Show list if nothing else is to be done Index: admin.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/mailinglist/admin.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin.php 2 Sep 2004 17:26:20 -0000 1.5 --- admin.php 18 Oct 2004 17:18:15 -0000 1.6 *************** *** 63,67 **** break; default: ! $showList = false; } --- 63,68 ---- break; default: ! #$content .= $list->newsletterForm(); ! $showList = true; } |
From: Peter C. <kr...@us...> - 2004-10-18 17:14:09
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6911 Modified Files: Block_render_page.class Log Message: Make sensible MAINPAGE value available to breadcrumb Index: Block_render_page.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes/Block_render_page.class,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Block_render_page.class 22 Jun 2004 20:50:53 -0000 1.5 --- Block_render_page.class 18 Oct 2004 17:14:00 -0000 1.6 *************** *** 195,199 **** 'DELIMETER' => $delimiter, 'LINK' => "?topic_id=" . $ary['topic_id'] . $section_link, ! 'NAME' => $ary['topic'] )); $topic_link = $as . "topic_id=" . $ary['topic_id']; --- 195,200 ---- 'DELIMETER' => $delimiter, 'LINK' => "?topic_id=" . $ary['topic_id'] . $section_link, ! 'NAME' => $ary['topic'], ! 'MAINPAGE' => $section_link ? $_PSL['mainpage'] : 'search.php' )); $topic_link = $as . "topic_id=" . $ary['topic_id']; *************** *** 207,211 **** 'DELIMETER' => $delimiter, 'LINK' => "?author_id=" . $ary['author_id'] . $section_link . $topic_link, ! 'NAME' => $ary['author'] )); $template->parse ("crumb_block", "each_crumb", true); --- 208,213 ---- 'DELIMETER' => $delimiter, 'LINK' => "?author_id=" . $ary['author_id'] . $section_link . $topic_link, ! 'NAME' => $ary['author'], ! 'MAINPAGE' => $section_link ? $_PSL['mainpage'] : 'search.php' )); $template->parse ("crumb_block", "each_crumb", true); |
From: Peter C. <kr...@us...> - 2004-10-18 17:11:33
|
Update of /cvsroot/phpslash/phpslash-dev/include/locale In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5512/locale Modified Files: en.php Log Message: Translate 'block added' message Index: en.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/locale/en.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** en.php 12 Mar 2003 16:12:51 -0000 1.1.1.1 --- en.php 18 Oct 2004 17:11:22 -0000 1.2 *************** *** 46,50 **** "Logout" => "Logout", ! "Home" => "Home", --- 46,50 ---- "Logout" => "Logout", ! "Home" => "Home", *************** *** 72,76 **** "Section" => ! "Section", "Block" => --- 72,76 ---- "Section" => ! "Section", "Block" => *************** *** 94,98 **** "Logging" => "Logging", ! "User Profile" => "User Profile", --- 94,98 ---- "Logging" => "Logging", ! "User Profile" => "User Profile", *************** *** 127,131 **** "%s Poll" => "%s Poll", ! // search.php "Searching %s" => --- 127,131 ---- "%s Poll" => "%s Poll", ! // search.php "Searching %s" => *************** *** 143,147 **** "Thanks for this submission. We have it and will set our fearless editorial staff upon it right this second." => "Thanks for this submission. We have it and will set our fearless editorial staff upon it right this second.", ! "Something broke, I'm not sure what though??" => "Something broke, I'm not sure what though??", --- 143,147 ---- "Thanks for this submission. We have it and will set our fearless editorial staff upon it right this second." => "Thanks for this submission. We have it and will set our fearless editorial staff upon it right this second.", ! "Something broke, I'm not sure what though??" => "Something broke, I'm not sure what though??", *************** *** 149,163 **** "New Submission" => "New Submission", ! // /admin files "Administration" => "Administration", ! ! "Error! Invalid Privileges" => "Error! Invalid Privileges", ! "Sorry. You do not have the necessary privilege to view this page." => "Sorry. You do not have the necessary privilege to view this page.", ! // authorAdmin "Author Administration" => --- 149,163 ---- "New Submission" => "New Submission", ! // /admin files "Administration" => "Administration", ! ! "Error! Invalid Privileges" => "Error! Invalid Privileges", ! "Sorry. You do not have the necessary privilege to view this page." => "Sorry. You do not have the necessary privilege to view this page.", ! // authorAdmin "Author Administration" => *************** *** 167,171 **** "The Block has been Deleted" => "The Block has been Deleted", ! // commentAdmin.php "The comment was deleted" => --- 167,173 ---- "The Block has been Deleted" => "The Block has been Deleted", ! ! " block added" => " block added", ! // commentAdmin.php "The comment was deleted" => *************** *** 217,221 **** "has not been updated" => "has not been updated", ! // infologAdmin.php // mailinglistAdmin.php --- 219,223 ---- "has not been updated" => "has not been updated", ! // infologAdmin.php // mailinglistAdmin.php *************** *** 250,260 **** // topicAdmin.php // variableAdmin.php ! // /class files ! // Author.class "Existing Authors" => "Existing Authors", ! "There is no author_name in Author.class::saveProfile" => "There is no author_name in Author.class::saveProfile", --- 252,262 ---- // topicAdmin.php // variableAdmin.php ! // /class files ! // Author.class "Existing Authors" => "Existing Authors", ! "There is no author_name in Author.class::saveProfile" => "There is no author_name in Author.class::saveProfile", *************** *** 268,272 **** "When changing the username, the password field must also be completed." => "When changing the username, the password field must also be completed.", ! "Author Updated" => "Author Updated", --- 270,274 ---- "When changing the username, the password field must also be completed." => "When changing the username, the password field must also be completed.", ! "Author Updated" => "Author Updated", *************** *** 324,328 **** "Block Type %s deleted" => "Block Type %s deleted", ! "Multiple blocks exist with id: %s. Stopping." => "Multiple blocks exist with id: %s. Stopping.", --- 326,330 ---- "Block Type %s deleted" => "Block Type %s deleted", ! "Multiple blocks exist with id: %s. Stopping." => "Multiple blocks exist with id: %s. Stopping.", *************** *** 351,355 **** "Block::putBlock() received data not in an array." => "Block::putBlock() received data not in an array.", ! // Block_admin.class "Update the Current Blocks" => --- 353,357 ---- "Block::putBlock() received data not in an array." => "Block::putBlock() received data not in an array.", ! // Block_admin.class "Update the Current Blocks" => *************** *** 374,378 **** "February" => "February", ! "March" => "March", --- 376,380 ---- "February" => "February", ! "March" => "March", *************** *** 386,390 **** "June" => "June", ! "July" => "July", --- 388,392 ---- "June" => "June", ! "July" => "July", *************** *** 404,408 **** "December" => "December", ! // Block_render_html.class // Block_render_poll.class --- 406,410 ---- "December" => "December", ! // Block_render_html.class // Block_render_poll.class *************** *** 412,416 **** "A block that displays the headlines from another site, generated from their RDF file" => "A block that displays the headlines from another site, generated from their RDF file", ! "Block_render_rss.class:: Parse error reading [%s]" => "Block_render_rss.class:: Parse error reading [%s]", --- 414,418 ---- "A block that displays the headlines from another site, generated from their RDF file" => "A block that displays the headlines from another site, generated from their RDF file", ! "Block_render_rss.class:: Parse error reading [%s]" => "Block_render_rss.class:: Parse error reading [%s]", *************** *** 425,429 **** "Block_render_rss.class:: No http:// or ftp:// in [%s]", ! // Block_render_section.class // Block_render_topic.class --- 427,431 ---- "Block_render_rss.class:: No http:// or ftp:// in [%s]", ! // Block_render_section.class // Block_render_topic.class *************** *** 448,469 **** // Comment.class ! "Nested" => "Nested", ! ! "Threaded" => "Threaded", ! ! "Flat" => "Flat", ! ! "Index" => "Index", ! ! "Bulk Delete" => "Bulk Delete", ! ! "Show Pending" => "Show Pending", ! "Comment::getAllComments: I'm confused with the mode variable: '%s'" => "Comment::getAllComments: I'm confused with the mode variable: '%s'", --- 450,471 ---- // Comment.class ! "Nested" => "Nested", ! ! "Threaded" => "Threaded", ! ! "Flat" => "Flat", ! ! "Index" => "Index", ! ! "Bulk Delete" => "Bulk Delete", ! ! "Show Pending" => "Show Pending", ! "Comment::getAllComments: I'm confused with the mode variable: '%s'" => "Comment::getAllComments: I'm confused with the mode variable: '%s'", *************** *** 471,475 **** "Anonymous Poster" => "Anonymous Poster", ! "Comment::update - comment_text is blank" => "Comment::update - comment_text is blank", --- 473,477 ---- "Anonymous Poster" => "Anonymous Poster", ! "Comment::update - comment_text is blank" => "Comment::update - comment_text is blank", *************** *** 477,484 **** "Comment saved" => "Comment saved", ! "Comment::update --ERROR-- " => "Comment::update --ERROR-- ", ! "Comment::update - Adding the comment failed" => "Comment::update - Adding the comment failed", --- 479,486 ---- "Comment saved" => "Comment saved", ! "Comment::update --ERROR-- " => "Comment::update --ERROR-- ", ! "Comment::update - Adding the comment failed" => "Comment::update - Adding the comment failed", *************** *** 543,547 **** "Comment::reparentUp - the update failed" => "Comment::reparentUp - the update failed", ! "Comment::reparentTop - either no comment_id, or no story_id" => "Comment::reparentTop - either no comment_id, or no story_id", --- 545,549 ---- "Comment::reparentUp - the update failed" => "Comment::reparentUp - the update failed", ! "Comment::reparentTop - either no comment_id, or no story_id" => "Comment::reparentTop - either no comment_id, or no story_id", *************** *** 578,582 **** "Add a new Term" => "Add a new Term", ! "Glossary Edit" => "Glossary Edit", --- 580,584 ---- "Add a new Term" => "Add a new Term", ! "Glossary Edit" => "Glossary Edit", *************** *** 584,588 **** "There is no term in Glossary.class::saveGlossary" => "There is no term in Glossary.class::saveGlossary", ! "There is no def in Glossary.class::saveGlossary" => "There is no def in Glossary.class::saveGlossary", --- 586,590 ---- "There is no term in Glossary.class::saveGlossary" => "There is no term in Glossary.class::saveGlossary", ! "There is no def in Glossary.class::saveGlossary" => "There is no def in Glossary.class::saveGlossary", *************** *** 590,595 **** "Add a new Term" => "Add a new Term", ! ! // Group.class "There is no group_name in Group.class::saveGroup" => "There is no group_name in Group.class::saveGroup", --- 592,597 ---- "Add a new Term" => "Add a new Term", ! ! // Group.class "There is no group_name in Group.class::saveGroup" => "There is no group_name in Group.class::saveGroup", *************** *** 690,694 **** "There was an error inserting your frequency data.", ! "Thank you. You will receive a confirmation email soon to verify your subscription." => "Thank you. You will receive a confirmation email soon to verify your subscription.", --- 692,696 ---- "There was an error inserting your frequency data.", ! "Thank you. You will receive a confirmation email soon to verify your subscription." => "Thank you. You will receive a confirmation email soon to verify your subscription.", *************** *** 729,740 **** "You didn't give a email subject! Halting." => "You didn't give a email subject! Halting.", ! // Navbar.class "Login" => "Login", ! "Logout %s" => "Logout %s", ! // Poll.class "Create A New Poll" => --- 731,742 ---- "You didn't give a email subject! Halting." => "You didn't give a email subject! Halting.", ! // Navbar.class "Login" => "Login", ! "Logout %s" => "Logout %s", ! // Poll.class "Create A New Poll" => *************** *** 743,747 **** "No Question ID" => "No Question ID", ! "There was a weird number of affected rows when setting the 'current' field to 1: " => "There was a weird number of affected rows when setting the 'current' field to 1: ", --- 745,749 ---- "No Question ID" => "No Question ID", ! "There was a weird number of affected rows when setting the 'current' field to 1: " => "There was a weird number of affected rows when setting the 'current' field to 1: ", *************** *** 752,756 **** "No ID to edit" => "No ID to edit", ! "Couldn't find your question (%s) in the DB" => "Couldn't find your question (%s) in the DB", --- 754,758 ---- "No ID to edit" => "No ID to edit", ! "Couldn't find your question (%s) in the DB" => "Couldn't find your question (%s) in the DB", *************** *** 758,771 **** "Edit An Existing Poll" => "Edit An Existing Poll", ! "Silly admin! You need to have a question before you can have a poll." => "Silly admin! You need to have a question before you can have a poll.", ! "You need to have at least 2 possible answers, otherwise it wouldn't be a very effective poll, would it?" => "You need to have at least 2 possible answers, otherwise it wouldn't be a very effective poll, would it?", ! "Choice %s, %s (%s), was updated" => "Choice %s, %s (%s), was updated", ! "Choice %s, %s (%s), was inserted" => "Choice %s, %s (%s), was inserted", --- 760,773 ---- "Edit An Existing Poll" => "Edit An Existing Poll", ! "Silly admin! You need to have a question before you can have a poll." => "Silly admin! You need to have a question before you can have a poll.", ! "You need to have at least 2 possible answers, otherwise it wouldn't be a very effective poll, would it?" => "You need to have at least 2 possible answers, otherwise it wouldn't be a very effective poll, would it?", ! "Choice %s, %s (%s), was updated" => "Choice %s, %s (%s), was updated", ! "Choice %s, %s (%s), was inserted" => "Choice %s, %s (%s), was inserted", *************** *** 773,780 **** "You can't delete the current poll. Please make another poll current, then delete this one" => "You can't delete the current poll. Please make another poll current, then delete this one", ! "No question_id in Poll::deletePoll" => "No question_id in Poll::deletePoll", ! "Choice %s was ignored." => "Choice %s was ignored.", --- 775,782 ---- "You can't delete the current poll. Please make another poll current, then delete this one" => "You can't delete the current poll. Please make another poll current, then delete this one", ! "No question_id in Poll::deletePoll" => "No question_id in Poll::deletePoll", ! "Choice %s was ignored." => "Choice %s was ignored.", *************** *** 791,804 **** "There was an error deleting your poll answers" => "There was an error deleting your poll answers", ! "There was an error deleting your poll question" => "There was an error deleting your poll question", ! "There was an error removing the votes" => "There was an error removing the votes", ! "Poll %s was deleted" => "Poll %s was deleted", ! "Your vote has been registered" => "Your vote has been registered", --- 793,806 ---- "There was an error deleting your poll answers" => "There was an error deleting your poll answers", ! "There was an error deleting your poll question" => "There was an error deleting your poll question", ! "There was an error removing the votes" => "There was an error removing the votes", ! "Poll %s was deleted" => "Poll %s was deleted", ! "Your vote has been registered" => "Your vote has been registered", *************** *** 815,825 **** "Section %s(%s) deleted" => "Section %s(%s) deleted", ! "Change Existing Sections" => "Change Existing Sections", ! "There is no section_name in Section.class::saveSection" => "There is no section_name in Section.class::saveSection", ! "There is no description in Section.class::saveSection" => "There is no description in Section.class::saveSection", --- 817,827 ---- "Section %s(%s) deleted" => "Section %s(%s) deleted", ! "Change Existing Sections" => "Change Existing Sections", ! "There is no section_name in Section.class::saveSection" => "There is no section_name in Section.class::saveSection", ! "There is no description in Section.class::saveSection" => "There is no description in Section.class::saveSection", *************** *** 840,844 **** "Reply" => "Reply", ! "Also filed under" => "Also filed under", --- 842,846 ---- "Reply" => "Reply", ! "Also filed under" => "Also filed under", *************** *** 846,860 **** "comments" => "comments", ! "comment" => "comment", ! "Comments?" => "Comments?", ! // Story_admin.class "The storyid is: " => "The storyid is: ", ! "You deleted %s comments" => "You deleted %s comments", --- 848,862 ---- "comments" => "comments", ! "comment" => "comment", ! "Comments?" => "Comments?", ! // Story_admin.class "The storyid is: " => "The storyid is: ", ! "You deleted %s comments" => "You deleted %s comments", *************** *** 868,872 **** "removed the story" => "removed the story", ! "All Authors" => "All Authors", --- 870,874 ---- "removed the story" => "removed the story", ! "All Authors" => "All Authors", *************** *** 899,903 **** "Topic bar could not be reorganized" => "Topic bar could not be reorganized", ! // Submission.class "Anonymous Coward" => --- 901,905 ---- "Topic bar could not be reorganized" => "Topic bar could not be reorganized", ! // Submission.class "Anonymous Coward" => *************** *** 961,965 **** "Display Topic Images" => "Display Topic Images", ! // TopicBar.class // Variable.class --- 963,967 ---- "Display Topic Images" => "Display Topic Images", ! // TopicBar.class // Variable.class *************** *** 976,980 **** "To add or remove yourself go to" => "To add or remove yourself go to", ! // Titles in different php-files "About Page" => --- 978,982 ---- "To add or remove yourself go to" => "To add or remove yourself go to", ! // Titles in different php-files "About Page" => *************** *** 1040,1044 **** "Topic Administration" => "Topic Administration", ! "Group Administration" => "Group Administration" --- 1042,1046 ---- "Topic Administration" => "Topic Administration", ! "Group Administration" => "Group Administration" |
From: Peter C. <kr...@us...> - 2004-10-18 17:11:32
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/block In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5512/modules/block Modified Files: Block.class Log Message: Translate 'block added' message Index: Block.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/block/Block.class,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Block.class 28 Aug 2004 20:26:43 -0000 1.10 --- Block.class 18 Oct 2004 17:11:23 -0000 1.11 *************** *** 377,381 **** logwrite("Block Addition", "Added block " . $block_array['block_id']); // $this->message .= $this->doBlock($block_array["block_id"]); ! $this->message .= $block_array["block_id"] ." block added"; } else { $this->message .= pslgetText("Error adding block. Query returned multiple results."); --- 377,381 ---- logwrite("Block Addition", "Added block " . $block_array['block_id']); // $this->message .= $this->doBlock($block_array["block_id"]); ! $this->message .= $block_array["block_id"] . pslgettext(" block added"); } else { $this->message .= pslgetText("Error adding block. Query returned multiple results."); |
From: Peter C. <kr...@us...> - 2004-10-18 17:06:48
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/auth In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4203 Modified Files: slashAuth.class Log Message: Make custom user-options available to the session Index: slashAuth.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/auth/slashAuth.class,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** slashAuth.class 22 Sep 2004 21:01:31 -0000 1.4 --- slashAuth.class 18 Oct 2004 17:06:39 -0000 1.5 *************** *** 219,222 **** --- 219,230 ---- $this->use_preferences(); } + // Copy across other options + foreach ($temparray as $k => $v) { + if (!isset($this->auth[$k])) { + // Make sure we dont overwrite anything that's already there + $this->auth[$k] = $v; + #debug("slashAuth option $k",$v); + } + } // expire cache for this session |
From: Peter C. <kr...@us...> - 2004-10-18 17:05:14
|
Update of /cvsroot/phpslash/phpslash-dev/include/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3827 Modified Files: functions.inc Log Message: General notice squashing, adding MAINPAGE var to getHeader, tidyup of mail-related functions Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/functions.inc,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** functions.inc 29 Jul 2004 15:38:52 -0000 1.17 --- functions.inc 18 Oct 2004 17:05:04 -0000 1.18 *************** *** 8,12 **** * June 2004 - There's been a bit of a rationalisation of this file - you might have notcied! * This is a detailed list of how things are grouped. Feel free to suggest new sections (or changes ! * to categorisations, but when you add a new function, please try to put it in the right place! * * HTML FORMATTING: ERRORS AND MESSAGES --- 8,12 ---- * June 2004 - There's been a bit of a rationalisation of this file - you might have notcied! * This is a detailed list of how things are grouped. Feel free to suggest new sections (or changes ! * to categorisations), but when you add a new function, please try to put it in the right place! * * HTML FORMATTING: ERRORS AND MESSAGES *************** *** 253,256 **** --- 253,257 ---- 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], + 'MAINPAGE' => $_PSL['mainpage'], 'SITETITLE' => $title, 'SEARCH_ACTION_URL' => $action_url, *************** *** 894,898 **** } // start with cookie value if it's set ! $cookie_TZ = $HTTP_COOKIE_VARS['TZ']; if (!empty($cookie_TZ)) { $tzname = $cookie_TZ; --- 895,899 ---- } // start with cookie value if it's set ! $cookie_TZ = @$HTTP_COOKIE_VARS['TZ']; if (!empty($cookie_TZ)) { $tzname = $cookie_TZ; *************** *** 960,964 **** $locale || $locale = $_PSL['locale'][$category]; ! if (!is_array($localinfo[$locale][$category])) { $filename = sprintf('%s/%s.%s.php',$_PSL['localedir'],$locale,$category); if (!is_readable($filename)) { --- 961,965 ---- $locale || $locale = $_PSL['locale'][$category]; ! if (!is_array(@$localinfo[$locale][$category])) { $filename = sprintf('%s/%s.%s.php',$_PSL['localedir'],$locale,$category); if (!is_readable($filename)) { *************** *** 1192,1197 **** // let the template parse any tag variables submitted. if(is_array($ary['vars'] )) { ! while( list( $key, $val) = @each( $ary['vars'] )) { ! $template->set_var(strtoupper($key), $ary['vars'][$key]); } } --- 1193,1198 ---- // let the template parse any tag variables submitted. if(is_array($ary['vars'] )) { ! foreach ($ary['vars'] as $key => $val) { ! $template->set_var(strtoupper($key), $val); } } *************** *** 1199,1226 **** // parse the to_block to the mail_to variable $template->set_block("emailnotify","to_block","mail_to"); ! $template->parse("mail_to", "to_block", true); ! ! $mail_to = trim($template->get_var("mail_to")); // debug("mail_to", $mail_to); // parse the subject_block to the mail_subject variable $template->set_block("emailnotify","subject_block","mail_subject"); ! $template->parse("mail_subject", "subject_block", true); ! ! $mail_subject = trim($template->get_var("mail_subject")); // debug("mail_subject", $mail_subject); // parse the headers_block to the mail_headers variable $template->set_block("emailnotify","headers_block","mail_headers"); ! $template->parse("mail_headers", "headers_block", true); ! ! $mail_headers = trim($template->get_var("mail_headers")); // debug("mail_headers", $mail_headers); // parse the body_block to the mail_body variable $template->set_block("emailnotify","body_block","mail_body"); ! $template->parse("mail_body", "body_block", true); ! ! $mail_body = $template->get_var("mail_body"); // debug("mail_body", $mail_body); --- 1200,1219 ---- // parse the to_block to the mail_to variable $template->set_block("emailnotify","to_block","mail_to"); ! $mail_to = trim($template->parse("mail_to", "to_block", true)); // debug("mail_to", $mail_to); // parse the subject_block to the mail_subject variable $template->set_block("emailnotify","subject_block","mail_subject"); ! $mail_subject = trim($template->parse("mail_subject", "subject_block", true)); // debug("mail_subject", $mail_subject); // parse the headers_block to the mail_headers variable $template->set_block("emailnotify","headers_block","mail_headers"); ! $mail_headers = trim($template->parse("mail_headers", "headers_block", true)); // debug("mail_headers", $mail_headers); // parse the body_block to the mail_body variable $template->set_block("emailnotify","body_block","mail_body"); ! $mail_body = $template->parse("mail_body", "body_block", true); // debug("mail_body", $mail_body); *************** *** 1237,1273 **** /************* TEMP MAIL LIST STUFF ********************/ ! //Begin function for email this is stupid, needs to be shorter ! function format_mail($str, $char_len, $scrub) { //BEGIN FUNCTION ! ! if ($scrub) { //Open if Scrub $str = stripslashes($str); // lh: Hopefully this is the short replacement ! $str = eregi_replace('<(/?)(a|b|br|i|p)+[^>]*>', "", $str); ! $str = eregi_replace("\n|\r|[[:space:]]+|10|13|&#....;", " ", $str); ! $str = stripslashes($str); ! } //Close if Scrub ! while(strlen($str) != 0) { //Open While ! if (strlen($str) > $char_len) { ! $len = strrpos(substr($str, 0, $char_len - 1), " "); ! } else { ! $len = 0; ! } ! // in case of no spaces ! if(!$len) { ! $len = $char_len - 1; ! } ! $str_out .= substr($str, 0, $len) . "\n"; ! $str = ltrim(substr($str, $len, strlen($str))); ! } //End While return $str_out; ! } //END FUNCTION /** * Check format of email. * ! * No DNS or MX checks are performed. This function is duplicated in mailinglist.class * * @access public --- 1230,1261 ---- /************* TEMP MAIL LIST STUFF ********************/ ! /** ! * Begin function for email this is stupid, needs to be shorter ! * @todo Change to use preg_replace or strip_tags ! */ ! function format_mail($str, $char_len=76, $scrub=true) { //BEGIN FUNCTION + if ($scrub) { $str = stripslashes($str); // lh: Hopefully this is the short replacement ! #$str = eregi_replace('<(/?)(a|b|br|i|p)+[^>]*>', "", $str); ! #$str = eregi_replace("\n|\r|[[:space:]]+|10|13|&#....;", " ", $str); ! $str = str_replace(array('<h1','<h2','<h3','<h4','<h5'),"\n\n<h9",$str); ! $str = str_replace(array('</h1>','</h2>','</h3>','</h4>','</h5>'),"\n",$str); ! $str = strip_tags($str); ! // ...and reverse any html-encoding ! $str = strtr($str,array_flip(get_html_translation_table(HTML_ENTITIES))); $str = stripslashes($str); ! } ! ! $str_out = wordwrap($str,$char_len); return $str_out; ! } //end format_mail /** * Check format of email. * ! * No DNS or MX checks are performed. * * @access public |
From: Peter C. <kr...@us...> - 2004-10-18 17:00:54
|
Update of /cvsroot/phpslash/phpslash-dev/include/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2820 Modified Files: slashTemplate.class Log Message: Fix for situation where templates dont exist in current language Index: slashTemplate.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/slashTemplate.class,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** slashTemplate.class 29 Jul 2004 15:57:14 -0000 1.9 --- slashTemplate.class 18 Oct 2004 17:00:34 -0000 1.10 *************** *** 164,168 **** // Fifth: Try default skin and default language, if we're not already there (this is getting desperate) ! if ($this->psl['defaultskin'] != $skin && $this->psl['language.default'] != $language) { debug('[5] default skin and language',$filename); if ($this->set_file($varname, $filename , $this->psl['defaultskin'], $this->psl['language.default'])) { --- 164,168 ---- // Fifth: Try default skin and default language, if we're not already there (this is getting desperate) ! if ($this->psl['defaultskin'] != $skin || $this->psl['language.default'] != $language) { debug('[5] default skin and language',$filename); if ($this->set_file($varname, $filename , $this->psl['defaultskin'], $this->psl['language.default'])) { |
From: Joe S. <joe...@us...> - 2004-10-14 18:04:23
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25417/phpslash-dev Modified Files: CHANGES Log Message: Story titles should display correctly. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** CHANGES 14 Oct 2004 17:55:28 -0000 1.111 --- CHANGES 14 Oct 2004 18:04:13 -0000 1.112 *************** *** 16,20 **** [B] - story/index.php, Block_render_header.class, slash-all.sql, db_xfer.php.disabled - Story titles should display correctly. ! 2004-October 7 Joe Stewart <joe...@us... [B] - slash-all.sql - Blog section didn't have the right blocks. --- 16,21 ---- [B] - story/index.php, Block_render_header.class, slash-all.sql, db_xfer.php.disabled - Story titles should display correctly. ! index.php - Page title should always display correctly. ! 2004-October 7 Joe Stewart <joe...@us... [B] - slash-all.sql - Blog section didn't have the right blocks. |
From: Joe S. <joe...@us...> - 2004-10-14 18:04:23
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25417/phpslash-dev/public_html Modified Files: index.php Log Message: Story titles should display correctly. Index: index.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 24 Jun 2003 19:32:35 -0000 1.5 --- index.php 14 Oct 2004 18:04:14 -0000 1.6 *************** *** 4,9 **** require('config.php'); ! $pagetitle = pslgetText('Home'); // The name to be displayed in the header ! $xsiteobject = pslgetText('Home Page'); // This Defines The META Tag Object Type // Show login form if requested --- 4,9 ---- require('config.php'); ! $pagetitle = pslgetText($ary['module']); // The name to be displayed in the header ! $xsiteobject = pslgetText($ary['module'] .' Page'); // This Defines The META Tag Object Type // Show login form if requested |
From: Joe S. <joe...@us...> - 2004-10-14 17:55:52
|
Update of /cvsroot/phpslash/phpslash-dev/tables/0.8 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev/tables/0.8 Modified Files: slash-all.sql Log Message: Story titles should display correctly. Index: slash-all.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/tables/0.8/slash-all.sql,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** slash-all.sql 7 Oct 2004 20:42:03 -0000 1.11 --- slash-all.sql 14 Oct 2004 17:55:32 -0000 1.12 *************** *** 219,225 **** INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (153,12,'Page - public - nav - top',0,'','tpl=navbar','','a:3:{s:6:\"column\";s:3:\"top\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',60,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (154,12,'Page - public - nav - foot',0,'','tpl=navbarFooter','','a:3:{s:6:\"column\";s:6:\"bottom\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',10,NULL); ! INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (155,18,'Page - public - module',0,'','','','a:3:{s:6:\"column\";s:6:\"center\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',95,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (156,19,'Page - public',0,'','','','a:3:{s:6:\"column\";s:4:\"page\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',0,NULL); ! INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (157,18,'Page - admin - module',0,'','','','a:2:{s:6:\"column\";s:6:\"center\";s:8:\"box_type\";s:11:\"contentonly\";}',90,1050617309); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (158,19,'Page - admin',0,'','','','a:4:{s:6:\"column\";s:4:\"page\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";s:4:\"skin\";s:5:\"basic\";}',0,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (164,18,'Submission',0,'','','','a:4:{s:6:\"column\";s:6:\"center\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";s:6:\"module\";s:10:\"Submission\";}',90,NULL); --- 219,225 ---- INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (153,12,'Page - public - nav - top',0,'','tpl=navbar','','a:3:{s:6:\"column\";s:3:\"top\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',60,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (154,12,'Page - public - nav - foot',0,'','tpl=navbarFooter','','a:3:{s:6:\"column\";s:6:\"bottom\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',10,NULL); ! INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (155,18,'Page - public - module',0,'','','','a:3:{s:6:\"column\";s:6:\"center\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',97,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (156,19,'Page - public',0,'','','','a:3:{s:6:\"column\";s:4:\"page\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";}',0,NULL); ! INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (157,18,'Page - admin - module',0,'','','','a:2:{s:6:\"column\";s:6:\"center\";s:8:\"box_type\";s:11:\"contentonly\";}',97,1050617309); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (158,19,'Page - admin',0,'','','','a:4:{s:6:\"column\";s:4:\"page\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";s:4:\"skin\";s:5:\"basic\";}',0,NULL); INSERT INTO psl_block (id, type, title, expire_length, location, source_url, cache_data, block_options, ordernum, date_issued) VALUES (164,18,'Submission',0,'','','','a:4:{s:6:\"column\";s:6:\"center\";s:5:\"width\";s:0:\"\";s:8:\"box_type\";s:11:\"contentonly\";s:6:\"module\";s:10:\"Submission\";}',90,NULL); |
From: Joe S. <joe...@us...> - 2004-10-14 17:55:48
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev/include/modules/block/blocktypes Modified Files: Block_render_header.class Log Message: Story titles should display correctly. Index: Block_render_header.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes/Block_render_header.class,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Block_render_header.class 7 Jul 2004 17:28:05 -0000 1.3 --- Block_render_header.class 14 Oct 2004 17:55:31 -0000 1.4 *************** *** 26,29 **** --- 26,32 ---- $sectionTitle = array('SECTION' => $this->getSectionTitle()); + if(empty($GLOBALS['pagetitle'])) { + $GLOBALS['pagetitle'] = $this->getSectionTitle(); + } $this->output = getHeader($GLOBALS['pagetitle'],$this->psl['metatags'],$sectionTitle,$tpl); return true; |
From: Joe S. <joe...@us...> - 2004-10-14 17:55:48
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev Modified Files: CHANGES Log Message: Story titles should display correctly. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** CHANGES 7 Oct 2004 20:42:02 -0000 1.110 --- CHANGES 14 Oct 2004 17:55:28 -0000 1.111 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2004-October 14 Joe Stewart <joe...@us... + [B] - story/index.php, Block_render_header.class, slash-all.sql, + db_xfer.php.disabled - Story titles should display correctly. + 2004-October 7 Joe Stewart <joe...@us... [B] - slash-all.sql - Blog section didn't have the right blocks. |
From: Joe S. <joe...@us...> - 2004-10-14 17:55:48
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/story In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev/include/modules/story Modified Files: index.php Log Message: Story titles should display correctly. Index: index.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/index.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** index.php 9 Sep 2004 20:44:54 -0000 1.8 --- index.php 14 Oct 2004 17:55:32 -0000 1.9 *************** *** 2,6 **** // $Id$ ! global $_PSL, $ary; AddClassRequirement("story_base",$_PSL['moduledir'] . "/story/Story_base.class"); --- 2,6 ---- // $Id$ ! global $_PSL, $ary, $pagetitle; AddClassRequirement("story_base",$_PSL['moduledir'] . "/story/Story_base.class"); *************** *** 9,14 **** AddClassRequirement("story_plugin_i",$_PSL['moduledir'] ."/". $_PSL['module']['Story'] ."/Story_plugin_i.class"); ! $pagetitle = pslgetText('Home'); // The name to be displayed in the header ! $xsiteobject = pslgetText('Home Page'); // This Defines The META Tag Object Type $story = pslNew("Story"); --- 9,14 ---- AddClassRequirement("story_plugin_i",$_PSL['moduledir'] ."/". $_PSL['module']['Story'] ."/Story_plugin_i.class"); ! // $pagetitle = pslgetText('Home'); // The name to be displayed in the header ! // $xsiteobject = pslgetText('Home Page'); // This Defines The META Tag Object Type $story = pslNew("Story"); *************** *** 27,33 **** --- 27,39 ---- // one particular story requested $content .= $story->getStory($ary['story_id'], "full", $ary); + $title = $story->getTitle($story_id); + $ttitle = stripslashes(ereg_replace("<([^>]*)>", "", $title)); + $pagetitle = pslgetText($ttitle); // The name to be displayed in the header + $xsiteobject = pslgetText('Article Page'); // This Defines The META Tag Object Type } else { // otherwise show stories for the section $content = $story->getStories($ary); + $pagetitle = pslgetText($ary['section']); // The name to be displayed in the header + $xsiteobject = pslgetText('Index Page'); // This Defines The META Tag Object Type } |
From: Joe S. <joe...@us...> - 2004-10-14 17:55:48
|
Update of /cvsroot/phpslash/phpslash-dev/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev/scripts Modified Files: db_xfer.php.disabled Log Message: Story titles should display correctly. Index: db_xfer.php.disabled =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/scripts/db_xfer.php.disabled,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_xfer.php.disabled 17 Sep 2004 15:19:28 -0000 1.4 --- db_xfer.php.disabled 14 Oct 2004 17:55:32 -0000 1.5 *************** *** 449,453 **** $ary['source_url'] = ''; $ary['cache_data'] = ''; ! $ary['ordernum'] = '95'; $section_id_ary = null; --- 449,453 ---- $ary['source_url'] = ''; $ary['cache_data'] = ''; ! $ary['ordernum'] = '97'; $section_id_ary = null; *************** *** 489,493 **** $ary['source_url'] = ''; $ary['cache_data'] = ''; ! $ary['ordernum'] = '90'; $section_id_ary = null; --- 489,493 ---- $ary['source_url'] = ''; $ary['cache_data'] = ''; ! $ary['ordernum'] = '97'; $section_id_ary = null; |
From: Joe S. <joe...@us...> - 2004-10-07 20:42:23
|
Update of /cvsroot/phpslash/phpslash-dev/tables/0.8 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23650/phpslash-dev/tables/0.8 Modified Files: slash-all.sql Log Message: Blog section didn't have the right blocks. bloggers group typo. Index: slash-all.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/tables/0.8/slash-all.sql,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** slash-all.sql 18 Sep 2004 15:46:48 -0000 1.10 --- slash-all.sql 7 Oct 2004 20:42:03 -0000 1.11 *************** *** 128,132 **** INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_glossary_seq',1); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_blocktype_seq',20); ! INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_section_block_lut_seq',443); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_permission_seq',82); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_seq',28); --- 128,132 ---- INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_glossary_seq',1); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_blocktype_seq',20); ! INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_section_block_lut_seq',451); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_permission_seq',82); INSERT INTO db_sequence (seq_name, nextid) VALUES ('psl_group_seq',28); *************** *** 908,912 **** INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (352,156,11); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (365,160,11); - INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (386,167,16); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (355,153,12); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (356,154,4); --- 908,911 ---- *************** *** 945,949 **** INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (396,168,14); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (397,168,15); - INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (398,168,16); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (401,169,4); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (402,169,5); --- 944,947 ---- *************** *** 957,961 **** INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (410,169,14); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (411,169,15); - INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (412,169,16); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (413,144,5); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (414,144,10); --- 955,958 ---- *************** *** 989,992 **** --- 986,997 ---- INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (442,173,8); INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (443,174,8); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (444,156,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (445,151,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (446,150,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (447,155,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (448,154,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (449,153,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (450,139,16); + INSERT INTO psl_section_block_lut (lut_id, block_id, section_id) VALUES (451,131,16); -- |
From: Joe S. <joe...@us...> - 2004-10-07 20:42:22
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23650/phpslash-dev Modified Files: CHANGES Log Message: Blog section didn't have the right blocks. bloggers group typo. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** CHANGES 1 Oct 2004 18:08:43 -0000 1.109 --- CHANGES 7 Oct 2004 20:42:02 -0000 1.110 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2004-October 7 Joe Stewart <joe...@us... + [B] - slash-all.sql - Blog section didn't have the right blocks. + config-dist.php - bloggers group typo. + 2004-October 1 Joe Stewart <joe...@us... [W] - config-dist.php - changed skin change from url to not set |
From: Joe S. <joe...@us...> - 2004-10-07 20:42:22
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23650/phpslash-dev/public_html Modified Files: config-dist.php Log Message: Blog section didn't have the right blocks. bloggers group typo. Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** config-dist.php 1 Oct 2004 18:08:43 -0000 1.27 --- config-dist.php 7 Oct 2004 20:42:03 -0000 1.28 *************** *** 790,794 **** 'name' => "Blog Entry", 'link' => $_PSL['adminurl'] . "/storyAdmin.php", ! 'perm' => "blogger", 'module' => "Story" ); --- 790,794 ---- 'name' => "Blog Entry", 'link' => $_PSL['adminurl'] . "/storyAdmin.php", ! 'perm' => "bloggers", 'module' => "Story" ); |
From: Joe S. <joe...@us...> - 2004-10-01 18:28:15
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1666/phpslash-dev Modified Files: ChangeLog Log Message: changed url skin change from url to not set cookie unless cookie argument also set. Index: ChangeLog =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ChangeLog 16 Sep 2004 21:08:41 -0000 1.12 --- ChangeLog 1 Oct 2004 18:28:04 -0000 1.13 *************** *** 1,7 **** ! 2004-09-16 16:05 joestewart ! * include/modules/auth/authtypes/: slashAuth.class, ! slashAuthCR.class: updated non CR loginform.tpl to be used with ! other auth methods 2004-09-15 18:36 joestewart --- 1,99 ---- ! 2004-09-29 13:25 joestewart ! * include/templates/en/default/: emailNotifyComment.tpl, ! emailNotifySubmission.tpl: replace any .php3 extensions ! ! 2004-09-29 09:21 joestewart ! ! * CHANGES, include/modules/story/Story_base.class: php5 ! compatibility - check for string index for array ! ! 2004-09-24 15:15 joestewart ! ! * CHANGES, include/modules/author/Author.class: Author.class - new ! method - get_group_users ! ! 2004-09-22 16:01 joestewart ! ! * CHANGES, include/modules/auth/slashAuth.class, ! include/modules/auth/authtypes/slashAuthEGW.class: add eGroupware ! authentication ! ! 2004-09-21 06:18 joestewart ! ! * CHANGES: allow auto registration from external authentication ! ! 2004-09-21 06:18 joestewart ! ! * include/modules/auth/authtypes/: slashAuthHTTP.class, ! slashAuthPAM.class: add untested PAM and HTTP auth classes ! ! 2004-09-21 06:16 joestewart ! ! * include/modules/auth/authtypes/slashAuthSkel.class: add Skeleton ! auth class ! ! 2004-09-21 06:14 joestewart ! ! * include/modules/auth/slashAuth.class: allow auto registration ! from external authentication ! ! 2004-09-20 11:16 joestewart ! ! * CHANGES, include/class/jpcache/jpcache-config.php, ! include/class/jpcache/type/memcache.php, ! public_html/config-dist.php: Adding memcache support to jpcache ! ! 2004-09-18 10:46 joestewart ! ! * tables/0.8/slash-all.sql: Added Admin Blocks From Back-End ! ! 2004-09-18 09:46 joestewart ! ! * include/modules/admin/index.php: Added Admin module ! ! 2004-09-18 09:40 joestewart ! ! * CHANGES, include/modules/infolog/admin.php: Added Admin module ! ! 2004-09-18 09:35 joestewart ! ! * public_html/: config-dist.ini.php, config_setup.ini.php: Added ! Admin module ! ! 2004-09-18 09:30 joestewart ! ! * CHANGES, include/modules/admin/clearcache.php, ! include/modules/admin/configperms.php, ! include/modules/admin/systemdetails.php: Added Admin module ! ! 2004-09-17 10:30 joestewart ! ! * public_html/admin/index.php: updated non CR loginform.tpl to be ! used with other auth methods ! ! 2004-09-17 10:17 joestewart ! ! * tables/0.8/slash-all.sql, scripts/db_xfer.php.disabled: updated ! non CR loginform.tpl to be used with other auth methods ! ! 2004-09-16 16:08 joestewart ! ! * ChangeLog: updated non CR loginform.tpl to be used with other ! auth methods ! ! 2004-09-16 16:04 joestewart ! ! * CHANGES, include/templates/en/basic/loginform.tpl, ! include/modules/auth/slashAuth.class, ! include/modules/auth/authtypes/slashAuth.class, ! include/modules/auth/authtypes/slashAuthCR.class, ! public_html/config_setup.ini.php: updated non CR loginform.tpl to ! be used with other auth methods ! ! 2004-09-16 14:21 joestewart ! ! * CHANGES, include/modules/auth/index.php, public_html/login.php: ! added auth/index.php 2004-09-15 18:36 joestewart |
From: Joe S. <joe...@us...> - 2004-10-01 18:08:53
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30927/phpslash-dev Modified Files: CHANGES Log Message: changed url skin change from url to not set cookie unless cookie argument also set. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.108 retrieving revision 1.109 diff -C2 -d -r1.108 -r1.109 *** CHANGES 1 Oct 2004 18:07:21 -0000 1.108 --- CHANGES 1 Oct 2004 18:08:43 -0000 1.109 *************** *** 15,20 **** 2004-October 1 Joe Stewart <joe...@us... [W] - config-dist.php - changed skin change from url to not set ! cookie unless cookie argument also set. ! 2004-September 25 Joe Stewart <joe...@us... [B] - Story_base.class - php5 compatibility. test for string --- 15,21 ---- 2004-October 1 Joe Stewart <joe...@us... [W] - config-dist.php - changed skin change from url to not set ! cookie unless cookie argument also set. Change auth.type ! to allow for normal login form. ! 2004-September 25 Joe Stewart <joe...@us... [B] - Story_base.class - php5 compatibility. test for string |
From: Joe S. <joe...@us...> - 2004-10-01 18:08:53
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30927/phpslash-dev/public_html Modified Files: config-dist.php Log Message: changed url skin change from url to not set cookie unless cookie argument also set. Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** config-dist.php 1 Oct 2004 18:07:22 -0000 1.26 --- config-dist.php 1 Oct 2004 18:08:43 -0000 1.27 *************** *** 104,108 **** // auth.type -> which authorization type ! if(empty($_PSL['auth.type'])) { $_PSL['auth.type'] = "CR"; } --- 104,108 ---- // auth.type -> which authorization type ! if(!array_key_exists('auth.type', $_PSL)) { $_PSL['auth.type'] = "CR"; } |
From: Joe S. <joe...@us...> - 2004-10-01 18:07:33
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30676/phpslash-dev/public_html Modified Files: config-dist.php Log Message: changed url skin change from url to not set cookie unless cookie argument also set. Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** config-dist.php 20 Sep 2004 16:16:37 -0000 1.25 --- config-dist.php 1 Oct 2004 18:07:22 -0000 1.26 *************** *** 225,232 **** // comment out this block to disable setting theme in url if (!empty($HTTP_GET_VARS['skin'])) { ! if (empty($HTTP_GET_VARS['nocookie'])) { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie"); } else { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], ""); } } else { --- 225,232 ---- // comment out this block to disable setting theme in url if (!empty($HTTP_GET_VARS['skin'])) { ! if (empty($HTTP_GET_VARS['cookie'])) { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], ""); } else { ! $_PSL['templatedir'] = setSkinTpl($HTTP_GET_VARS['skin'], "cookie"); } } else { |