phpfastnews-commits Mailing List for phpfastnews a forum,news,article,review (Page 6)
Status: Beta
Brought to you by:
hdwebdev
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(44) |
Sep
|
Oct
|
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(41) |
Mar
(21) |
Apr
(28) |
May
(3) |
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ken W. <hdw...@us...> - 2001-08-19 21:57:09
|
Update of /cvsroot/phpfastnews/phpfastnews/sql In directory usw-pr-cvs1:/tmp/cvs-serv21270/sql Modified Files: mysql_phpfastnews.sql Log Message: new stuff in the sql file more sideblock functions prepend_news.php changed theme to "slash2" |
From: Ken W. <hdw...@us...> - 2001-08-19 21:57:09
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv21270 Modified Files: news_index.php Log Message: new stuff in the sql file more sideblock functions prepend_news.php changed theme to "slash2" |
From: Ken W. <hdw...@us...> - 2001-08-18 18:28:33
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv21269/lib Modified Files: append.php debug.php news.inc prepend.php-dist prepend_news.php-dist sideblocks.inc Log Message: |
From: Ken W. <hdw...@us...> - 2001-08-18 18:28:33
|
Update of /cvsroot/phpfastnews/phpfastnews/lib/phplib In directory usw-pr-cvs1:/tmp/cvs-serv21269/lib/phplib Modified Files: template.inc Log Message: |
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv21269 Modified Files: article_index.php article_reply.php article_view.php forum_index.php forum_newthread.php forum_posts.php forum_reply.php forum_view.php news_index.php news_reply.php news_view.php user_login.php user_register.php Log Message: |
From: Ken W. <hdw...@us...> - 2001-08-18 18:23:29
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv20606/lib Modified Files: debug.php Log Message: |
From: Ken W. <hdw...@us...> - 2001-08-12 16:27:19
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv18478 Modified Files: article_index.php Log Message: exit |
From: Ken W. <hdw...@us...> - 2001-08-12 16:16:53
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv16475 Modified Files: article_index.php Log Message: test Index: article_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/article_index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** article_index.php 2001/08/12 15:56:51 1.3 --- article_index.php 2001/08/12 16:16:50 1.4 *************** *** 10,14 **** /* All code by Ken Williams (HDwebdev) unless otherwise noted */ /* This is an alpha test release -- not intended for live site use */ ! $pg = "article_index"; require('lib/prepend.php'); --- 10,14 ---- /* All code by Ken Williams (HDwebdev) unless otherwise noted */ /* This is an alpha test release -- not intended for live site use */ ! // blah $pg = "article_index"; require('lib/prepend.php'); |
From: Ken W. <hdw...@us...> - 2001-08-12 16:10:04
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv15253 Modified Files: news_index.php Log Message: test ***** Bogus filespec: news_index.php |
From: Ken W. <hdw...@us...> - 2001-08-12 15:59:39
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv13397 Modified Files: news_index.php Log Message: another cvs test ***** Bogus filespec: news_index.php |
From: Ken W. <hdw...@us...> - 2001-08-12 15:56:55
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv12931 Modified Files: article_index.php Log Message: cvs test (no changes) ***** Bogus filespec: article_index.php |
From: Ken W. <hdw...@us...> - 2001-08-11 04:24:30
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv23873 Added Files: prepend_news.php-dist Log Message: new name for prepend_news.inc-dist --- NEW FILE: prepend_news.php-dist --- <?php /* Copyright (c) 2001 by Ken Williams (php...@hd...) */ /* http://phpfastnews.sourceforge.net/ & http://www.phpfastnews.com */ /* */ /* You can redistribute and/or modify the following code under the */ /* terms of the GNU General Public License as published by the */ /* the Free Software Foundation. */ /* */ /* LAST MODIFIED August 04, 2001 - 18:27:44 Eastern Standard Time */ /* All code by Ken Williams (HDwebdev) unless otherwise noted */ /* This is an alpha test release -- not intended for live site use */ // CHANGE THIS PATH TO THE DIRECTORY WHERE PHPFASTNEWS IS INSTALLED TO $NEWS_BASE = 'C:/webdir/www/phpfastnews/'; $numrecords = '10'; function getmicrotime(){ list($usec, $sec) = explode(" ",microtime()); return ((float)$usec + (float)$sec); } $startpage = getmicrotime(); $anonname = "Anonymous"; $theme = 'onecolumn2'; unset($blox); $blox = array( "HEAD" => 'yes', "LEFT" => 'yes', "RIGHT" => '', "FOOTER" => 'yes' ); if ($auth["username"] && ($handle == $anonname)) { $query = "select handle from ps_auth_user,news_users where (username = '$auth[username]') and (user_id = user_id2)"; $db->next_record($db->query($query)); $handle = $db->f('handle'); } if (!$auth["username"]) { $handle = $anonname; } $sess->register("handle"); function inky ($name) { global $NEWS_BASE,$module,$theme; include ($NEWS_BASE . "/" . $name); } inky("lib/news.inc"); function ndate($date) { $date = date("M/d/Y-H:i:s", $date); return $date; } $ndate = "ndate"; inky('lib/phplib/template.inc'); $r = new render; $ps_perm = new_object("ps_perm"); $blocks = new blocks("$pg"); inky('lib/sideblocks.inc'); $sideblocks = new sideblocks; ?> |
From: Ken W. <hdw...@us...> - 2001-08-11 04:23:08
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv23683 Removed Files: prepend_news.inc-dist Log Message: changed to prepend_news.php-dist --- prepend_news.inc-dist DELETED --- |
From: Ken W. <hdw...@us...> - 2001-08-11 04:19:15
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv23109 Modified Files: article_index.php article_reply.php article_view.php forum_index.php forum_newthread.php forum_posts.php forum_reply.php forum_view.php news_index.php news_reply.php news_view.php user_login.php user_register.php Log Message: prepend_news.inc changed to prepend_news.php Index: article_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/article_index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article_index.php 2001/08/10 04:30:01 1.1.1.1 --- article_index.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "article_index"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('article.tpl'); --- 13,17 ---- $pg = "article_index"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('article.tpl'); Index: article_reply.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/article_reply.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article_reply.php 2001/08/10 04:30:01 1.1.1.1 --- article_reply.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "article_reply"; include('lib/prepend.php'); ! include('lib/prepend_news.inc'); $r->open('article.tpl',$type,"<meta http-equiv=Refresh content=\"5;url=article_view.php?r_id=" . $r_id . "\">"); --- 13,17 ---- $pg = "article_reply"; include('lib/prepend.php'); ! include('lib/prepend_news.php'); $r->open('article.tpl',$type,"<meta http-equiv=Refresh content=\"5;url=article_view.php?r_id=" . $r_id . "\">"); Index: article_view.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/article_view.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article_view.php 2001/08/10 04:30:01 1.1.1.1 --- article_view.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "article_view"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); // show the article --- 13,17 ---- $pg = "article_view"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); // show the article Index: forum_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/forum_index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** forum_index.php 2001/08/10 04:30:01 1.1.1.1 --- forum_index.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "forum_index"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('forum.tpl'); --- 13,17 ---- $pg = "forum_index"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('forum.tpl'); Index: forum_newthread.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/forum_newthread.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** forum_newthread.php 2001/08/10 04:30:01 1.1.1.1 --- forum_newthread.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "forum_newthread"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('forum.tpl',$type,"<meta http-equiv=Refresh content=4;url=forum_view.php?f_id=". $f_id . ">"); $r->block('FORUM_NEWTHREAD'); --- 13,17 ---- $pg = "forum_newthread"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('forum.tpl',$type,"<meta http-equiv=Refresh content=4;url=forum_view.php?f_id=". $f_id . ">"); $r->block('FORUM_NEWTHREAD'); Index: forum_posts.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/forum_posts.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** forum_posts.php 2001/08/10 04:30:01 1.1.1.1 --- forum_posts.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "forum_posts"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('forum.tpl'); --- 13,17 ---- $pg = "forum_posts"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('forum.tpl'); Index: forum_reply.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/forum_reply.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** forum_reply.php 2001/08/10 04:30:01 1.1.1.1 --- forum_reply.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "forum_reply"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('forum.tpl',$type,"<meta http-equiv=Refresh content=4;url=forum_posts.php?f_id=". $f_id . "&r_id=" . $r_id . ">"); $r->block('FORUM_REPLY'); --- 13,17 ---- $pg = "forum_reply"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('forum.tpl',$type,"<meta http-equiv=Refresh content=4;url=forum_posts.php?f_id=". $f_id . "&r_id=" . $r_id . ">"); $r->block('FORUM_REPLY'); Index: forum_view.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/forum_view.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** forum_view.php 2001/08/10 04:30:01 1.1.1.1 --- forum_view.php 2001/08/11 04:19:13 1.2 *************** *** 12,16 **** $pg = "forum_view"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('forum.tpl'); --- 12,16 ---- $pg = "forum_view"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('forum.tpl'); Index: news_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/news_index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** news_index.php 2001/08/10 21:49:39 1.4 --- news_index.php 2001/08/11 04:19:13 1.5 *************** *** 13,17 **** $pg = "news_index"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('news.tpl'); --- 13,17 ---- $pg = "news_index"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('news.tpl'); Index: news_reply.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/news_reply.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** news_reply.php 2001/08/10 04:30:01 1.1.1.1 --- news_reply.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "news_reply"; include('lib/prepend.php'); ! include('lib/prepend_news.inc'); $r->open('news.tpl',$type,"<meta http-equiv=Refresh content=4;url=news_view.php?r_id=". $r_id . ">"); $r->block('REPLIES'); --- 13,17 ---- $pg = "news_reply"; include('lib/prepend.php'); ! include('lib/prepend_news.php'); $r->open('news.tpl',$type,"<meta http-equiv=Refresh content=4;url=news_view.php?r_id=". $r_id . ">"); $r->block('REPLIES'); Index: news_view.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/news_view.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** news_view.php 2001/08/10 04:30:01 1.1.1.1 --- news_view.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "news_view"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('news.tpl'); --- 13,17 ---- $pg = "news_view"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('news.tpl'); Index: user_login.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/user_login.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** user_login.php 2001/08/10 04:30:01 1.1.1.1 --- user_login.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "news_reply"; require("lib/prepend.php"); ! require('lib/prepend_news.inc'); $module = "news"; --- 13,17 ---- $pg = "news_reply"; require("lib/prepend.php"); ! require('lib/prepend_news.php'); $module = "news"; Index: user_register.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/user_register.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** user_register.php 2001/08/10 04:30:01 1.1.1.1 --- user_register.php 2001/08/11 04:19:13 1.2 *************** *** 13,17 **** $pg = "news_reply"; require('lib/prepend.php'); ! require('lib/prepend_news.inc'); $r->open('news.tpl'); --- 13,17 ---- $pg = "news_reply"; require('lib/prepend.php'); ! require('lib/prepend_news.php'); $r->open('news.tpl'); |
From: Ken W. <hdw...@us...> - 2001-08-11 04:08:57
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv21061 Modified Files: prepend_news.inc-dist Log Message: added $numrecords to limit news items shown per page and allow PREVIOUS/NEXT links Index: prepend_news.inc-dist =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/lib/prepend_news.inc-dist,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** prepend_news.inc-dist 2001/08/10 13:31:49 1.1 --- prepend_news.inc-dist 2001/08/11 04:08:54 1.2 *************** *** 13,17 **** // CHANGE THIS PATH TO THE DIRECTORY WHERE PHPFASTNEWS IS INSTALLED TO $NEWS_BASE = 'C:/webdir/www/phpfastnews/'; ! function getmicrotime(){ --- 13,17 ---- // CHANGE THIS PATH TO THE DIRECTORY WHERE PHPFASTNEWS IS INSTALLED TO $NEWS_BASE = 'C:/webdir/www/phpfastnews/'; ! $numrecords = '10'; function getmicrotime(){ |
From: Ken W. <hdw...@us...> - 2001-08-11 00:51:36
|
Update of /cvsroot/phpfastnews/phpfastnews/lib In directory usw-pr-cvs1:/tmp/cvs-serv21723 Modified Files: prepend.php-dist Log Message: added $CFG_FILE = "phpshop.cfg.php" ... problem reported by Anonymous on the PHPFASTNEWS page. I'll have to look into why that happens. phpShopCore doesn't use .cfg files anymore Index: prepend.php-dist =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/lib/prepend.php-dist,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** prepend.php-dist 2001/08/10 13:31:49 1.1 --- prepend.php-dist 2001/08/11 00:51:33 1.2 *************** *** 1,4 **** --- 1,5 ---- <?php ob_start(); + $CFG_FILE = "phpshop.cfg.php"; $PS_BASE = 'C:/WINDOWS/Profiles/fragzilla/Desktop/phpshop-core/phpshop-core/'; require($PS_BASE.'modules/core/lib/ps_page_open.inc'); |
From: Ken W. <hdw...@us...> - 2001-08-10 21:49:41
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv20396 Modified Files: news_index.php Log Message: testing email notification of commits Index: news_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/news_index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** news_index.php 2001/08/10 21:37:09 1.3 --- news_index.php 2001/08/10 21:49:39 1.4 *************** *** 11,15 **** /* This is an alpha test release -- not intended for live site use */ ! $pg = "news_index"; require('lib/prepend.php'); require('lib/prepend_news.inc'); --- 11,15 ---- /* This is an alpha test release -- not intended for live site use */ ! $pg = "news_index"; require('lib/prepend.php'); require('lib/prepend_news.inc'); |
From: Ken W. <hdw...@us...> - 2001-08-10 21:37:12
|
Update of /cvsroot/phpfastnews/phpfastnews In directory usw-pr-cvs1:/tmp/cvs-serv15296 Modified Files: news_index.php Log Message: test Index: news_index.php =================================================================== RCS file: /cvsroot/phpfastnews/phpfastnews/news_index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** news_index.php 2001/08/10 20:49:38 1.2 --- news_index.php 2001/08/10 21:37:09 1.3 *************** *** 11,15 **** /* This is an alpha test release -- not intended for live site use */ ! $pg = "news_index"; require('lib/prepend.php'); require('lib/prepend_news.inc'); --- 11,15 ---- /* This is an alpha test release -- not intended for live site use */ ! $pg = "news_index"; require('lib/prepend.php'); require('lib/prepend_news.inc'); *************** *** 54,56 **** $r->close(); require('lib/append.php'); ! ?> \ No newline at end of file --- 54,56 ---- $r->close(); require('lib/append.php'); ! ?> |