phpslash-commit Mailing List for phpSlash (Page 54)
Brought to you by:
joestewart,
nhruby
This list is closed, nobody may subscribe to it.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2003-04-09 15:07:26
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv7228/phpslash-ft/class Modified Files: Block_render_query.class Block_render_section.class Block_render_topic.class Block_render_url.class Log Message: reduce php warnings Index: Block_render_query.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_query.class,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Block_render_query.class 6 Feb 2003 17:16:42 -0000 1.13 --- Block_render_query.class 9 Apr 2003 15:07:19 -0000 1.14 *************** *** 41,44 **** --- 41,46 ---- function query( $block_info) { + $tpl = ''; + $stories = pslNew("Story_base"); Index: Block_render_section.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_section.class,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Block_render_section.class 14 Jan 2003 15:07:02 -0000 1.15 --- Block_render_section.class 9 Apr 2003 15:07:20 -0000 1.16 *************** *** 61,65 **** $db = pslNew("slashDB"); $mode = ''; ! $default_template = "sectionsblock.tpl"; $site_homesection = 'Home'; --- 61,66 ---- $db = pslNew("slashDB"); $mode = ''; ! $tpl = ''; ! $default_template = "sectionsblock.tpl"; $site_homesection = 'Home'; Index: Block_render_topic.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_topic.class,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Block_render_topic.class 14 Jan 2003 15:07:05 -0000 1.15 --- Block_render_topic.class 9 Apr 2003 15:07:20 -0000 1.16 *************** *** 36,39 **** --- 36,40 ---- $db = pslNew("slashDB"); $mode = ''; + $topic = ''; $default_template = "topicsblock.tpl"; Index: Block_render_url.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_url.class,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Block_render_url.class 5 Feb 2003 21:58:43 -0000 1.6 --- Block_render_url.class 9 Apr 2003 15:07:21 -0000 1.7 *************** *** 17,21 **** $url = $block_info["source_url"]; ! $errors = $block_info["block_options"]["errors"]; /* check for url structure before opening it (you don't want --- 17,24 ---- $url = $block_info["source_url"]; ! $errors = ''; ! if(!empty($block_info["block_options"]["errors"])) { ! $errors = $block_info["block_options"]["errors"]; ! } /* check for url structure before opening it (you don't want *************** *** 28,34 **** return; } ! ! $scheme = $urlParts[scheme]; ! $HostName = $urlParts[host]; if(empty($scheme)) { --- 31,42 ---- return; } ! $scheme = ''; ! if(!empty($urlParts['scheme'])) { ! $scheme = $urlParts['scheme']; ! } ! $HostName = ''; ! if(!empty($urlParts['host'])) { ! $HostName = $urlParts['host']; ! } if(empty($scheme)) { |
From: Joe S. <joe...@us...> - 2003-04-09 15:04:28
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv6015/phpslash-ft Modified Files: CHANGES Log Message: reduce php warnings Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.744 retrieving revision 1.745 diff -C2 -d -r1.744 -r1.745 *** CHANGES 4 Apr 2003 18:04:26 -0000 1.744 --- CHANGES 9 Apr 2003 15:04:22 -0000 1.745 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-April 9 9:00AM CST Joe Stewart <joe...@us...> + [W] - config-dist.php3, lib.resources.php, tz.class, functions.inc, + Story.class, slashAuthCR.class, profile.php3 - reduce php warnings. + 2003-April 4 12:00PM CST Joe Stewart <joe...@us...> [B] - slashAuthCR.class - reset auth user info ( url, etc.) when auth |
From: Joe S. <joe...@us...> - 2003-04-09 14:48:15
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv32028/phpslash-ft/class Modified Files: Story.class functions.inc lib.resources.php slashAuthCR.class tz.class Log Message: reduce php warnings Index: Story.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Story.class,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** Story.class 3 Apr 2003 20:38:48 -0000 1.53 --- Story.class 9 Apr 2003 14:48:08 -0000 1.54 *************** *** 512,519 **** 'ARROWS' => "" )); ! ! // if(array_key_exists('topic_id_ary', $stories_ary[$i])) { $topic_id_ary = $stories_ary[$i]['topic_id_ary']; ! // } $topic_name_ary = $stories_ary[$i]['topic_name_ary']; --- 512,520 ---- 'ARROWS' => "" )); ! ! $topic_id_ary = ''; ! if(array_key_exists('topic_id_ary', $stories_ary[$i])) { $topic_id_ary = $stories_ary[$i]['topic_id_ary']; ! } $topic_name_ary = $stories_ary[$i]['topic_name_ary']; Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/functions.inc,v retrieving revision 1.139 retrieving revision 1.140 diff -C2 -d -r1.139 -r1.140 *** functions.inc 25 Mar 2003 15:56:58 -0000 1.139 --- functions.inc 9 Apr 2003 14:48:09 -0000 1.140 *************** *** 580,584 **** 'SITE_SLOGAN' => $_PSL['site_slogan'], 'SITE_TITLE' => $_PSL['site_title'], - 'SECTION' => $section, 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], --- 580,583 ---- *************** *** 587,591 **** 'NAVBAR' => $navbarcontent, // Could be empty if NavBar is not required 'TOPICBAR' => $topicbarcontent, // Could be empty if TopicBar is not required - 'BLOCKS_COLUMN' => $allblocks, 'SKIN' => $_PSL['skin'] )); --- 586,589 ---- *************** *** 1595,1599 **** $dname = $_PSL[$default_options][$i]['name']; $dvalue = $_PSL[$default_options][$i]['value']; ! if(isset($options_ary[$dname])) { $dvalue = $options_ary[$dname]; $tpl_object->set_var(array( --- 1593,1597 ---- $dname = $_PSL[$default_options][$i]['name']; $dvalue = $_PSL[$default_options][$i]['value']; ! if(is_array($options_ary) && array_key_exists($dname, $options_ary)) { $dvalue = $options_ary[$dname]; $tpl_object->set_var(array( Index: lib.resources.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/lib.resources.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lib.resources.php 7 Feb 2003 17:28:21 -0000 1.5 --- lib.resources.php 9 Apr 2003 14:48:09 -0000 1.6 *************** *** 161,165 **** $urnPieces = parse_urn($repUrn); // debug("$fn:pieces",$urnPieces); ! if ('class' == $urnPieces['NID']) { $answer = $urnPieces['NSS']; } --- 161,165 ---- $urnPieces = parse_urn($repUrn); // debug("$fn:pieces",$urnPieces); ! if (!empty($urnPieces['NID']) && 'class' == $urnPieces['NID']) { $answer = $urnPieces['NSS']; } *************** *** 460,464 **** $fc = "$fn(\"$urn\",\"$key\")"; // debug($fc,"begin"); ! $answer = $GLOBALS['_PSL']['resources'][$urn][$key]; // debug("$fc:answer",$answer); return $answer; --- 460,467 ---- $fc = "$fn(\"$urn\",\"$key\")"; // debug($fc,"begin"); ! $answer = ''; ! if( !empty($GLOBALS['_PSL']['resources'][$urn][$key])) { ! $answer = $GLOBALS['_PSL']['resources'][$urn][$key]; ! } // debug("$fc:answer",$answer); return $answer; *************** *** 498,500 **** } ! ?> \ No newline at end of file --- 501,503 ---- } ! ?> Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashAuthCR.class,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** slashAuthCR.class 4 Apr 2003 18:04:30 -0000 1.48 --- slashAuthCR.class 9 Apr 2003 14:48:09 -0000 1.49 *************** *** 668,674 **** $group_name = $groups_ary[$group_id]; ! $childgroup_name = $groups_ary[$childgroup_id]; ! ! if( isset($this->auth['perm'][$childgroup_name])) { $this->auth['perm'][$group_name][$childgroup_name] = $this->auth['perm'][$childgroup_name]; } else { --- 668,680 ---- $group_name = $groups_ary[$group_id]; ! $childgroup_name = ''; ! if(!empty($groups_ary[$childgroup_id])) { ! $childgroup_name = $groups_ary[$childgroup_id]; ! } ! if(empty($this->auth['perm'])) { ! $this->auth['perm'] = array(); ! ! } ! if( array_key_exists($childgroup_name, $this->auth['perm'])) { $this->auth['perm'][$group_name][$childgroup_name] = $this->auth['perm'][$childgroup_name]; } else { Index: tz.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/tz.class,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tz.class 20 Feb 2003 21:15:34 -0000 1.5 --- tz.class 9 Apr 2003 14:48:09 -0000 1.6 *************** *** 48,52 **** */ var $show_format; ! /** * constructor --- 48,62 ---- */ var $show_format; ! ! /** ! * @var string file path to zone.tab file ! */ ! var $zone_file; ! ! /** ! * @var string file path to iso3166.tab file ! */ ! var $country_file; ! /** * constructor |
From: Joe S. <joe...@us...> - 2003-04-09 14:48:13
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv32028/phpslash-ft/public_html Modified Files: config-dist.php3 profile.php3 Log Message: reduce php warnings Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** config-dist.php3 3 Apr 2003 20:23:13 -0000 1.45 --- config-dist.php3 9 Apr 2003 14:48:08 -0000 1.46 *************** *** 261,265 **** $_PSL['jpcachedir'] = $_PSL['classdir'] . "/jpcache"; } ! // $JPCACHE_TYPE = "file"; // $JPCACHE_TYPE = "mysql"; --- 261,265 ---- $_PSL['jpcachedir'] = $_PSL['classdir'] . "/jpcache"; } ! // $JPCACHE_TYPE = "file"; // $JPCACHE_TYPE = "mysql"; *************** *** 302,309 **** // collection is executed. Please check // first if this works on your mySQL! ! // Standard jpcache functions // require $_PSL['jpcachedir']. "/jpcache-main.php"; addLibraryRequirement("jpcache",$_PSL['jpcachedir'] . "/jpcache-main.php"); // Type specific jpcache implementations if ('phplib' == $JPCACHE_TYPE) { --- 302,310 ---- // collection is executed. Please check // first if this works on your mySQL! ! $JPCACHE_VERSION = "2.0.0rc1"; // Standard jpcache functions // require $_PSL['jpcachedir']. "/jpcache-main.php"; addLibraryRequirement("jpcache",$_PSL['jpcachedir'] . "/jpcache-main.php"); + // Type specific jpcache implementations if ('phplib' == $JPCACHE_TYPE) { *************** *** 652,656 **** */ // to enable setting of time zone in URL ! set_TZ($HTTP_GET_VARS['TZ'],'cookie'); // to disable setting in URL and to set $_PSL['timezone']['name'] as the time zone // set_TZ(); --- 653,661 ---- */ // to enable setting of time zone in URL ! if(!empty($HTTP_GET_VARS['TZ'])) { ! set_TZ($HTTP_GET_VARS['TZ'],'cookie'); ! } else { ! set_TZ('','cookie'); ! } // to disable setting in URL and to set $_PSL['timezone']['name'] as the time zone // set_TZ(); Index: profile.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/profile.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** profile.php3 3 Apr 2003 20:08:45 -0000 1.12 --- profile.php3 9 Apr 2003 14:48:08 -0000 1.13 *************** *** 3,6 **** --- 3,7 ---- /* $Id$ */ + // don't cache this page $cachetimeout=-1; *************** *** 18,22 **** $author = pslNew("Author"); ! if ( $HTTP_GET_VARS['confirm']) { $confirm_success = $author->confirmAuthor($HTTP_GET_VARS['confirm']); } --- 19,23 ---- $author = pslNew("Author"); ! if ( array_key_exists('confirm', $HTTP_GET_VARS)) { $confirm_success = $author->confirmAuthor($HTTP_GET_VARS['confirm']); } *************** *** 31,34 **** --- 32,38 ---- if(!empty($HTTP_POST_VARS)) { $ary = clean($HTTP_POST_VARS, true); + } + if(!array_key_exists('submit', $ary)) { + $ary['submit'] = ''; } |
From: Joe S. <joe...@us...> - 2003-04-08 21:13:02
|
Update of /cvsroot/phpslash/phpslash-skins In directory sc8-pr-cvs1:/tmp/cvs-serv6525/phpslash-skins Modified Files: CHANGES Log Message: Added Peter Cruickshank's ShankZen theme. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/CHANGES,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CHANGES 3 Apr 2003 21:53:12 -0000 1.6 --- CHANGES 8 Apr 2003 21:12:26 -0000 1.7 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-April-8 4:00PM CST Joe Stewart <joe...@us...> + [FT] - Added Peter Cruickshank's ShankZen theme. + 2003-April-2 3:30PM CST Joe Stewart <joe...@us...> [FT] - added PostNuke SeaBreeze, PostNuke and PostNukeSilver themes. |
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen In directory sc8-pr-cvs1:/tmp/cvs-serv6525/phpslash-skins/include/templates/en/ShankZen Added Files: article-pf.tpl calendar.tpl comment.tpl commentDisplay.tpl commentFlat.tpl commentIndex.tpl commentNest.tpl commentSubmitForm.tpl fancybox.tpl index1col.tpl index2colleft.tpl index2colright.tpl index3col.tpl navbar.tpl pollDisplay.tpl pollResultPage.tpl searchPage.tpl skin.ini slashFoot.tpl slashHead.tpl story.tpl storyIndex.tpl submissionForm.tpl titlebar.tpl Log Message: Added Peter Cruickshank's ShankZen theme. --- NEW FILE: article-pf.tpl --- <!-- START article-pf.tpl --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>{PAGETITLE}: {TITLE}</title> <meta name="object" content="{XSITEOBJECT}"> <!-- Enter Your META Tags Above Here --> <style type="text/css"> body { font-family: Arial, Helvetica, sans-serif; background-color: #FFFFFF; color: #000000; } a, a:link, a:visited { color: blue; } h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; } #contribute { font-family: "Times New Roman", Times, serif; font-size: 12px; font-style: italic; } #textIntro { font-family: Arial, Helvetica, sans-serif; font-size: 14px; margin-top: 20px; } #textBody { font-family: Arial, Helvetica, sans-serif; font-size: 14px; margin-top: 40px; } #copyright { font-family: Arial, Helvetica, sans-serif; font-size: 12px; margin-top: 40px; } #copyrightSlash { font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: italic; margin-top: 20px; } </style> </head> <body> <h1>{TITLE}</h1> <div id="contribute"> Contributed by {NAME} on {DATEF} from the {DEPT} dept. </div> <!-- id="contribute" --> <div id="textIntro"> {INTRO_TEXT} </div> <!-- id="textIntro" --> <div id="textBody"> {BODY_TEXT} </div> <div id="copyright"> This article comes from {SITENAME}<br /> URL: <a href="{STORY_URL}">{STORY_URL}</a> </div> <!-- id="copyright" --> <div id="copyrightSlash"> {SITENAME} is powered by <a href="http://www.phpslash.org/">phpslash</a> - Copyright © 2001 and licensed under the <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> - No warranty is, has, or will be given in any way whatsoever to anyone. </div> <!-- id="copyrightSlash" --> <!-- END article-pf.tpl --> </body> </html> --- NEW FILE: calendar.tpl --- <!-- start calendar.tpl --> <table class="psl-calendar"> <tr> <th>S</th><th>M</th><th>T</th><th>W</th><th>T</th><th>F</th><th>S</th> </tr> <!-- BEGIN row --> <tr> <!-- customize this td block for regular cells --> <!-- BEGIN cell --> <td>{DATA}</td> <!-- END cell --> <!-- customize this td block for linked cells --> <!-- BEGIN linked_cell --> <td class="psl-linkedCell"><a href="{URL}">{LINKED_DATA}</a></td> <!-- END linked_cell --> </tr> <!-- END row --> </table> <!-- id="calendar" --> <!-- end calendar.tpl --> --- NEW FILE: comment.tpl --- <!-- START comment.tpl --> <div class="psl-block"> <form method="get" action="comment.php3"> Comment Style: <select name="mode" class="psl-text"> <!-- BEGIN each_mode --> <option value={MODE_VALUE} {MODE_SELECTED}>{MODE_TEXT}</option> <!-- END each_mode --> </select> Order: <select name="order"> <option value="ASC">Ascending</option> <option value="DESC">Descending</option> </select> <input type="hidden" name="story_id" value="{STORY_ID}" /> <input type="submit" name="submit" value="Change" class="psl-button" /> </form> </div> <!-- id="commentForm" --> {ADMIN} <form method="get" action="{ACTION_URL}"> {ALL_COMMENTS} </form> <!-- END comment.tpl --> --- NEW FILE: commentDisplay.tpl --- <!-- START commentDisplay.tpl --> <div class="psl-block"> <div> <span class="psl-commentSubject">{SUBJECT}</span> <span class="psl-commentID">[{COMMENT_ID}]</span><br /> <span class="psl-commentAuthor">by {NAME} {EMAIL_LINK_ON}{EMAIL}{EMAIL_LINK_OFF} on {TIME}</span> </div> <!-- id="commentHeader" --> <div id="commentText"> {COMMENT} </div> <!-- id="commentText" --> <!-- BEGIN admin_perm --> <div> [ <input type="checkbox" name="bulkdel_ary[]" value="{COMMENT_ID}" />Mark for Bulk Delete | <a href="{ROOTY}/comment.php3?submit=post&story_id={STORY_ID}&parent_id={COMMENT_ID}">Reply</a> | <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=delete">Delete</a> | <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=edit">Edit</a> | <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=markpend">Mark Pending</a> ]<br /> [ <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=unmarkpend">Unmark Pending</a> | <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=reparentupone">Reparent Up One Level</a> | <a href="{ADMINURL}/commentAdmin.php3?story_id={STORY_ID}&comment_id={COMMENT_ID}&parent_id={PARENT_ID}&action=reparentuptop">Reparent Up To Top</a> ] </div> <!-- END admin_perm --> <!-- BEGIN regular_perm --> <div> [ <a href="{ROOTY}/comment.php3?submit=post&story_id={STORY_ID}&parent_id={COMMENT_ID}">Reply</a> ] </div> <!-- END regular_perm --> </div> <!-- id="commentDisplay" --> <!-- END commentDisplay.tpl --> --- NEW FILE: commentFlat.tpl --- <!-- start commentFlat.tpl --> <!-- BEGIN row --> <a name="{COMMENT_ID}"></a> {COMMENT} <!-- END row --> <!-- end commentFlat.tpl --> --- NEW FILE: commentIndex.tpl --- <!-- start commentIndex.tpl --> <span class="psl-commentSubject"> <a href="{ROOTDIR}/comment.php3?submit=view&mode={MODE}&order={ORDER}&story_id={STORY_ID}&parent_id={PARENT_ID}">{SUBJECT}</a></span> <span class="psl-commentID">[{COMMENT_ID}]</span> <span class="psl-commentAuthor">by {NAME} on {TIME}</span> <!-- end commentIndex.tpl --> --- NEW FILE: commentNest.tpl --- <!-- start commentNest.tpl --> <!-- inside the nest --> <ul class="psl-commentNest"> <li>{COMMENT}</li> {THREAD} </ul> <!-- outside the nest --> <!-- end commentNest.tpl --> --- NEW FILE: commentSubmitForm.tpl --- <!-- start commentSubmitForm.tpl --> {PARENT} <div class="psl-block"> <h4>Write your comment here</h4> <form action="{ACTION_URL}" method="post"> <input type="hidden" name="story_id" value="{STORY_ID}" /> <input type="hidden" name="comment_id" value="{COMMENT_ID}" /> <input type="hidden" name="parent_id" value="{PARENT_ID}" /> <table border="0" cellpadding="1"> <tr> <td class="psl-descr">Name</td> <td><input type="text" name="name" size="50" value="{NAME}" /></td> </tr> <tr> <td class="psl-descr">Email</td> <td><input type="text" name="email" size="50" value="{EMAIL}" /></td> </tr> <tr> <td class="psl-descr">Subject</td> <td><input type="text" name="subject" size="50" value="{SUBJECT}" /></td> </tr> <tr> <td class="psl-descr">Comment</td> <td><textarea wrap="virtual" name="comment_text" rows="10" cols="50">{COMMENT}</textarea></td> </tr> <tr> <td class="psl-descr">Options</td> <td> <input type="radio" {PLAIN} name="content" value="plain" /> Plain Text <input type="radio" {HTML} name="content" value="html" /> HTML <input type="radio" {EXTTRANS} name="content" value="exttrans" /> Extended Translation<br /> <input type="checkbox" name="cookiebox" /> Save me in a cookie </td> </tr> <tr> <td colspan="2"> <input type="submit" name="submit" value="save" class="psl-button" /> <input type="submit" name="submit" value="preview" class="psl-button" /> </td> </tr> </table> </form> <ul> <li><span class="psl-descr">Plain Text:</span> A CRLF will be replaced by break <br> tag, all other allowable HTML is intact</li> <li><span class="psl-descr">HTML:</span> No formatting of any kind is done without explicitly being written in</li> <li><span class="psl-descr">Extended Translation:</span>Like Plain Text, and translates & -> &amp, < -> &lt; and > -> &gt;</li> </ul> <p><span class="psl-descr">Allowed HTML Tags:</span> {ALLOWED_TAGS}</p> <p class="psl-hint"> Problems regarding the comments section need to be sent to this site's <a href="mailto:{OWNER}">maintainer</a></p> </div> <!-- id="commentSubmitForm" --> <!-- END commentSubmitForm.tpl --> --- NEW FILE: fancybox.tpl --- <!-- START fancybox.tpl --> <div class="psl-block"> <h3>{LINK_OPEN}{TITLE}{LINK_CLOSE}</h3> {CONTENTS} </div> <!-- end: block --> <!-- END fancybox.tpl --> --- NEW FILE: index1col.tpl --- <!-- start index1col.tpl --> <table width="80%"> <tr> <!-- this TD block is the main story blocks column --> <td> <div id="bodyCenter"> {BREADCRUMB} {CENTER_BLOCK_COLUMN} </div> <div id="bodyContent"> {STORY_COLUMN} </div> </td> </tr> </table> <!-- end index1col.tpl --> --- NEW FILE: index2colleft.tpl --- <!-- start index2colleft.tpl --> <table width="80%"> <tr> <!-- this TD block is the left blocks column --> <td width="15%"> <div id="bodyLeft"> {LEFT_BLOCK_COLUMN} </div> </td> <!-- this TD block is the main story blocks column --> <td width="85%"> <div id="bodyCenter"> {BREADCRUMB} {CENTER_BLOCK_COLUMN} </div> <div id="bodyContent"> {STORY_COLUMN} </div> </td> </tr> </table> <!-- end index2colleft.tpl --> --- NEW FILE: index2colright.tpl --- <!-- start index2colright.tpl --> <table width="80%"> <tr> <!-- this TD block is the main story blocks column --> <td width="80%"> <div id="bodyCenter"> {BREADCRUMB} {CENTER_BLOCK_COLUMN} </div> <div id="bodyContent"> {STORY_COLUMN} </div> </td> <!-- This TD is the start of the right column --> <td width="20%"> <div id="bodyRight"> {RIGHT_BLOCK_COLUMN} </div> </td> </tr> </table> <!-- end index2colright.tpl --> --- NEW FILE: index3col.tpl --- <!-- start index3col.tpl --> <table width="80%"> <tr> <!-- this TD block is the left blocks column --> <td width="15%"> <div id="bodyLeft"> {LEFT_BLOCK_COLUMN} </div> </td> <!-- this TD block is the main story blocks column --> <td width="65%"> <div id="bodyCenter"> {BREADCRUMB} {CENTER_BLOCK_COLUMN} </div> <div id="bodyContent"> {STORY_COLUMN} </div> </td> <!-- This TD is the start of the right column --> <td width="20%"> <div id="bodyRight"> {RIGHT_BLOCK_COLUMN} </div> </td> </tr> </table> <!-- end index3col.tpl --> --- NEW FILE: navbar.tpl --- <!-- START: navbar.tpl --> <div class="psl-navBar"> <!-- BEGIN each_destination --> <a class="psl-navBar" href="{LINK_NAVBAR}">{LINK_NAVBAR_TEXT}</a> <!-- END each_destination --> </div> <!-- end: navBar --> <!-- END: navbar.tpl --> --- NEW FILE: pollDisplay.tpl --- <!-- START: pollDisplay.tpl --> <p class="psl-question">{QUESTION}</p> <form action="{ACTION_URL}" method="get"> <input type="hidden" name="question_id" value="{QUESTION_ID}" /> <input type="hidden" name="submit" value="vote" /> <!-- BEGIN each_choice --> <input type="radio" name="answer_id" value="{ANSWER_ID}">{ANSWER}<br /> <!-- END each_choice --> <input type="submit" value="Vote" class="psl-button"> </form> [ <a href="{ROOTURL}/poll.php3?submit=viewresults&question_id={QUESTION_ID}">Results</a> | <a href="{ROOTURL}/poll.php3">Polls</a> ] [ Comments: <span class="psl-commentCount">{COMMENT_COUNT}</span> | Votes: <span class="psl-voteCount">{VOTE_COUNT} </span>] <!-- END: pollDisplay.tpl --> --- NEW FILE: pollResultPage.tpl --- <!-- start pollResultPage.tpl --> {TITLEBAR} <div id="pollResult"> {RESULT} <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} </div> <!-- id="pollResult" --> <!-- end pollResultPage.tpl --> --- NEW FILE: searchPage.tpl --- <!-- Start searchPage.tpl --> <div class="psl-block"> <form action="{ACTION_URL}" method="get"> <select name="topic_id"> <!-- BEGIN each_topic --> <option value="{TOPIC_VALUE}" {TOPIC_SELECTED}>{TOPIC_TEXT}</option> <!-- END each_topic --> </select> <select name="section_id"> <!-- BEGIN each_section --> <option value="{SECTION_VALUE}" {SECTION_SELECTED}>{SECTION_TEXT}</option> <!-- END each_section --> </select> <select name="author_id"> <!-- BEGIN each_author --> <option value="{AUTHOR_VALUE}" {AUTHOR_SELECTED}>{AUTHOR_TEXT}</option> <!-- END each_author --> </select> <input type="text" name="query" size="30" value="{QUERY_STRING}" class="psl-text" /> <input type="submit" class="psl-button" value="Search" /> <br /> <input type="checkbox" name="use_comments"> Search comment text </form> </div> <img src="{TOPIC_IMAGE_SRC}" alt="{TOPIC_ALT_TEXT}" /> <div class="psl-block"> <h4>Search Results: {TOPIC_ALT_TEXT}</h4> <!-- BEGIN previous_match --> <p class="psl-prevMatch"><a href="{PREV_MATCHES_URL}">{PREV_COUNT} previous matches...</a></p> <!-- END previous_match --> <table> <tr> <th>Title</th> <th>Author</th> <th>Date</th> <th>Comments</th> </tr> <!-- BEGIN each_match --> <tr> <td class="psl-storyTitle"><a href="{STORY_URL}">{STORY_TITLE}</a></td> <td class="psl-author"><a href="{AUTHOR_URL}">{AUTHOR_NAME}</a></td> <td>{DATE}</td> <td class="psl-commentCount">{COMMENTCOUNT}</td> </tr> <!-- END each_match --> </table> <!-- BEGIN next_match --> <p class="psl-nextMatch"><a href="{MORE_MATCHES_URL}">remaining matches...</a></p> <!-- END next_match --> <!-- BEGIN no_match --> <p class="psl-noMatches">No Matches found to your query</p> <!-- END no_match --> </div> <!-- id="searchPage" --> <!-- End searchPage.tpl --> --- NEW FILE: skin.ini --- ;; Name of parent skin ;; $Id: skin.ini,v 1.1 2003/04/08 21:12:33 joestewart Exp $ skin.parent = "basic" --- NEW FILE: slashFoot.tpl --- <!-- START slashfoot.tpl --> <table id="footer" border=0 width=80%> <tr><td> {NAVBAR} <p class="psl-copyright">This site is powered by <a href="http://www.phpslash.org/">phpslash</a> - Copyright © 1998 - 2003 and licensed under the <a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> - No warranty is, has, or will be given in any way whatsoever to anyone.</p> <p style="text-align:right"><a href="#top">Go 2 Top</a></p> </td></tr> </table> <!-- end: footer --> <!-- BlueRobot was here a long time ago. --> </body> </html> <!-- END slashFoot.tpl --> --- NEW FILE: slashHead.tpl --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <!-- START slashHead.tpl --> <html> <head> <title>{SITE_NAME} :: {SITETITLE}</title> <!-- {SECTION} :: --> <!-- theme design: Peter Cruickshank < in...@cu... > --> <!-- Enter Your Desired META Tags Below Here --> <!-- This Meta Tag is Defined In Each Page By Setting The Variable $xsiteobject = "HomePage"; to the page type HomePage, Glossary, Info, etc.. --> <meta name="object" content="{XSITEOBJECT}" /> <!-- Enter Your META Tags Above Here --> <!-- BEGIN each_metatag --> <meta name="{METANAME}" content="{METADESCRIPTION}" /> <!-- END each_metatag --> <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> <style type="text/css" media="screen">@import "{ROOTDIR}/styles/{SKIN}_ext.css";</style> </head> <body> <a name="top"> </a> <table id="header" width=80%> <tr><td> <div style="vertical-align:bottom"> <div class="psl-logo"> <a href="{ROOTDIR}"><img src="{IMAGEDIR}/topics/topicphpslash.gif" alt="{SITE_NAME}" width="100" height="40"/></a> </div> <div class="psl-title"> {SITETITLE} </div> </div> <!-- Search box <div class="psl-search"> <form method="get" action="{SEARCH_ACTION_URL}"> <input type="text" name=query value="" size="15" class="psl-text" /> <input type="submit" value="Search" class="psl-button" /> <input type="hidden" name="topic_id" value="" /> <input type="hidden" name="section_id" value="" /> <input type="hidden" name="author_id" value="" /> </form> </div> end: search --> <!-- TOPICBAR --> </td></tr> <tr><td> {NAVBAR} </td></tr> </table> <!-- end: header --> <!-- END slashHead.tpl --> --- NEW FILE: story.tpl --- <!-- START story.tpl --> <div class="psl-block"> <!-- added so that display by article.php3 has outline --> {TITLEBAR} <span class="psl-additional"> <h5>Topics</h5> <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"><img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" title="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> <hr /> Also under<br /> <!-- END alsotext --> <!-- BEGIN row --> <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </span> <!-- id="storyAdditional" --> <small><a href="{URL}">{NAME}</a>:{DEPT}:{DATEF}</small> <p class="psl-intro"> {INTRO_TEXT} </p> {BODY_TEXT} <div>{ARROWS}</div> </div> <!-- END story.tpl --> --- NEW FILE: storyIndex.tpl --- <!-- start storyIndex.tpl --> <!-- BEGIN each_story --> {THESTORY} <div class="psl-block"> <!-- has to be separate block because story has to sit in its own --> <a class="psl-more" href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> <a class="psl-more" href="{ROOTDIR}/article.php3?story_id={STORY_ID}">[{COMMENT}]</a> </div><!-- end: block --> <!-- END each_story --> <!-- end storyIndex.tpl --> --- NEW FILE: submissionForm.tpl --- <!-- Start submissionForm.tpl --> <div class="psl-block"> <form action="{ACTION_URL}" method="post"> <input type="hidden" name="submission_id" value="{SUBMISSION_ID}" /> <p>Got a juicy nugget? Fill out this form and our trained squirrels will frown at it, poke at it, and hopefully post it.</p> <p>If you have an editorial, an idea for an editorial, a bug, a question or anything besides a simple story, I would prefer it if you <a href="mailto:{SITEOWNER}"> mail me</a>. The opposite is true too: Please use this form if you have a story. Resist the temptation to email me directly - this form organizes things intelligently and makes my life much easier, please use it!</p> <table> <tr> <td class="psl-descr">Your Name</td> <td><input type="text" name="name" value="{NAME}" size="50" /></td> </tr> <tr> <td class="psl-descr">Your Email or Homepage<br /><p class="psl-hint">(blank = anonymous)</p></td> <td><input type="text" name="email" value="{EMAIL}" size="50" /></td> </tr> <tr> <td class="psl-descr">Subject</td> <td><input type="name" name="subject" value="{SUBJECT}" size="50" /></td> </tr> <tr> <td class="psl-descr">Topic</td> <td> <select size="4" multiple="multiple" name="topic_id_ary[]"> <!-- BEGIN topic_row --> <option value="{TOPIC_ID}" {SELECTED}>{TOPIC_NAME}</option> <!-- END topic_row --> </select> </td> </tr> <tr> <td class="psl-descr">Section</td> <td> <select size="4" multiple="multiple" name="section_id_ary[]"> <!-- BEGIN section_row --> <option value="{SECTION_ID}" {SELECTED}>{SECTION_NAME}</option> <!-- END section_row --> </select> </td> </tr> <tr> <td><p class="psl-descr">The Scoop</p><p class="psl-hint">(Dont forget to include a URL!)</p></td> <td><textarea class="psl-text" wrap="virtual" cols="50" rows="12" name="story">{STORY}</textarea></td> </tr> <tr> <td class="psl-descr">New Submittal Options:</td> <td> <input type="radio" checked="checked" name="content" value="plain" /> Plain Text <input type="radio" name="content" value="html" /> HTML <input type="radio" name="content" value="exttrans" /> Extended Translation </td> </tr> <tr> <td> </td> <td> <p><input type="checkbox" name="cookie" value="yes" {CHECKED} />Save Cookie with your name.</p> <input type="submit" class="psl-button" name="submit" value="save" /> <input type="submit" class="psl-button" name="submit" value="preview" /> </td> </tr> </table> </form> </div> <!-- id="submissionForm" --> <!-- submissionForm.tpl --> --- NEW FILE: titlebar.tpl --- <!-- START titlebar.tpl --> <h3>{TITLE}</h3> <!-- END titlebar.tpl --> |
From: Joe S. <joe...@us...> - 2003-04-08 21:12:34
|
Update of /cvsroot/phpslash/phpslash-skins/public_html/styles In directory sc8-pr-cvs1:/tmp/cvs-serv6525/phpslash-skins/public_html/styles Added Files: ShankZen.css ShankZen_ext.css Log Message: Added Peter Cruickshank's ShankZen theme. --- NEW FILE: ShankZen.css --- /* theme design: Peter Cruickshank < in...@cu... > */ /* duplicated tags for NN4 */ A, P, BODY, TD, TH, UL, LI { color: #333; font-family: verdana, arial, helvetica, sans-serif; font-style: normal; font-weight: normal; font-size: 90%; } .ahem { color: #333; font-family: verdana, arial, helvetica, sans-serif; font-style: normal; font-weight: normal; font-size: 80%; } /* INLINE TEXT -------------------------------------------------------- */ /* H1 is not used - but could be used for page title if no graphics are available */ h1 { font-family: "Times New Roman", Times, serif; color: #c06; font-size: 180%; font-weight: normal; text-align: left; vertical-align: middle; } /* H2 (also not used) */ h2 { font-family: "Times New Roman", Times, serif; color: #c06; font-size: 135% ; font-weight: normal; text-align: left; vertical-align: middle; } /* Panel title body */ h3 { font-family: verdana, arial, helvetica, sans-serif; color: #333; font-weight: normal; font-size: 100%; } /* Title within body - same size as regular text */ h4 { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; color: #333; font-size: 90%; } /* Subtitle within body - same size as regular text */ h5 { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 90%; color: #333; } h6 { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 85%; color: #333; } /* Semantics */ .psl-error { border: 1px thin #c06; font-weight: bold; color: #c06; } .psl-descr { font-weight: bold; } .psl-hint { color: #666; font-weight: normal; font-size: 80%; } /* Block text elements ------------------------------- */ address { font-style: normal; /* padding-left: 5px; */ margin: 2px 2px 3px; } /* VARIANTS ON LINKS ------------------------------- */ span.psl-menuCurrent { color: black; display: block; /* One per line */ margin: 0px; padding: 2px; /* Set text into color to line up with P */ font-weight : bold; } a.psl-subMenu { color: black; display: block; /* One per line */ margin: 0px; padding: 2px; /* Set text into color to line up with P */ font-weight : normal; font-size: 90%; } a.psl-subMenu:visited {color:black;} a.psl-subMenu:hover { background-color:white; } /* tables -------------------------------------------------------------- */ /* table { width: 97%; margin: 2px; } */ tr.psl-firstRow { background-color: white; } tr.psl-secondRow { background-color: #eee; } td { vertical-align : top; } th { vertical-align : bottom; background-color: #eee; font-weight: bold; text-align : left; } table.psl-calendar { font-size: 80%; text-align: center; } table.psl-calendar th { text-align: center; } /* HEADER ------------------------------------------------------------------------------------------------------- */ #header { background-color : white; margin: 0px 5px 10px; /*border: 1px dotted #ccc; */ } #header .psl-logo { float: left; display: inline; margin: 3px; } #header .psl-title { float: right; display: inline; font-weight : bold; vertical-align : bottom; } #header .psl-search { float: right; display: inline; } #header .psl-topicBar { float: right; display: inline; margin: 0px 20px; vertical-align: top; } /* --------- NavBar */ #header .psl-navBar { background: #ccc; text-align: right; line-height : 200%; margin: 5px; font-size:100%; } #header a.psl-navBar { padding : 0.1em; /* border: 1px none black;*/ color : white; /*border : thin solid #ccffff; */ font : bold; } #header a.psl-navBar:hover, #header a.psl-navBar:visited:hover { background: #c06; /* border : thin solid black; */ color : #333; } #header a.psl-navBar:visited { color : Black; } #header psl-topicBar a:hover { /* Used with graphics so we dont want color rollover */ background: transparent; } /* BODY: CENTER BLOCKS ---------------------------------------------------------------------------------------------------- */ /* These are elements that go in the #body layer */ #bodyCenter { /* background-color: #EEFFDD; */ /* padding: 2px 2px 2px 10px; */ } /* All the content boxes belong to the block class. */ #bodyCenter .psl-block { /* border:1px solid transparent; /* #ccc; */ background-color:white; text-align: left; /* margin: 0px 0px 7px; */ width: 380px; /* for NN */ } #bodyCenter h3 { font-family: "Times New Roman", Times, serif; font-size: 180%; color: #c06; margin: 0px 0px 5px; } #bodyCenter h4 { margin: 0px 0px 5px; } #bodyCenter .psl-breadcrumb { /* A variant on block */ text-align: left; } /* BODY: CONTENT ---------------------------------------------------------------------------------------------------- */ #bodyContent { } #bodyContent h3 { font-family: "Times New Roman", Times, serif; font-size: 180%; color: #333; margin: 0px 0px 5px; } #bodyContent .psl-block { text-align: left; background-color:white; width: 380px; /* for NN */ } #bodyContent hr { color: #ccc; width: 75%; } #bodyContent .psl-additional { /* Used for story topic links */ border:1px solid #ccc; width: 5em; margin: 5px; padding: 2px; float: right; text-align: right; background-color:white; } #bodyContent .psl-arrows { color: black; } #bodyContent .psl-intro { font-size: 100%; } #bodyContent .psl-more { font-weight: bold; } #bodyContent .psl-must { color: #c06; } /** * The following three classes are also for * the template "commentIndex.tpl" */ #bodyContent .psl-commentSubject { font-weight: bold; } #bodyContent .psl-commentID { font-style: italic; } #bodyContent .psl-commentAuthor { font-style: italic; } #bodyContent .psl-commentNest { list-style-type: none; } /* BODY: LEFT COLUMN ----------------------------------------------------------------------------------------- */ #bodyLeft { } #bodyLeft .psl-block { width: 160px; color: black; } #bodyLeft th { background-color: #FFDDFF; } /* BODY: RIGHT COLUMN ----------------------------------------------------------------------------------------- */ #bodyRight { padding: 2px; } #bodyRight .psl-block { border:1px solid #ccc; background-color:white; width: 200px; /* margin: 0px 0px 5px; /* empty space after each block */ } #bodyRight a { font-weight: normal; } /* FOOTER ---------------------------------------------------------------------------------------------------- */ #footer { } #footer .psl-navBar { /* border:1px solid black; */ background: White; text-align: center; font-size: 90%; } #footer P.psl-copyright { text-align: center; font-size: 80%; } --- NEW FILE: ShankZen_ext.css --- /* theme design: Peter Cruickshank < in...@cu... > */ /* This is for elements that actively screw up NN4's layout */ /* GENERAL -------------------------------------------------------------------- */ .ahem { display: none; } body { background-color:white; margin: 20px; /* padding: 10px; */ } img { border: 0px; } p { margin: 2px 2px 3px; } /* ---------- Links within menus */ a { color:#333; font-weight: bold; text-decoration:none; } a:link {color: Black;} a:visited {color:#333;} a:hover {text-decoration: underline;} /* Menu and navigation */ a.psl-menu { color: black; display: block; /* One per line */ margin: 0px; padding: 2px; /* Set text into color to line up with P */ font-weight : normal; } a.psl-menu:visited {color:black;} a.psl-menu:hover { background-color:#ccc; } /* Pseudo button - looks dire */ a.psl-button { color: white; text-transform: capitalize; background: #c06; padding: 2px; border: thin solid black; } a.psl-button:hover { background: #CC6699; text-decoration: none; } /* FORM ELEMENTS ------------------------------------------------------- */ input, textarea { color: black; font-size: 90%; } input.psl-button { background: #c06; border: thin solid black; color: white; font-weight : bold; text-transform: capitalize; } input.psl-button:hover { background: #c69; } textarea.psl-text, input.psl-text { border: thin solid #333; } select { color: black; border: thin solid #333; font-size: 90%; } option:hover { background: #fef; } /* HEADER ---------------------------------------------------------------------------------------------------- */ /* TopicBar - see home.css */ #header DIV.psl-navBar { border-top: thin solid #c06; } #header a.psl-navBar:hover, #header a.psl-navBar:visited:hover { background: white; color : #333; text-decoration: none; } #header a.psl-navBar:visited { color : white; } /* BODY: CENTER BLOCKS ---------------------------------------------------------------------------------------------------- */ /* These are elements that go in the #body layer */ #bodyCenter { /* background-color: #EEFFDD; */ padding: 2px 2px 2px 10px; } /* All the content boxes belong to the block class. */ #bodyCenter .psl-block { background-color:white; border-bottom: 4px double #333; text-align: left; margin: 0px 0px 7px; width: 99%; /* For story block */ } #bodyCenter .psl-block>p {margin:5px;} #bodyContent .psl-block>p+p {text-indent:1em;} #bodyCenter h3 { margin: 0px 0px 5px; } #bodyCenter h4 { margin: 0px 0px 5px; background-color: #ccc; } #bodyCenter table { width: 97%; margin: 1px; } #bodyCenter .psl-breadcrumb { /* A variant on block */ /* width: 95%; */ text-align: left; border:2px solid #ccc; margin: 0px 0px 5px; } /* BODY: CONTENT ---------------------------------------------------------------------------------------------------- */ #bodyContent { padding: 2px 2px 2px 10px; } #bodyContent .psl-block { border-bottom:1px solid #333; margin: 0px 0px 7px; /* to make up for 1px border */ /* padding: 3px; No padding so we get a solid title bar */ text-align: left; background-color:white; width: 99%; /* For story block */ } #bodyContent .psl-block>p {margin:5px;} #bodyContent .psl-block>p+p {text-indent:1em;} #bodyContent h3 { margin: 0px 0px 5px; } #bodyContent h4 { background-color: #ccc; margin: 0px 0px 5px; } #bodyContent h5 { margin: 0px 0px 5px; } #bodyContent hr { color: #ccc; width: 75%; } #bodyContent table { width: 97%; margin: 1px; } #bodyContent .psl-additional { /* Used for story topic links */ border:1px solid #ccc; width: 5em; margin: 5px; padding: 2px; float: right; text-align: right; background-color:white; } #bodyContent .psl-arrows { margin-top: 20px; margin-bottom: 20px; } /* #bodyContent .psl-intro { } #bodyContent .psl-more { } #bodyContent .psl-must { } */ /** * The following three classes are also for * the template "commentIndex.tpl" #bodyContent .psl-commentSubject { font-weight: bold; } #bodyContent .psl-commentID { font-style: italic; } #bodyContent .psl-commentAuthor { font-style: italic; } #bodyContent .psl-commentNest { list-style-type: none; } */ /* BODY: LEFT COLUMN ----------------------------------------------------------------------------------------- */ #bodyLeft { padding: 2px 2px 2px 10px; } #bodyLeft .psl-block { margin: 0px 0px 5px; /* empty space after each block */ background-color: #ccc; border:1px solid transparent; width: 99%; /* background-color:white; */ text-align: left; } #bodyLeft h3 { background-color: #333; margin: 0px; color: white; font-weight: bold; padding: 2px; /* Set text into color to line up with P */ } #bodyLeft h4 { background-color: #f90; margin: 0px; padding: 2px; /* Set text into color to line up with P */ } #bodyLeft table { width: 97%; margin: 1px; } #bodyLeft th { background-color: #FED; } #bodyLeft a { font-weight: normal; } #bodyLeft a.psl-menu:hover { background-color:#c06; /* Hover?? */ } /* BODY: RIGHT COLUMN ----------------------------------------------------------------------------------------- */ #bodyRight { padding: 2px; } #bodyRight .psl-block { border:1px solid #ccc; width: 99%; margin: 0px 0px 5px; /* empty space after each block */ } #bodyRight h3 { background-color: #ccc; margin: 0px; /* Whitespace under title, colour reaching til side */ padding: 2px; /* Set text into color to line up with P */ } #bodyRight h4 { background-color: #ccc; margin: 0px; /* Whitespace under title */ padding: 2px; /* Set text into color to line up with P */ } #bodyRight table { width: 97%; margin: 1px; } #bodyRight th { background-color: #eee; } /* FOOTER ---------------------------------------------------------------------------------------------------- */ #footer { /* border: 1px dotted #ccc; */ margin: 10px 5px 0px; border-top: thin solid #c06; } #footer A.psl-navBar { border:1px none black; } #footer A.psl-navBar:hover { color: #c06; } #footer A.psl-navBar:visited { color: #333; /*Black; */ } #footer A.psl-navBar:visited:hover { color: #c06; } |
From: Joe S. <joe...@us...> - 2003-04-08 21:08:33
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen In directory sc8-pr-cvs1:/tmp/cvs-serv4711/ShankZen Log Message: Directory /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen added to the repository |
From: Joe S. <joe...@us...> - 2003-04-04 18:04:35
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv18214/phpslash-ft/class Modified Files: slashAuthCR.class Log Message: reset auth user info ( url, etc.) when auth times out. Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashAuthCR.class,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** slashAuthCR.class 27 Mar 2003 17:09:42 -0000 1.47 --- slashAuthCR.class 4 Apr 2003 18:04:30 -0000 1.48 *************** *** 221,232 **** } } else if ($this->nobody) { - $uid = $this->auth["uid"] = "nobody"; loadClass('Author'); ! $aid = Author::getId($uid); ! $this->auth["perm"] = $this->get_userperms($aid); ! $this->auth["dname"] = Author::getRealName($aid); ! $this->auth["uname"] = Author::getName($aid); ! $this->auth["email"] = ''; ! return $aid; } --- 221,256 ---- } } else if ($this->nobody) { loadClass('Author'); ! $author_ary = Author::getAuthor(array('author_name' => 'nobody')); ! $this->auth["perm"] = $this->get_userperms($author_ary['author_id']); ! $this->auth["dname"] = $author_ary['author_realname']; ! $this->auth["uname"] = $author_ary['author_name']; ! $this->auth["email"] = $author_ary['email']; ! $this->auth["url"] = $author_ary['url']; ! ! $this->auth['preferences'] = ''; ! // get rid of session variables and use the db author record. ! if($this->sess->is_registered("comment_name")) { ! $this->sess->unregister("comment_name"); ! $_SESSION['comment_name'] = null; ! unset($GLOBALS['comment_name']); ! } ! if($this->sess->is_registered("comment_email")) { ! $this->sess->unregister("comment_email"); ! $_SESSION['comment_email'] = null; ! unset($GLOBALS['comment_email']); ! } ! if($this->sess->is_registered("comment_url")) { ! $this->sess->unregister("comment_url"); ! $_SESSION['comment_url'] = null; ! unset($GLOBALS['comment_url']); ! } ! ! // expire cache for this session ! if(function_exists('jpcache_gc')) { ! jpcache_gc('string', "-slashSess-" . $sess->id, "100"); ! } ! ! return $author_ary['author_id']; } *************** *** 241,249 **** if(!empty($this->auth['uid']) && ($this->auth['uid'] == 'nobody' || $this->auth['uid'] == 'form')){ ! $uid = $this->auth["uid"] = "nobody"; ! loadClass('Author'); ! $aid = Author::getId($uid); ! $this->auth["perm"] = $this->get_userperms($aid); ! return $aid; } return false; --- 265,277 ---- if(!empty($this->auth['uid']) && ($this->auth['uid'] == 'nobody' || $this->auth['uid'] == 'form')){ ! loadClass('Author'); ! $author_ary = Author::getAuthor(array('author_name' => 'nobody')); ! $this->auth["perm"] = $this->get_userperms($author_ary['author_id']); ! $this->auth["dname"] = $author_ary['author_realname']; ! $this->auth["uname"] = $author_ary['author_name']; ! $this->auth["email"] = $author_ary['email']; ! $this->auth["url"] = $author_ary['url']; ! ! return $author_ary['author_id']; } return false; *************** *** 279,287 **** $this->auth["uname"] = $username; } else if ($this->nobody) { ## provides for "default login cancel" ! $uid = $this->auth["uid"] = "nobody"; ! loadClass('Author'); ! $aid = Author::getId($uid); ! $this->auth["perm"] = $this->get_userperms($aid); ! return $aid; } --- 307,319 ---- $this->auth["uname"] = $username; } else if ($this->nobody) { ## provides for "default login cancel" ! loadClass('Author'); ! $author_ary = Author::getAuthor(array('author_name' => 'nobody')); ! $this->auth["perm"] = $this->get_userperms($author_ary['author_id']); ! $this->auth["dname"] = $author_ary['author_realname']; ! $this->auth["uname"] = $author_ary['author_name']; ! $this->auth["email"] = $author_ary['email']; ! $this->auth["url"] = $author_ary['url']; ! ! return $author_ary['author_id']; } *************** *** 590,594 **** AND psl_author_group_lut.author_id = '$uid' "; ! // debug("q", $q); $this->db->query($q); --- 622,626 ---- AND psl_author_group_lut.author_id = '$uid' "; ! // debug("q", $q); $this->db->query($q); *************** *** 628,632 **** WHERE psl_group_group_lut.group_id = psl_author_group_lut.group_id AND psl_author_group_lut.author_id = '$uid' "; ! // debug("q", $q); $this->db->query($q); --- 660,664 ---- WHERE psl_group_group_lut.group_id = psl_author_group_lut.group_id AND psl_author_group_lut.author_id = '$uid' "; ! // debug("q", $q); $this->db->query($q); |
From: Joe S. <joe...@us...> - 2003-04-04 18:04:35
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv18214/phpslash-ft Modified Files: CHANGES Log Message: reset auth user info ( url, etc.) when auth times out. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.743 retrieving revision 1.744 diff -C2 -d -r1.743 -r1.744 *** CHANGES 4 Apr 2003 18:02:32 -0000 1.743 --- CHANGES 4 Apr 2003 18:04:26 -0000 1.744 *************** *** 14,17 **** --- 14,21 ---- 2003-April 4 12:00PM CST Joe Stewart <joe...@us...> + [B] - slashAuthCR.class - reset auth user info ( url, etc.) when auth + times out. + + 2003-April 4 12:00PM CST Joe Stewart <joe...@us...> [D] - Moved CHANGES to doc/changeHistory/CHANGES-07-711 and reset CHANGES file. |
From: Joe S. <joe...@us...> - 2003-04-04 18:02:40
|
Update of /cvsroot/phpslash/phpslash-ft/doc/changeHistory In directory sc8-pr-cvs1:/tmp/cvs-serv17511/phpslash-ft/doc/changeHistory Added Files: CHANGES-07-711 Log Message: Moved CHANGES to doc/changeHistory/CHANGES-07-711 and reset CHANGES file --- NEW FILE: CHANGES-07-711 --- $Id: CHANGES-07-711,v 1.1 2003/04/04 18:02:36 joestewart Exp $ Changes Legend... B - Bugfix F - Feature Added E - Experimental T - Template changed D - Documentation S - Database Schema R - RELEASE W - General Work on something 9 - Removal of something (kill -9 :) 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7.1. - VERSION, config-dist.php3, config.php3, about.tpl - bumped version for release. 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> [B] - Story.class - corrected "Also filed under" problem on the article page. about.php3, article.php3, comment.php3, errordocument.php3, glossary.php3, login.php3, mailinglist.php3, poll.php3, profile.php3, search.php3, submission.php3, authorAdmin.php3, blockAdmin.php3, commentAdmin.php3, glossaryAdmin.php3, groupAdmin.php3, infologAdmin.php3, mailinglistAdmin.php3, pollAdmin.php3, sectionAdmin.php3, storyAdmin.php3, submissionAdmin.php3, topicAdmin.php3, variableAdmin.php3 - Added SKIN placeholder. 2003-March-27 12:30PM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7.1RC1. - VERSION, config-dist.php3, config.php3 - bumped version for release. 2003-March-27 11:00AM CST Joe Stewart <joe...@us...> [B] - md5.js, basic/loginformCR.tpl - bug [ 710158 ] md5.js broken with passwords using special chars - Corrected by using a different md5.js. The setcookie form field was missing in logintrue form for the basic template set. 2003-March-27 11:00AM CST Joe Stewart <joe...@us...> [B] - login.php3, slashAuthCR.class - corrected unregistering comment session variables with register_globals off. 2003-March-27 9:30AM CST Joe Stewart <joe...@us...> [F] - Story_admin.class, Block.class - limit story deletion to allowed sections. This should address RFE [ 513264 ] Controlled access to sections. 2003-March-27 9:00AM CST Joe Stewart <joe...@us...> [F] - Block.class, Block_admin.class, blockAdmin.php3 - limit block admin. to allowed sections. Story_admin.class - break out of while if any section is available. 2003-March-26 2:00PM CST Joe Stewart <joe...@us...> [W] - Story_admin.class - list only stories in sections that the user has permission. 2003-March-26 12:00PM CST Joe Stewart <joe...@us...> [B] - Author.class, en.php3 - reject saving a new author if the username already exists. Story_admin.class - correct placement of displayOption call. Story_base.class - saving a story no longer deletes all previous section choices and then inserts new. It should only affect those sections for which the user has permissions. 2003-March-26 8:30AM CST Joe Stewart <joe...@us...> [W] - slashAuthCR.class, login.php3 - remove saved comment session variables when logging in and logging out. 2003-March-25 3:30PM CST Joe Stewart <joe...@us...> [W] - Story_base.class, storyAdmin.php3, en.php3 - return a message when story is saved successfully. 2003-March-25 2:30PM CST Joe Stewart <joe...@us...> [BT] - Mailinglist.class, en.php3 - Doesn't send empty emails. config-dist.php3 - match menu priv. with admin script privileges. login.php3 - anonymous user info loaded when logging out. slashAuthCR.class - squashed bug that prevented child groups from limiting sections correctly. Author.class - new method - getAuthor returns all fields of a author record except password. Submission.class, Story_admin.class, storyAdmin.php3 - limit posting to allowed sections. Block_render_fmsearch.class, fmblock.tpl - tobozo's updated Freshmeat xml parsing block. 2003-March-25 11:00AM CST Joe Stewart <joe...@us...> [B] - NavBar.class - getNavBar now correctly uses the menu array "perm" entry for public users as well as logged in users. submission.php3, config.php3 - require "submissionNew" permission to make submissions. 2003-March-25 10:00AM CST Joe Stewart <joe...@us...> [W] - functions.inc - replaced "section" argument to getHeader with an array argument that the contents will be parsed in the template with the array key used as a template placeholder. getFooter now has similar capabilities also. 2003-March-20 3:00PM CST Joe Stewart <joe...@us...> [W] - slash-all.sql, 65_to_7.sql - removed storyeditor privileges from story group. 2003-March-20 12:00PM CST Joe Stewart <joe...@us...> [W] - Comment.class - When saving a comment, the user_id is always saved. 2003-March-19 3:00PM CST Joe Stewart <joe...@us...> [B] - Poll.class - getCurrent() should have been this->getCurrent(). 2003-March-19 2:00PM CST Joe Stewart <joe...@us...> [B] - mailinglist.php3 - change ary to POST vars. glossary.php3 - Translate page title. cronmail.php3 - Luis' revised cronmail that calls the Mailinglist class method. profile.php3 - check to see if jpcache is enabled. 2003-March-18 10:00AM CST Joe Stewart <joe...@us...> [B] - Mailinglist.class - correct "message" typo. 2003-March-11 3:30PM CST Joe Stewart <joe...@us...> [B] - slashTemplate.class - removed exception to allow array call to find inherited templates correctly. 2003-March-11 12:30PM CST Joe Stewart <joe...@us...> [W] - config-dist.php3, config.php3, functions.inc, Author.class, Block_render_skin.class - Changed templatedir.default to templatedir.main. slashTemplate.class - Changed structure of set_file to make recursive calls to set the correct path to the template file. 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. 2003-March-07 2:00PM CST Joe Stewart <joe...@us...> [B] - slash-all.sql - set answer_id's for the initial poll. 2003-March-07 8:30AM CST Joe Stewart <joe...@us...> [B] - slashAuthCR.class, Author.class, login.php3 - correctly set and delete the "user_info" cookie. 2003-March-06 3:00PM CST Joe Stewart <joe...@us...> [W] - comment.php3, commentAdmin.php3 - expire poll cache for comment updates too. 2003-March-06 12:00PM CST Joe Stewart <joe...@us...> [W] - functions.inc - setSkinTpl - better exception support for setting skins. 2003-March-06 11:00AM CST Joe Stewart <joe...@us...> [B] - config-dist.php3, config.php3, 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.php3, functions.inc, Comment.class - added SKIN and IMAGEURL placeholders to comment submit form, footer, and index page. 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> [BT] - search.php3, searchPage.tpl - use getTitle and TITLEBAR template placeholder. 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> [D] - Moved CHANGES to doc/changeHistory/CHANGES-065-070 and reset CHANGES file. |
From: Joe S. <joe...@us...> - 2003-04-04 18:02:40
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv17511/phpslash-ft Modified Files: CHANGES Log Message: Moved CHANGES to doc/changeHistory/CHANGES-07-711 and reset CHANGES file Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.742 retrieving revision 1.743 diff -C2 -d -r1.742 -r1.743 *** CHANGES 3 Apr 2003 20:23:06 -0000 1.742 --- CHANGES 4 Apr 2003 18:02:32 -0000 1.743 *************** *** 13,166 **** 9 - Removal of something (kill -9 :) ! 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> ! [R] - Released phpSlash 0.7.1. ! - VERSION, config-dist.php3, config.php3, about.tpl - bumped version ! for release. ! ! 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> ! [B] - Story.class - corrected "Also filed under" problem on the article ! page. ! about.php3, article.php3, comment.php3, errordocument.php3, ! glossary.php3, login.php3, mailinglist.php3, poll.php3, profile.php3, ! search.php3, submission.php3, authorAdmin.php3, blockAdmin.php3, ! commentAdmin.php3, glossaryAdmin.php3, groupAdmin.php3, ! infologAdmin.php3, mailinglistAdmin.php3, pollAdmin.php3, ! sectionAdmin.php3, storyAdmin.php3, submissionAdmin.php3, ! topicAdmin.php3, variableAdmin.php3 - Added SKIN placeholder. ! ! 2003-March-27 12:30PM CST Joe Stewart <joe...@us...> ! [R] - Released phpSlash 0.7.1RC1. ! - VERSION, config-dist.php3, config.php3 - bumped version for release. ! ! 2003-March-27 11:00AM CST Joe Stewart <joe...@us...> ! [B] - md5.js, basic/loginformCR.tpl - bug [ 710158 ] md5.js broken with ! passwords using special chars - Corrected by using a different md5.js. ! The setcookie form field was missing in logintrue form for the basic ! template set. ! ! 2003-March-27 11:00AM CST Joe Stewart <joe...@us...> ! [B] - login.php3, slashAuthCR.class - corrected unregistering comment session ! variables with register_globals off. ! ! 2003-March-27 9:30AM CST Joe Stewart <joe...@us...> ! [F] - Story_admin.class, Block.class - limit story deletion to allowed ! sections. This should address RFE [ 513264 ] Controlled access to ! sections. ! ! 2003-March-27 9:00AM CST Joe Stewart <joe...@us...> ! [F] - Block.class, Block_admin.class, blockAdmin.php3 - limit block admin. ! to allowed sections. ! Story_admin.class - break out of while if any section is available. ! ! 2003-March-26 2:00PM CST Joe Stewart <joe...@us...> ! [W] - Story_admin.class - list only stories in sections that the user has ! permission. ! ! 2003-March-26 12:00PM CST Joe Stewart <joe...@us...> ! [B] - Author.class, en.php3 - reject saving a new author if the username ! already exists. ! Story_admin.class - correct placement of displayOption call. ! Story_base.class - saving a story no longer deletes all previous section ! choices and then inserts new. It should only affect those sections for ! which the user has permissions. ! ! 2003-March-26 8:30AM CST Joe Stewart <joe...@us...> ! [W] - slashAuthCR.class, login.php3 - remove saved comment session variables ! when logging in and logging out. ! ! 2003-March-25 3:30PM CST Joe Stewart <joe...@us...> ! [W] - Story_base.class, storyAdmin.php3, en.php3 - return a message when ! story is saved successfully. ! ! 2003-March-25 2:30PM CST Joe Stewart <joe...@us...> ! [BT] - Mailinglist.class, en.php3 - Doesn't send empty emails. ! config-dist.php3 - match menu priv. with admin script privileges. ! login.php3 - anonymous user info loaded when logging out. ! slashAuthCR.class - squashed bug that prevented child groups from ! limiting sections correctly. ! Author.class - new method - getAuthor returns all fields of a author ! record except password. ! Submission.class, Story_admin.class, storyAdmin.php3 - limit posting ! to allowed sections. ! Block_render_fmsearch.class, fmblock.tpl - tobozo's updated Freshmeat ! xml parsing block. ! ! 2003-March-25 11:00AM CST Joe Stewart <joe...@us...> ! [B] - NavBar.class - getNavBar now correctly uses the menu array "perm" entry ! for public users as well as logged in users. ! submission.php3, config.php3 - require "submissionNew" permission to ! make submissions. ! ! 2003-March-25 10:00AM CST Joe Stewart <joe...@us...> ! [W] - functions.inc - replaced "section" argument to getHeader with an array ! argument that the contents will be parsed in the template with the array ! key used as a template placeholder. getFooter now has similar ! capabilities also. ! ! 2003-March-20 3:00PM CST Joe Stewart <joe...@us...> ! [W] - slash-all.sql, 65_to_7.sql - removed storyeditor privileges from story ! group. ! ! 2003-March-20 12:00PM CST Joe Stewart <joe...@us...> ! [W] - Comment.class - When saving a comment, the user_id is always saved. ! ! 2003-March-19 3:00PM CST Joe Stewart <joe...@us...> ! [B] - Poll.class - getCurrent() should have been this->getCurrent(). ! ! 2003-March-19 2:00PM CST Joe Stewart <joe...@us...> ! [B] - mailinglist.php3 - change ary to POST vars. ! glossary.php3 - Translate page title. ! cronmail.php3 - Luis' revised cronmail that calls the Mailinglist class ! method. ! profile.php3 - check to see if jpcache is enabled. ! ! 2003-March-18 10:00AM CST Joe Stewart <joe...@us...> ! [B] - Mailinglist.class - correct "message" typo. ! ! 2003-March-11 3:30PM CST Joe Stewart <joe...@us...> ! [B] - slashTemplate.class - removed exception to allow array call to find ! inherited templates correctly. ! ! 2003-March-11 12:30PM CST Joe Stewart <joe...@us...> ! [W] - config-dist.php3, config.php3, functions.inc, Author.class, ! Block_render_skin.class - Changed templatedir.default to templatedir.main. ! slashTemplate.class - Changed structure of set_file to make recursive ! calls to set the correct path to the template file. ! ! 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. ! ! 2003-March-07 2:00PM CST Joe Stewart <joe...@us...> ! [B] - slash-all.sql - set answer_id's for the initial poll. ! ! 2003-March-07 8:30AM CST Joe Stewart <joe...@us...> ! [B] - slashAuthCR.class, Author.class, login.php3 - correctly set and delete ! the "user_info" cookie. ! ! 2003-March-06 3:00PM CST Joe Stewart <joe...@us...> ! [W] - comment.php3, commentAdmin.php3 - expire poll cache for comment updates ! too. ! ! 2003-March-06 12:00PM CST Joe Stewart <joe...@us...> ! [W] - functions.inc - setSkinTpl - better exception support for setting skins. ! ! 2003-March-06 11:00AM CST Joe Stewart <joe...@us...> ! [B] - config-dist.php3, config.php3, 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.php3, functions.inc, Comment.class - added SKIN and IMAGEURL ! placeholders to comment submit form, footer, and index page. ! ! 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> ! [BT] - search.php3, searchPage.tpl - use getTitle and TITLEBAR template ! placeholder. ! ! 2003-March-03 11:00AM CST Joe Stewart <joe...@us...> ! [D] - Moved CHANGES to doc/changeHistory/CHANGES-065-070 and reset CHANGES file. --- 13,17 ---- 9 - Removal of something (kill -9 :) ! 2003-April 4 12:00PM CST Joe Stewart <joe...@us...> ! [D] - Moved CHANGES to doc/changeHistory/CHANGES-07-711 and reset CHANGES ! file. |
From: Joe S. <joe...@us...> - 2003-04-03 20:45:19
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv3212/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: Release phpSlash 0.7.1 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** about.tpl 3 Apr 2003 20:23:15 -0000 1.15 --- about.tpl 3 Apr 2003 20:45:13 -0000 1.16 *************** *** 18,21 **** --- 18,26 ---- <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.1.tar.gz">V0.7.1</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> + <TD>April 3, 2003</TD> + </TR> + <TR> + <TD>V0.7</TD> + <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> <TD>February 28, 2003</TD> </TR> |
From: Joe S. <joe...@us...> - 2003-04-03 20:45:17
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv3212/phpslash-ft/public_html/templates/en/basic Modified Files: about.tpl Log Message: Release phpSlash 0.7.1 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/about.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** about.tpl 3 Apr 2003 20:23:15 -0000 1.6 --- about.tpl 3 Apr 2003 20:45:12 -0000 1.7 *************** *** 8,14 **** <th>Author</th> <th>Date</th> ! </tr> <tr> <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.1.tar.gz?download">V0.7.1</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> <td>February 28, 2003</td> --- 8,19 ---- <th>Author</th> <th>Date</th> ! </tr> <tr> <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.1.tar.gz?download">V0.7.1</a></td> + <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> + <td>April 3, 2003</td> + </tr> + <tr> + <td>V0.7</td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> <td>February 28, 2003</td> |
From: Joe S. <joe...@us...> - 2003-04-03 20:38:52
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv355/phpslash-ft/class Modified Files: Story.class Log Message: SKIN placeholder Index: Story.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Story.class,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** Story.class 3 Apr 2003 20:11:08 -0000 1.52 --- Story.class 3 Apr 2003 20:38:48 -0000 1.53 *************** *** 329,336 **** /* We only need to set the block the first time we use it, beacuse all the variables stay there -nh */ ! if ($this->template->get_var("row") == "") { $this->template->set_block('template',"alsotext","alsoblock"); $this->template->set_block('template',"row","rows"); ! } $titlebar = getTitleBar("100%", $ary[title]); --- 329,336 ---- /* We only need to set the block the first time we use it, beacuse all the variables stay there -nh */ ! // if ($this->template->get_var("row") == "") { $this->template->set_block('template',"alsotext","alsoblock"); $this->template->set_block('template',"row","rows"); ! // } $titlebar = getTitleBar("100%", $ary[title]); |
From: Joe S. <joe...@us...> - 2003-04-03 20:23:49
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv26080/phpslash-ft/public_html Modified Files: config-dist.php3 config.php3 Log Message: Release phpSlash 0.7.1 Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** config-dist.php3 27 Mar 2003 18:37:40 -0000 1.44 --- config-dist.php3 3 Apr 2003 20:23:13 -0000 1.45 *************** *** 74,78 **** $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7.1RC1'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 74,78 ---- $_PSL = parse_ini_file($psl_inifile, TRUE); ! $_PSL['version'] = '0.7.1'; /**** START DEBUGGING - Comment or delete this for production! ****/ Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.187 retrieving revision 1.188 diff -C2 -d -r1.187 -r1.188 *** config.php3 27 Mar 2003 18:37:40 -0000 1.187 --- config.php3 3 Apr 2003 20:23:14 -0000 1.188 *************** *** 60,64 **** } ! $_PSL['version'] = '0.7.1RC1'; /**** START DEBUGGING - Comment or delete this for production! ****/ --- 60,64 ---- } ! $_PSL['version'] = '0.7.1'; /**** START DEBUGGING - Comment or delete this for production! ****/ |
From: Joe S. <joe...@us...> - 2003-04-03 20:23:49
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv26080/phpslash-ft/public_html/templates/en/basic Modified Files: about.tpl Log Message: Release phpSlash 0.7.1 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/about.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** about.tpl 28 Feb 2003 15:39:25 -0000 1.5 --- about.tpl 3 Apr 2003 20:23:15 -0000 1.6 *************** *** 10,14 **** </tr> <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz?download">V0.7</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> <td>February 28, 2003</td> --- 10,14 ---- </tr> <tr> ! <td><a href="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.1.tar.gz?download">V0.7.1</a></td> <td><a href="http://www.phpslash.org">PHPSlash Development Team</a></td> <td>February 28, 2003</td> |
From: Joe S. <joe...@us...> - 2003-04-03 20:23:49
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv26080/phpslash-ft Modified Files: CHANGES VERSION Log Message: Release phpSlash 0.7.1 Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.741 retrieving revision 1.742 diff -C2 -d -r1.741 -r1.742 *** CHANGES 3 Apr 2003 20:08:36 -0000 1.741 --- CHANGES 3 Apr 2003 20:23:06 -0000 1.742 *************** *** 14,17 **** --- 14,22 ---- 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> + [R] - Released phpSlash 0.7.1. + - VERSION, config-dist.php3, config.php3, about.tpl - bumped version + for release. + + 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> [B] - Story.class - corrected "Also filed under" problem on the article page. Index: VERSION =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/VERSION,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** VERSION 27 Mar 2003 18:37:54 -0000 1.17 --- VERSION 3 Apr 2003 20:23:12 -0000 1.18 *************** *** 1 **** ! 0.7.1RC1 --- 1 ---- ! 0.7.1 |
From: Joe S. <joe...@us...> - 2003-04-03 20:23:49
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv26080/phpslash-ft/public_html/templates/en/default Modified Files: about.tpl Log Message: Release phpSlash 0.7.1 Index: about.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default/about.tpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** about.tpl 28 Feb 2003 15:42:37 -0000 1.14 --- about.tpl 3 Apr 2003 20:23:15 -0000 1.15 *************** *** 16,20 **** </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.tar.gz">V0.7</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> <TD>February 28, 2003</TD> --- 16,20 ---- </TR> <TR> ! <TD><A HREF="http://prdownloads.sourceforge.net/phpslash/phpslash-0.7.1.tar.gz">V0.7.1</A></TD> <TD><A HREF="http://www.phpslash.org">PHPSlash Development Team</A></TD> <TD>February 28, 2003</TD> |
From: Joe S. <joe...@us...> - 2003-04-03 20:14:35
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/admin In directory sc8-pr-cvs1:/tmp/cvs-serv22282/phpslash-ft/public_html/admin Modified Files: authorAdmin.php3 blockAdmin.php3 commentAdmin.php3 glossaryAdmin.php3 groupAdmin.php3 infologAdmin.php3 mailinglistAdmin.php3 pollAdmin.php3 sectionAdmin.php3 submissionAdmin.php3 topicAdmin.php3 variableAdmin.php3 Log Message: SKIN placeholder Index: authorAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/authorAdmin.php3,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** authorAdmin.php3 14 Jan 2003 18:20:35 -0000 1.15 --- authorAdmin.php3 3 Apr 2003 20:14:15 -0000 1.16 *************** *** 136,139 **** --- 136,140 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: blockAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/blockAdmin.php3,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** blockAdmin.php3 27 Mar 2003 15:03:24 -0000 1.17 --- blockAdmin.php3 3 Apr 2003 20:14:16 -0000 1.18 *************** *** 150,153 **** --- 150,154 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: commentAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/commentAdmin.php3,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** commentAdmin.php3 6 Mar 2003 21:03:40 -0000 1.18 --- commentAdmin.php3 3 Apr 2003 20:14:18 -0000 1.19 *************** *** 198,201 **** --- 198,202 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: glossaryAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/glossaryAdmin.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** glossaryAdmin.php3 22 Jan 2003 19:51:12 -0000 1.8 --- glossaryAdmin.php3 3 Apr 2003 20:14:19 -0000 1.9 *************** *** 133,136 **** --- 133,137 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: groupAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/groupAdmin.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** groupAdmin.php3 20 Dec 2002 22:17:32 -0000 1.9 --- groupAdmin.php3 3 Apr 2003 20:14:20 -0000 1.10 *************** *** 217,220 **** --- 217,221 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: infologAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/infologAdmin.php3,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** infologAdmin.php3 20 Dec 2002 22:17:32 -0000 1.10 --- infologAdmin.php3 3 Apr 2003 20:14:21 -0000 1.11 *************** *** 98,101 **** --- 98,102 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: mailinglistAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/mailinglistAdmin.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mailinglistAdmin.php3 20 Dec 2002 22:17:32 -0000 1.9 --- mailinglistAdmin.php3 3 Apr 2003 20:14:21 -0000 1.10 *************** *** 123,126 **** --- 123,127 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: pollAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/pollAdmin.php3,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** pollAdmin.php3 20 Dec 2002 22:17:32 -0000 1.15 --- pollAdmin.php3 3 Apr 2003 20:14:22 -0000 1.16 *************** *** 131,134 **** --- 131,135 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: sectionAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/sectionAdmin.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** sectionAdmin.php3 23 Jan 2003 02:48:02 -0000 1.11 --- sectionAdmin.php3 3 Apr 2003 20:14:22 -0000 1.12 *************** *** 126,129 **** --- 126,130 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: submissionAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/submissionAdmin.php3,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** submissionAdmin.php3 23 Jan 2003 02:48:02 -0000 1.13 --- submissionAdmin.php3 3 Apr 2003 20:14:23 -0000 1.14 *************** *** 178,181 **** --- 178,182 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: topicAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/topicAdmin.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** topicAdmin.php3 20 Dec 2002 22:17:32 -0000 1.8 --- topicAdmin.php3 3 Apr 2003 20:14:23 -0000 1.9 *************** *** 137,140 **** --- 137,141 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: variableAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/variableAdmin.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** variableAdmin.php3 20 Dec 2002 22:17:32 -0000 1.9 --- variableAdmin.php3 3 Apr 2003 20:14:24 -0000 1.10 *************** *** 136,139 **** --- 136,140 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], |
From: Joe S. <joe...@us...> - 2003-04-03 20:11:14
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv20941/phpslash-ft/class Modified Files: Story.class Log Message: SKIN placeholder Index: Story.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/Story.class,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** Story.class 23 Jan 2003 13:38:44 -0000 1.51 --- Story.class 3 Apr 2003 20:11:08 -0000 1.52 *************** *** 312,322 **** } - /* We only need to set the block the first time we use it, beacuse - all the variables stay there -nh */ - if ($this->template->get_var("row") == "") { - $this->template->set_block('template',"alsotext","alsoblock"); - $this->template->set_block('template',"row","rows"); - } - $related = ""; $arrows = ""; --- 312,315 ---- *************** *** 332,335 **** --- 325,335 ---- } $arrows = $this->getNextPrev($story_id, $argv_ary); + } + + /* We only need to set the block the first time we use it, beacuse + all the variables stay there -nh */ + if ($this->template->get_var("row") == "") { + $this->template->set_block('template',"alsotext","alsoblock"); + $this->template->set_block('template',"row","rows"); } |
From: Joe S. <joe...@us...> - 2003-04-03 20:09:12
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv19830/phpslash-ft Modified Files: CHANGES Log Message: SKIN placeholder Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.740 retrieving revision 1.741 diff -C2 -d -r1.740 -r1.741 *** CHANGES 27 Mar 2003 18:37:39 -0000 1.740 --- CHANGES 3 Apr 2003 20:08:36 -0000 1.741 *************** *** 13,16 **** --- 13,27 ---- 9 - Removal of something (kill -9 :) + 2003-April 3 2:00PM CST Joe Stewart <joe...@us...> + [B] - Story.class - corrected "Also filed under" problem on the article + page. + about.php3, article.php3, comment.php3, errordocument.php3, + glossary.php3, login.php3, mailinglist.php3, poll.php3, profile.php3, + search.php3, submission.php3, authorAdmin.php3, blockAdmin.php3, + commentAdmin.php3, glossaryAdmin.php3, groupAdmin.php3, + infologAdmin.php3, mailinglistAdmin.php3, pollAdmin.php3, + sectionAdmin.php3, storyAdmin.php3, submissionAdmin.php3, + topicAdmin.php3, variableAdmin.php3 - Added SKIN placeholder. + 2003-March-27 12:30PM CST Joe Stewart <joe...@us...> [R] - Released phpSlash 0.7.1RC1. |
From: Joe S. <joe...@us...> - 2003-04-03 20:09:06
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv19830/phpslash-ft/public_html Modified Files: about.php3 article.php3 comment.php3 errordocument.php3 glossary.php3 login.php3 mailinglist.php3 poll.php3 profile.php3 search.php3 submission.php3 Log Message: SKIN placeholder Index: about.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/about.php3,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** about.php3 20 Dec 2002 22:17:30 -0000 1.21 --- about.php3 3 Apr 2003 20:08:38 -0000 1.22 *************** *** 54,57 **** --- 54,58 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], Index: article.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/article.php3,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** article.php3 8 Jan 2003 16:42:44 -0000 1.74 --- article.php3 3 Apr 2003 20:08:39 -0000 1.75 *************** *** 108,112 **** $t->set_var(array( 'STORY_URL' => $_PSL['rooturl']."/article.php3?story_id=".$story_id, ! 'SITENAME' => $_PSL['site_name'], 'PAGETITLE' => $pagetitle, 'TITLE' => $ttitle, --- 108,112 ---- $t->set_var(array( 'STORY_URL' => $_PSL['rooturl']."/article.php3?story_id=".$story_id, ! 'SITENAME' => $_PSL['site_name'], 'PAGETITLE' => $pagetitle, 'TITLE' => $ttitle, *************** *** 200,203 **** --- 200,204 ---- $t->set_var(array( + 'SKIN' => $_PSL['skin'], 'TITLE' => $title, 'BREADCRUMB' => $breadcrumb, Index: comment.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/comment.php3,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** comment.php3 6 Mar 2003 21:03:40 -0000 1.32 --- comment.php3 3 Apr 2003 20:08:44 -0000 1.33 *************** *** 9,13 **** // page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm")); - $auth->login_if(!$perm->have_perm('commentView')); --- 9,12 ---- *************** *** 18,26 **** $submit = $HTTP_POST_VARS['submit']; $ary = clean($HTTP_POST_VARS, true); ! $name = $ary['name']; $email = $ary['email']; $url = $ary['url']; ! if(!empty($ary['name'])) { $comment_name = $ary['name']; --- 17,25 ---- $submit = $HTTP_POST_VARS['submit']; $ary = clean($HTTP_POST_VARS, true); ! $name = $ary['name']; $email = $ary['email']; $url = $ary['url']; ! if(!empty($ary['name'])) { $comment_name = $ary['name']; *************** *** 32,44 **** $sess->register("comment_url"); } ! ! $cmt = pslNew("Comment",$ary); ! switch( $submit) { case "preview": ! ! // when you are previewing a comment before submitting $ary['ip'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']); /* add the poster's IP addr */ --- 31,43 ---- $sess->register("comment_url"); } ! ! $cmt = pslNew("Comment",$ary); ! switch( $submit) { case "preview": ! ! // when you are previewing a comment before submitting $ary['ip'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']); /* add the poster's IP addr */ *************** *** 46,50 **** $content .= $cmt->getForm($ary); break; ! case "save": case "Submit Comment": --- 45,49 ---- $content .= $cmt->getForm($ary); break; ! case "save": case "Submit Comment": *************** *** 65,69 **** jpcache_gc('string', "-story_id-" . $ary['story_id'], "100"); jpcache_gc('string', "-question_id-" . $ary['story_id'], "100"); ! } $content .= getMessage($cmt->getMessage()); $comment_ary = $cmt->getCommentArray($id); --- 64,68 ---- jpcache_gc('string', "-story_id-" . $ary['story_id'], "100"); jpcache_gc('string', "-question_id-" . $ary['story_id'], "100"); ! } $content .= getMessage($cmt->getMessage()); $comment_ary = $cmt->getCommentArray($id); *************** *** 78,87 **** $content .= getError($cmt->getMessage()); } ! header("Location: $return_link"); break; } ! } elseif (!empty($HTTP_GET_VARS['submit'])) { --- 77,86 ---- $content .= getError($cmt->getMessage()); } ! header("Location: $return_link"); break; } ! } elseif (!empty($HTTP_GET_VARS['submit'])) { *************** *** 92,99 **** $ary['parent_id'] = 0; } ! if ($sess->is_registered("comment_name")) { $ary['name'] = $comment_name; ! $ary['email'] = $comment_email; } --- 91,98 ---- $ary['parent_id'] = 0; } ! if ($sess->is_registered("comment_name")) { $ary['name'] = $comment_name; ! $ary['email'] = $comment_email; } *************** *** 211,214 **** --- 210,214 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: errordocument.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/errordocument.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** errordocument.php3 20 Dec 2002 22:17:31 -0000 1.6 --- errordocument.php3 3 Apr 2003 20:08:44 -0000 1.7 *************** *** 83,86 **** --- 83,87 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], Index: glossary.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/glossary.php3,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** glossary.php3 19 Mar 2003 20:06:11 -0000 1.19 --- glossary.php3 3 Apr 2003 20:08:44 -0000 1.20 *************** *** 81,84 **** --- 81,85 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: login.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/login.php3,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** login.php3 27 Mar 2003 17:09:41 -0000 1.42 --- login.php3 3 Apr 2003 20:08:45 -0000 1.43 *************** *** 142,145 **** --- 142,146 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'ROOTDIR' => $_PSL['rooturl'], 'IMAGEDIR' => $_PSL['imageurl'], Index: mailinglist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/mailinglist.php3,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** mailinglist.php3 19 Mar 2003 20:06:09 -0000 1.13 --- mailinglist.php3 3 Apr 2003 20:08:45 -0000 1.14 *************** *** 98,101 **** --- 98,102 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: poll.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/poll.php3,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** poll.php3 20 Dec 2002 22:17:31 -0000 1.22 --- poll.php3 3 Apr 2003 20:08:45 -0000 1.23 *************** *** 138,141 **** --- 138,142 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: profile.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/profile.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** profile.php3 19 Mar 2003 20:07:34 -0000 1.11 --- profile.php3 3 Apr 2003 20:08:45 -0000 1.12 *************** *** 109,112 **** --- 109,113 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: search.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/search.php3,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** search.php3 3 Mar 2003 16:58:54 -0000 1.55 --- search.php3 3 Apr 2003 20:08:46 -0000 1.56 *************** *** 489,492 **** --- 489,493 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], Index: submission.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/submission.php3,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** submission.php3 25 Mar 2003 17:03:27 -0000 1.21 --- submission.php3 3 Apr 2003 20:08:47 -0000 1.22 *************** *** 7,12 **** $xsiteobject = pslgetText("Submission");#Defines The META TAG Page Type - // page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm")); - $auth->login_if(!$perm->have_perm('submissionNew')); --- 7,10 ---- *************** *** 124,127 **** --- 122,126 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], |
From: Joe S. <joe...@us...> - 2003-04-03 20:08:58
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/admin In directory sc8-pr-cvs1:/tmp/cvs-serv19830/phpslash-ft/public_html/admin Modified Files: storyAdmin.php3 Log Message: SKIN placeholder Index: storyAdmin.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/storyAdmin.php3,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** storyAdmin.php3 25 Mar 2003 21:27:09 -0000 1.20 --- storyAdmin.php3 3 Apr 2003 20:08:47 -0000 1.21 *************** *** 167,170 **** --- 167,171 ---- $template->set_var(array( + 'SKIN' => $_PSL['skin'], 'QUERYSTRING' => $QUERY_STRING, 'ROOTDIR' => $_PSL['rooturl'], |
From: Joe S. <joe...@us...> - 2003-03-27 18:40:10
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv1906/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: bug [ 710158 ] md5.js broken with passwords using special chars Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** phpslash.sgml 26 Mar 2003 14:40:39 -0000 1.69 --- phpslash.sgml 27 Mar 2003 18:40:04 -0000 1.70 *************** *** 967,970 **** --- 967,971 ---- <tscreen><code> fmblock.tpl + loginformCR.tpl searchPage.tpl </code></tscreen> |