phpslash-commit Mailing List for phpSlash (Page 66)
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-01-09 22:11:05
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv20146/phpslash-ft/public_html Modified Files: config-dist.php3 Log Message: default to php4 sesssions Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** config-dist.php3 9 Jan 2003 22:04:27 -0000 1.26 --- config-dist.php3 9 Jan 2003 22:10:59 -0000 1.27 *************** *** 181,185 **** addClassRequirement('ct_sql',$_PHPLIB['libdir'] .'ct_sql.inc'); addLibraryRequirement('phplib',classURN('ct_sql')); ! addClassRequirement('session',$_PHPLIB['libdir'] .'session.inc'); addLibraryRequirement('phplib',classURN('session')); addClassRequirement('auth',$_PHPLIB['libdir'] .'auth.inc'); --- 181,186 ---- addClassRequirement('ct_sql',$_PHPLIB['libdir'] .'ct_sql.inc'); addLibraryRequirement('phplib',classURN('ct_sql')); ! // addClassRequirement('session',$_PHPLIB['libdir'] .'session.inc'); ! addClassRequirement('session',$_PHPLIB['libdir'] .'session4.inc'); addLibraryRequirement('phplib',classURN('session')); addClassRequirement('auth',$_PHPLIB['libdir'] .'auth.inc'); |
From: Joe S. <joe...@us...> - 2003-01-09 22:11:03
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv20146/phpslash-ft Modified Files: CHANGES Log Message: default to php4 sesssions Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.649 retrieving revision 1.650 diff -C2 -d -r1.649 -r1.650 *** CHANGES 9 Jan 2003 21:48:22 -0000 1.649 --- CHANGES 9 Jan 2003 22:10:56 -0000 1.650 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-January-09 4:00PM CST Joe Stewart <joe...@us...> + [W] - config-dist.php3 - default to php4 sessions. + 2003-January-09 3:30PM CST Joe Stewart <joe...@us...> [B] - slashAuthCR.class - uid might be 'form' when cancelling login. |
From: Joe S. <joe...@us...> - 2003-01-09 22:04:31
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv17343/phpslash-ft/public_html Modified Files: config-dist.php3 Log Message: topicbar and navbar definition Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** config-dist.php3 9 Jan 2003 21:44:42 -0000 1.25 --- config-dist.php3 9 Jan 2003 22:04:27 -0000 1.26 *************** *** 90,94 **** $_PHPLIB['libdir'] = $_PSL['phplibdir']; } else { ! $_PHPLIB['libdir'] = $_PSL['phplibdir']."/phplib/php/"; } // 1.11) Global Variables. (Don't add trailing slashes) --- 90,94 ---- $_PHPLIB['libdir'] = $_PSL['phplibdir']; } else { ! $_PHPLIB['libdir'] = $_PSL['classdir']."/phplib/php/"; } // 1.11) Global Variables. (Don't add trailing slashes) |
From: Joe S. <joe...@us...> - 2003-01-09 21:48:26
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv10707/phpslash-ft/class Modified Files: slashAuthCR.class Log Message: login cancel Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/slashAuthCR.class,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** slashAuthCR.class 20 Dec 2002 22:17:30 -0000 1.35 --- slashAuthCR.class 9 Jan 2003 21:48:22 -0000 1.36 *************** *** 32,36 **** $this->magic = $_PSL['magic']; } ! $this->loadClasses("database_class"); } --- 32,36 ---- $this->magic = $_PSL['magic']; } ! // $this->loadClasses("database_class"); } *************** *** 54,57 **** --- 54,60 ---- $this->psl = &$_PSL; + + $this->loadClasses("database_class"); + if (!empty($HTTP_GET_VARS['mode']) && $HTTP_GET_VARS['mode']=='reg') { if( !empty($_PSL['authmode'])) { *************** *** 200,207 **** } 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["email"] = ''; return $aid; --- 203,210 ---- } 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["email"] = ''; return $aid; *************** *** 217,222 **** if(empty($HTTP_POST_VARS)) { if(!empty($this->auth['uid']) && ! $this->auth['uid'] == 'nobody'){ $uid = $this->auth["uid"] = "nobody"; $aid = Author::getId($uid); $this->auth["perm"] = $this->get_userperms($aid); --- 220,226 ---- if(empty($HTTP_POST_VARS)) { 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); *************** *** 250,254 **** } else if ($this->nobody) { ## provides for "default login cancel" $uid = $this->auth["uid"] = "nobody"; ! $aid = Author::getId($uid); $this->auth["perm"] = $this->get_userperms($aid); return $aid; --- 254,259 ---- } 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; |
From: Joe S. <joe...@us...> - 2003-01-09 21:48:26
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv10707/phpslash-ft Modified Files: CHANGES Log Message: login cancel Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.648 retrieving revision 1.649 diff -C2 -d -r1.648 -r1.649 *** CHANGES 9 Jan 2003 21:44:42 -0000 1.648 --- CHANGES 9 Jan 2003 21:48:22 -0000 1.649 *************** *** 14,18 **** 2003-January-09 3:30PM CST Joe Stewart <joe...@us...> ! [B] - config-dist.php3 - moved navbar and TopicBar class definitions up before page_open(auth). 2003-January-09 12:30PM CST Joe Stewart <joe...@us...> --- 14,22 ---- 2003-January-09 3:30PM CST Joe Stewart <joe...@us...> ! [B] - slashAuthCR.class - uid might be 'form' when cancelling login. ! ! 2003-January-09 3:30PM CST Joe Stewart <joe...@us...> ! [B] - config-dist.php3 - moved navbar and TopicBar class definitions ! up before page_open(auth). 2003-January-09 12:30PM CST Joe Stewart <joe...@us...> |
From: Joe S. <joe...@us...> - 2003-01-09 21:44:46
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv9155/phpslash-ft/public_html Modified Files: config-dist.php3 Log Message: topicbar and navbar definition Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** config-dist.php3 9 Jan 2003 18:42:13 -0000 1.24 --- config-dist.php3 9 Jan 2003 21:44:42 -0000 1.25 *************** *** 90,94 **** $_PHPLIB['libdir'] = $_PSL['phplibdir']; } else { ! $_PHPLIB['libdir'] = '/var/www/phplib/phplib-0.74.20021016/php/'; } // 1.11) Global Variables. (Don't add trailing slashes) --- 90,94 ---- $_PHPLIB['libdir'] = $_PSL['phplibdir']; } else { ! $_PHPLIB['libdir'] = $_PSL['phplibdir']."/phplib/php/"; } // 1.11) Global Variables. (Don't add trailing slashes) *************** *** 213,216 **** --- 213,218 ---- addClassRequirement("slashTemplate",$_PSL['classdir'] . "/slashTemplate.class"); addClassRequirement("author",$_PSL['classdir'] . "/Author.class"); + addClassRequirement("navbar",$_PSL['classdir'] . "/NavBar.class"); + addClassRequirement("topicbar",$_PSL['classdir'] . "/TopicBar.class"); addLibraryRequirement("phpslash",$_PSL['classdir'] . "/functions.inc"); *************** *** 372,456 **** $_PSL['amp'] = arg_separator("1"); - /** - * page features, all derived from PHPLIB classes and user-customizable - **/ - if (empty($_PSL['page_features'])) { - foreach(array("sess"=>"slashSess", - "auth"=>"slashAuth", - "perm"=>"slashPerm") - as $name => $class) { - $class = pslGetClass($class); - loadClass($class); - $_PSL['page_features'][$name] = $class; - } - } - - page_open($_PSL['page_features']); - /** - * Now the session has started. What is below here will be moving into - * its own file to be called once per session. - **/ - - /** - * Rest of the class information - **/ - AddClassRequirement("block",$_PSL['classdir'] . "/Block.class"); - AddClassRequirement("block_i","block"); - AddClassRequirement("block_i",$_PSL['classdir'] . "/Block_i.class"); - AddClassRequirement("block_render_i",$_PSL['classdir'] . "/Block_render_i.class"); - AddClassRequirement("block_render_cal","block_render_i"); - AddClassRequirement("block_render_cal",$_PSL['classdir'] . "/Block_render_cal.class"); - AddClassRequirement("block_render_html","block_render_i"); - AddClassRequirement("block_render_html",$_PSL['classdir'] . "/Block_render_html.class"); - AddClassRequirement("block_render_login","block_render_i"); - AddClassRequirement("block_render_login",$_PSL['classdir'] . "/Block_render_login.class"); - AddClassRequirement("block_render_navbar","block_render_i"); - AddClassRequirement("block_render_navbar",$_PSL['classdir'] . "/Block_render_navbar.class"); - AddClassRequirement("block_render_poll","block_render_i"); - AddClassRequirement("block_render_poll",$_PSL['classdir'] . "/Block_render_poll.class"); - AddClassRequirement("block_render_query","block_render_i"); - AddClassRequirement("block_render_query",$_PSL['classdir'] . "/Block_render_query.class"); - AddClassRequirement("block_render_query","block_render_i"); - AddClassRequirement("block_render_quote",$_PSL['classdir'] . "/Block_render_quote.class"); - AddClassRequirement("block_render_section","block_render_i"); - AddClassRequirement("block_render_section",$_PSL['classdir'] . "/Block_render_section.class"); - AddClassRequirement("block_render_skin","block_render_i"); - AddClassRequirement("block_render_skin",$_PSL['classdir'] . "/Block_render_skin.class"); - AddClassRequirement("block_render_submission","block_render_i"); - AddClassRequirement("block_render_submission",$_PSL['classdir'] . "/Block_render_submission.class"); - AddClassRequirement("block_render_topic","block_render_i"); - AddClassRequirement("block_render_topic",$_PSL['classdir'] . "/Block_render_topic.class"); - AddClassRequirement("block_render_url","block_render_i"); - AddClassRequirement("block_render_url",$_PSL['classdir'] . "/Block_render_url.class"); - AddClassRequirement("block_admin","block_i"); - AddClassRequirement("block_admin",$_PSL['classdir'] . "/Block_admin.class"); - AddClassRequirement("comment",$_PSL['classdir'] . "/Comment.class"); - AddClassRequirement("glossary",$_PSL['classdir'] . "/Glossary.class"); - AddClassRequirement("group",$_PSL['classdir'] . "/Group.class"); - AddClassRequirement("infolog",$_PSL['classdir'] . "/Infolog.class"); - AddClassRequirement("mailinglist",$_PSL['classdir'] . "/MailingList.class"); - AddClassRequirement("navbar",$_PSL['classdir'] . "/NavBar.class"); - AddClassRequirement("poll",$_PSL['classdir'] . "/Poll.class"); - AddClassRequirement("section",$_PSL['classdir'] . "/Section.class"); - AddClassRequirement("submission",$_PSL['classdir'] . "/Submission.class"); - AddClassRequirement("story_base",$_PSL['classdir'] . "/Story_base.class"); - AddClassRequirement("story","story_base"); - AddClassRequirement("story",$_PSL['classdir'] . "/Story.class"); - AddClassRequirement("story_admin","story_base"); - AddClassRequirement("story_admin",$_PSL['classdir'] . "/Story_admin.class"); - AddClassRequirement("topic",$_PSL['classdir'] . "/Topic.class"); - AddClassRequirement("topicbar",$_PSL['classdir'] . "/TopicBar.class"); - AddClassRequirement("tz",$_PSL['classdir'] . "/tz.class"); - AddLibraryRequirement("tz",$_PSL['classdir'] . "/tz_functions.inc"); - AddClassRequirement("tz_env","tz"); - AddClassRequirement("tz_env",$_PSL['classdir'] . "/tz_env.class"); - AddClassRequirement("tz_nonnative","tz"); - AddClassRequirement("tz_nonnative",$_PSL['classdir'] . "/tz_nonnative.class"); - AddClassRequirement("tz_posix","tz_nonnative"); - AddClassRequirement("tz_posix",$_PSL['classdir'] . "/tz_posix.class"); - AddClassRequirement("tz_file","tz_nonnative"); - AddClassRequirement("tz_file",$_PSL['classdir'] . "/tz_file.class"); - AddClassRequirement("variable",$_PSL['classdir'] . "/variable.class"); - // NavBar Menu Definitions --- 374,377 ---- *************** *** 624,627 **** --- 545,631 ---- // end of NavBar Menu Definitions + + + /** + * page features, all derived from PHPLIB classes and user-customizable + **/ + if (empty($_PSL['page_features'])) { + foreach(array("sess"=>"slashSess", + "auth"=>"slashAuth", + "perm"=>"slashPerm") + as $name => $class) { + $class = pslGetClass($class); + loadClass($class); + $_PSL['page_features'][$name] = $class; + } + } + + page_open($_PSL['page_features']); + /** + * Now the session has started. What is below here will be moving into + * its own file to be called once per session. + **/ + + /** + * Rest of the class information + **/ + AddClassRequirement("block",$_PSL['classdir'] . "/Block.class"); + AddClassRequirement("block_i","block"); + AddClassRequirement("block_i",$_PSL['classdir'] . "/Block_i.class"); + AddClassRequirement("block_render_i",$_PSL['classdir'] . "/Block_render_i.class"); + AddClassRequirement("block_render_cal","block_render_i"); + AddClassRequirement("block_render_cal",$_PSL['classdir'] . "/Block_render_cal.class"); + AddClassRequirement("block_render_html","block_render_i"); + AddClassRequirement("block_render_html",$_PSL['classdir'] . "/Block_render_html.class"); + AddClassRequirement("block_render_login","block_render_i"); + AddClassRequirement("block_render_login",$_PSL['classdir'] . "/Block_render_login.class"); + AddClassRequirement("block_render_navbar","block_render_i"); + AddClassRequirement("block_render_navbar",$_PSL['classdir'] . "/Block_render_navbar.class"); + AddClassRequirement("block_render_poll","block_render_i"); + AddClassRequirement("block_render_poll",$_PSL['classdir'] . "/Block_render_poll.class"); + AddClassRequirement("block_render_query","block_render_i"); + AddClassRequirement("block_render_query",$_PSL['classdir'] . "/Block_render_query.class"); + AddClassRequirement("block_render_query","block_render_i"); + AddClassRequirement("block_render_quote",$_PSL['classdir'] . "/Block_render_quote.class"); + AddClassRequirement("block_render_section","block_render_i"); + AddClassRequirement("block_render_section",$_PSL['classdir'] . "/Block_render_section.class"); + AddClassRequirement("block_render_skin","block_render_i"); + AddClassRequirement("block_render_skin",$_PSL['classdir'] . "/Block_render_skin.class"); + AddClassRequirement("block_render_submission","block_render_i"); + AddClassRequirement("block_render_submission",$_PSL['classdir'] . "/Block_render_submission.class"); + AddClassRequirement("block_render_topic","block_render_i"); + AddClassRequirement("block_render_topic",$_PSL['classdir'] . "/Block_render_topic.class"); + AddClassRequirement("block_render_url","block_render_i"); + AddClassRequirement("block_render_url",$_PSL['classdir'] . "/Block_render_url.class"); + AddClassRequirement("block_admin","block_i"); + AddClassRequirement("block_admin",$_PSL['classdir'] . "/Block_admin.class"); + AddClassRequirement("comment",$_PSL['classdir'] . "/Comment.class"); + AddClassRequirement("glossary",$_PSL['classdir'] . "/Glossary.class"); + AddClassRequirement("group",$_PSL['classdir'] . "/Group.class"); + AddClassRequirement("infolog",$_PSL['classdir'] . "/Infolog.class"); + AddClassRequirement("mailinglist",$_PSL['classdir'] . "/MailingList.class"); + // AddClassRequirement("navbar",$_PSL['classdir'] . "/NavBar.class"); + AddClassRequirement("poll",$_PSL['classdir'] . "/Poll.class"); + AddClassRequirement("section",$_PSL['classdir'] . "/Section.class"); + AddClassRequirement("submission",$_PSL['classdir'] . "/Submission.class"); + AddClassRequirement("story_base",$_PSL['classdir'] . "/Story_base.class"); + AddClassRequirement("story","story_base"); + AddClassRequirement("story",$_PSL['classdir'] . "/Story.class"); + AddClassRequirement("story_admin","story_base"); + AddClassRequirement("story_admin",$_PSL['classdir'] . "/Story_admin.class"); + AddClassRequirement("topic",$_PSL['classdir'] . "/Topic.class"); + // AddClassRequirement("topicbar",$_PSL['classdir'] . "/TopicBar.class"); + AddClassRequirement("tz",$_PSL['classdir'] . "/tz.class"); + AddLibraryRequirement("tz",$_PSL['classdir'] . "/tz_functions.inc"); + AddClassRequirement("tz_env","tz"); + AddClassRequirement("tz_env",$_PSL['classdir'] . "/tz_env.class"); + AddClassRequirement("tz_nonnative","tz"); + AddClassRequirement("tz_nonnative",$_PSL['classdir'] . "/tz_nonnative.class"); + AddClassRequirement("tz_posix","tz_nonnative"); + AddClassRequirement("tz_posix",$_PSL['classdir'] . "/tz_posix.class"); + AddClassRequirement("tz_file","tz_nonnative"); + AddClassRequirement("tz_file",$_PSL['classdir'] . "/tz_file.class"); + AddClassRequirement("variable",$_PSL['classdir'] . "/variable.class"); + ////////////////////////////////////////////////////////////////////////// |
From: Joe S. <joe...@us...> - 2003-01-09 21:44:46
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv9155/phpslash-ft Modified Files: CHANGES Log Message: topicbar and navbar definition Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.647 retrieving revision 1.648 diff -C2 -d -r1.647 -r1.648 *** CHANGES 9 Jan 2003 18:42:13 -0000 1.647 --- CHANGES 9 Jan 2003 21:44:42 -0000 1.648 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-January-09 3:30PM CST Joe Stewart <joe...@us...> + [B] - config-dist.php3 - moved navbar and TopicBar class definitions up before page_open(auth). + 2003-January-09 12:30PM CST Joe Stewart <joe...@us...> [B] - config-dist.php3 - localedir was defined after its use. |
From: Joe S. <joe...@us...> - 2003-01-09 18:42:17
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv31586/phpslash-ft/public_html Modified Files: config-dist.php3 Log Message: localedir-language definition fix Index: config-dist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** config-dist.php3 20 Dec 2002 22:32:27 -0000 1.23 --- config-dist.php3 9 Jan 2003 18:42:13 -0000 1.24 *************** *** 131,134 **** --- 131,139 ---- } + // localedir -> the full directory path to the language files + if(empty($_PSL['localedir'])) { + $_PSL['localedir'] = $_PSL['classdir'] . "/locale"; + } + // 1.3) PHPSlash functions library require_once($_PSL['classdir'] . '/functions.inc'); *************** *** 342,350 **** if(empty($_PSL['censorfile'])) { $_PSL['censorfile'] = $_PSL['basedir'] . "/censor.php3"; //comment to disable comment censor - } - - // localedir -> the full directory path to the language files - if(empty($_PSL['localedir'])) { - $_PSL['localedir'] = $_PSL['classdir'] . "/locale"; } --- 347,350 ---- |
From: Joe S. <joe...@us...> - 2003-01-09 18:42:16
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv31586/phpslash-ft Modified Files: CHANGES Log Message: localedir-language definition fix Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.646 retrieving revision 1.647 diff -C2 -d -r1.646 -r1.647 *** CHANGES 9 Jan 2003 17:37:53 -0000 1.646 --- CHANGES 9 Jan 2003 18:42:13 -0000 1.647 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-January-09 12:30PM CST Joe Stewart <joe...@us...> + [B] - config-dist.php3 - localedir was defined after its use. + 2003-January-09 11:30AM CST Joe Stewart <joe...@us...> [W] - admin/config.php3 - Matthew's suggested changes to config require. |
From: Joe S. <joe...@us...> - 2003-01-09 17:37:57
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/admin In directory sc8-pr-cvs1:/tmp/cvs-serv22629/phpslash-ft/public_html/admin Modified Files: config.php3 Log Message: Matthews suggested config require changes Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/config.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** config.php3 11 Dec 2002 19:41:38 -0000 1.5 --- config.php3 9 Jan 2003 17:37:54 -0000 1.6 *************** *** 4,8 **** $cachetimeout=-1; ! require("../config.php3"); if( $ary['section_id'] == $_PSL['home_section_id']) { --- 4,12 ---- $cachetimeout=-1; ! // require("../config.php3"); ! $pwd = getcwd(); ! chdir('..'); ! require("config.php3"); ! chdir($pwd); if( $ary['section_id'] == $_PSL['home_section_id']) { |
From: Joe S. <joe...@us...> - 2003-01-09 17:37:57
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv22629/phpslash-ft Modified Files: CHANGES Log Message: Matthews suggested config require changes Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.645 retrieving revision 1.646 diff -C2 -d -r1.645 -r1.646 *** CHANGES 9 Jan 2003 16:36:26 -0000 1.645 --- CHANGES 9 Jan 2003 17:37:53 -0000 1.646 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-January-09 11:30AM CST Joe Stewart <joe...@us...> + [W] - admin/config.php3 - Matthew's suggested changes to config require. + 2003-January-09 10:30AM CST Joe Stewart <joe...@us...> [BD] - db_xfer.php3.disabled - Submission Block section. |
From: Joe S. <joe...@us...> - 2003-01-09 17:32:59
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv19006/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: install and upgrade docs Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** phpslash.sgml 9 Jan 2003 17:28:23 -0000 1.64 --- phpslash.sgml 9 Jan 2003 17:32:54 -0000 1.65 *************** *** 452,455 **** --- 452,457 ---- <p>Here are some things that you may need to manually adjust: <itemize> + <item>The test.php3 script shows the status of some of the configuration. + This may give hints to correct some installation problems. <item>How do I fix "Fatal error: Call to a member function on a non-object in page.inc on line 68"? <p>This is a phplib error that will be fixed in later versions of phplib. For now the easiest solution is to change line 67 to: |
From: Joe S. <joe...@us...> - 2003-01-09 17:28:26
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv15585/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: install and upgrade docs Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** phpslash.sgml 9 Jan 2003 16:36:28 -0000 1.63 --- phpslash.sgml 9 Jan 2003 17:28:23 -0000 1.64 *************** *** 208,212 **** </itemize> ! <item><url url="http://phplib.netuse.de/" name="PHPLIB"> <itemize> <item>Suggested version 7.4-pre1 and higher. --- 208,212 ---- </itemize> ! <item><url url="http://phplib.sourceforge.net/" name="PHPLIB"> <itemize> <item>Suggested version 7.4-pre1 and higher. |
From: Joe S. <joe...@us...> - 2003-01-09 16:36:32
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv15891/phpslash-ft/public_html Modified Files: db_xfer.php3.disabled Log Message: install and upgrade docs Index: db_xfer.php3.disabled =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/db_xfer.php3.disabled,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** db_xfer.php3.disabled 8 Jan 2003 20:29:04 -0000 1.18 --- db_xfer.php3.disabled 9 Jan 2003 16:36:29 -0000 1.19 *************** *** 194,198 **** $ary['ordernum'] = '95'; ! $section_id_ary[] = $section->getId("Admin"); $section_id_ary[] = $section->getId("User"); --- 194,198 ---- $ary['ordernum'] = '95'; ! $section_id_ary[] = array(); $section_id_ary[] = $section->getId("Admin"); $section_id_ary[] = $section->getId("User"); *************** *** 227,231 **** $ary['ordernum'] = '90'; ! $section_id_ary[] = $section->getId("User"); $ary['section_id_ary'] = $section_id_ary; --- 227,231 ---- $ary['ordernum'] = '90'; ! unset($section_id_ary); $section_id_ary[] = $section->getId("User"); $ary['section_id_ary'] = $section_id_ary; |
From: Joe S. <joe...@us...> - 2003-01-09 16:36:31
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv15891/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: install and upgrade docs Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** phpslash.sgml 9 Jan 2003 01:18:18 -0000 1.62 --- phpslash.sgml 9 Jan 2003 16:36:28 -0000 1.63 *************** *** 196,201 **** <item><url url="http://www.php.net/" name="The PHP Engine"> <itemize> ! <item>Suggested version 4.0.3pl1 and higher. ! <item>Required version 3.0.10. <item> If possible, use a php module compiled for you server's native API (as opposed to the CGI version). PHP works fine --- 196,201 ---- <item><url url="http://www.php.net/" name="The PHP Engine"> <itemize> ! <item>Suggested version 4.3 and higher. ! <item>Required version 4.1.2. <item> If possible, use a php module compiled for you server's native API (as opposed to the CGI version). PHP works fine *************** *** 210,214 **** <item><url url="http://phplib.netuse.de/" name="PHPLIB"> <itemize> ! <item>Suggested version 7.2d and higher. <item>If you have PHP4, you *must* run at least 7.2c because of a bug in the template library. </itemize> --- 210,214 ---- <item><url url="http://phplib.netuse.de/" name="PHPLIB"> <itemize> ! <item>Suggested version 7.4-pre1 and higher. <item>If you have PHP4, you *must* run at least 7.2c because of a bug in the template library. </itemize> *************** *** 302,306 **** I'm going to assume that you have a public_html directory where all ! your html files reside. <enum> <item>Unpack PHPLIB and move the php directory to ~username/phplib --- 302,307 ---- I'm going to assume that you have a public_html directory where all ! your html files reside. <bf>Note: PHPLIB should not need any installation or ! configuration. Any references below should be optional for developers</bf>. <enum> <item>Unpack PHPLIB and move the php directory to ~username/phplib *************** *** 324,405 **** </enum> ! <sect1> Edit the config.php3 script in the phpslash directory. <p> <descrip> <tag/Section 1.1/ ! If you didn't auto_prepend the "prepend.php3" script in a .htaccess ! file then go ahead and uncomment this line. PHPSlash needs to see ! one copy of the file, either it's required here or it's automatically ! done via the PHP engine. If you have both enabled then you'll get ! a 'Cannot redeclare class db_sql' error. <tag/Section 1.11/ Here are some directory and URL paths that are needed by phpslash., Shown below is a brief explanation along with an example of what the line will look like in the config file. You'll need to edit these in order for phpslash to work. NOTE: There are no trailing slashes at the end. NOTE: The format changed from previous versions of phpSlash. ! A reference to the local running php script. We use this a lot, so it makes sense to make a copy in our own array and use that instead of doing a global $PHP_SELF; on every function ! and object. $_PSL[phpself] = $HTTP_SERVER_VARS['PHP_SELF']; ! ! Complete filesystem path to the pages ! $_PSL[basedir] = '/home/nathan/webDevel/phpslash-ft/public_html'; ! ! Path to the templates directory ! $_PSL[templatedir] = $_PSL[basedir] . '/templates'; ! ! Path to the class directory ! $_PSL[classdir] = '/home/nathan/webDevel/phpslash-ft/class'; ! ! The base URL for the phpslash site ! $_PSL[rooturl] = 'http://fatboy.mystic/ft'; ! ! The base URL for the admin pages ! $_PSL[adminurl] = $_PSL[rooturl] . '/admin'; ! ! The base URL for images that pertain to phpslash ! $_PSL[imageurl] = $_PSL[rooturl] . '/images'; ! ! The url for all the topic images. ! $_PSL[topicimageurl] = $_PSL[imageurl] . "/topics"; ! ! The full directory path to the topic images. ! $_PSL[topicimagedir] = $_PSL[basedir] . "/images" . "/topics"; ! $Host - the hostname of the MySQL server ! $Database - the name of the database ! $User - the username used to connect to the database ! $Password - the password needed to connect to the database <tag/Section 1.2/ - If you look at the prepend.php3 script inside the phplib directory you'll - see that the default is to NOT load the template library. So for people - who can't edit the prepend.php3 file directly we provide a chance for them - to 'require' the template library here. You can either put it in the - prepend.php3 script, or just comment it out here. One or the other, but - not both. Remember, PHPSlash needs the library, but if you have it twice - you'll get those "Can't redeclare class ..." errors. <tag/Section 1.3/ - These are the .class libraries that PHPSlash uses to function. As of - writing we have _all_ the libraries loaded for every page. When 0.6-FINAL - is out we will trim these down to what's required for the main index page, - then 'require' the libraries in other pages as needed. <tag/Section 1.4/ - This is the general PHPSlash function library. This is where some of - our common functions reside. <tag/Section 1.99/ - If you have any special custom libraries that you need to be required on - every page, then place them in this section. <tag/Section 2.0: PHPLIB configuration/ --- 325,395 ---- </enum> ! <sect1> Edit the config files. <p> <descrip> <tag/Section 1.1/ ! Copy config-dist.ini.php somewhere. If this is kept in the server root keep the .php extension. For our example we will use config.ini.php. ! Copy config-dist.php to config.php. Edit the line below to contain the full path to the ini file: ! ! <tscreen><verb> ! // Specify full path to ini file ! $psl_inifile = "config.ini.php"; ! </verb></tscreen> <tag/Section 1.11/ + Edit the ini file appropriately as detailed below. + Here are some directory and URL paths that are needed by phpslash., Shown below is a brief explanation along with an example of what the line will look like in the config file. You'll need to edit these in order for phpslash to work. NOTE: There are no trailing slashes at the end. NOTE: The format changed from previous versions of phpSlash. ! <tscreen><verb> ! ;; The complete filesystem path to the pages ! basedir = "/path/to/phpslash-ft/public_html" ! ;; ! ;; The complete filesystem path to the class directory ! classdir = "/path/to/phpslash-ft/class" ! ;; ! ;; The base URL for the phpslash site ! rooturl = "http://www.yourdomain.com/phpslash" ! DB_Host = "localhost" ! DB_Database = "phpslash" ! DB_User = "phpslash" ! DB_Password = "phpslash" ! ;; Name of the site. This appears for example on the titlebar of ! ;; browser windows. ! site_name = "PHPSlash" ! ;; ! ;; Email address to reach a human. ! site_owner = "in...@ph..." ! ;; ! ;; A catch phrase for your site. ! site_slogan = "Slash for you, Slash for me" ! ;; ! ;; A Longer version of the title. ! site_title = "PHPSlash: The Web Stops Here" ! ;; Use this secret string when generating site unique variables. For ! ;; security's sake, change this to something, anything. ! magic = "ChangeThisToSomethingUnique" ! ;;; ! </verb></tscreen> <tag/Section 1.2/ <tag/Section 1.3/ <tag/Section 1.4/ <tag/Section 1.99/ <tag/Section 2.0: PHPLIB configuration/ *************** *** 416,421 **** path names are correct in the config.php3 script. ! Once you correct any initial problems, go to the 'Admin' screen and log ! in with: <tscreen><code> Username: god --- 406,410 ---- path names are correct in the config.php3 script. ! Once you correct any initial problems, go to the 'Admin' screen by clicking the 'login' link and log in with: <tscreen><code> Username: god *************** *** 425,436 **** Those values are case sensitive. ! In the NavBar (the blue bar under the topic icons with all the text links ! on it), click on 'Authors'. Change the password for God and click on update. ! NOTE: Do not delete the God account yet. First create an account for ! yourself with all Security permissions. Then, post a story to the ! site. Next, delete that "Welcome to PHPSlash" story that was posted by ! god and NOW you can delete the god account. You should be able to figure out what everything does and how it works. This --- 414,422 ---- Those values are case sensitive. ! In the task links, click on 'Authors'. Change the password for god and click on update. ! NOTE: Do not delete the god account yet. First create an account for ! yourself with root(all) Security permissions. Then, post a story to the site. Next, delete that "Welcome to PHPSlash" story that was posted by god and NOW you can delete the god account. Alternately, just change all the info in the god account to personalize it. Then after logging out, the correct info will be updated. You should be able to figure out what everything does and how it works. This *************** *** 440,448 **** <sect1> phpSlash and the register_globals setting <p> ! phpSlash currently does not work with the register_globals setting turned ! Off. Yes we are aware of the problems this causes. yes we are aware that ! php4.2.0 defaults to turning off register_gloabals. This will be ! addressed in the next release (M7) with an all new user input and config ! parsing system. <sect1> A few notes on the installation of phplib --- 426,430 ---- <sect1> phpSlash and the register_globals setting <p> ! phpSlash should not depend on register_globals being set on. <sect1> A few notes on the installation of phplib *************** *** 713,717 **** </itemize> ! <sect1>From versions 0.65 to 0.65++ <p> Versions of phpSlash greater than 0.6.2 <bf>will not</bf> support upgrading a 0.5.x install. You will manually need to upgrade to 0.6.2 and --- 695,699 ---- </itemize> ! <sect1>From versions 0.65 to 0.7 <p> Versions of phpSlash greater than 0.6.2 <bf>will not</bf> support upgrading a 0.5.x install. You will manually need to upgrade to 0.6.2 and *************** *** 725,729 **** <P> <itemize> ! <item> Install phpslash 0.65++ in a new directory and set all the path related variables as documented in the INSTALL file. Oh yeah, copy over any special logos or topic images that you will need from the old slash --- 707,711 ---- <P> <itemize> ! <item> Install phpslash 0.7 in a new directory and set all the path related variables as documented in the INSTALL file. Oh yeah, copy over any special logos or topic images that you will need from the old slash *************** *** 735,739 **** <p> <enum> ! <item> It would be a good idea to backup the database at this point: <tscreen><code> --- 717,721 ---- <p> <enum> ! <item> It would be a good idea to backup the database at this point or upgrade a copy of the database: <tscreen><code> *************** *** 748,751 **** --- 730,745 ---- </code></tscreen> + <item>Copy db_xfer.php3.disabled to db_xfer.php3 + + <tscreen><code> + cp db_xfer.php3.disabled db_xfer.php3 + </code></tscreen> + + <item> Load up the db_xfer.php3 script in a browser. All boxes should + be checked, just hit submit. + + <item> Delete, move or rename the db_xfer.php3 script so it can't be run + again. + <p> <bf>STOP IF YOU GOT ANY ERRORS, YOU NEED TO FIX THEM BEFORE YOU *************** *** 760,764 **** <tscreen><code> ! $_PSL[defaultskin] = "default"; </code></tscreen> --- 754,758 ---- <tscreen><code> ! $_PSL[defaultskin] = "bluecurves"; </code></tscreen> *************** *** 833,836 **** --- 827,838 ---- <sect2> Troubleshooting + <p> + Here are some things that you may need to manually adjust: + <itemize> + <item>The "Administration" Block may need to be moved from the "Admin" + section to the "User" section. It can be deleted entirely with no + ill effects. + + </itemize> <!-- SECTION START: User Documentation --> |
From: Joe S. <joe...@us...> - 2003-01-09 16:36:31
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv15891/phpslash-ft Modified Files: CHANGES Log Message: install and upgrade docs Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.644 retrieving revision 1.645 diff -C2 -d -r1.644 -r1.645 *** CHANGES 9 Jan 2003 01:18:17 -0000 1.644 --- CHANGES 9 Jan 2003 16:36:26 -0000 1.645 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-January-09 10:30AM CST Joe Stewart <joe...@us...> + [BD] - db_xfer.php3.disabled - Submission Block section. + phpslash.sgml - updated installation and upgrade documentation. + 2003-January-08 7:00PM CST Joe Stewart <joe...@us...> [BT] - added missing openbox.tpl, borderedbox.tpl. Corrected |
From: Joe S. <joe...@us...> - 2003-01-09 14:55:09
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/styles In directory sc8-pr-cvs1:/tmp/cvs-serv31449/phpslash-ft/public_html/styles Added Files: xhtmlb.css Log Message: basiccurves skin --- NEW FILE: xhtmlb.css --- /* CSS Document */ a { font-family: Helvetica, sans-serif; font-size: 9pt; font-weight: bold; color: navy; text-decoration: none; } p { font-family: Helvetica, sans-serif; font-size: 9pt; color: #000000; } p.headline { font-family: Helvetica, sans-serif; font-size: 10pt; font-weight: bold; color: #000000; } p.menu { font-family: Helvetica, sans-serif; font-size: 9pt; color: #000000; } b { font-family: Helvetica, sans-serif; font-size: 9pt; color: #000000; } img { border: 0pt #FFFFFF; } |
From: Joe S. <joe...@us...> - 2003-01-09 01:18:51
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv29497/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: openbox, and framedbox Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** phpslash.sgml 9 Jan 2003 01:02:12 -0000 1.61 --- phpslash.sgml 9 Jan 2003 01:18:18 -0000 1.62 *************** *** 778,781 **** --- 778,782 ---- blockEdit.tpl blockList.tpl + borderedbox.tpl breadcrumb.tpl commentblock.tpl *************** *** 796,799 **** --- 797,801 ---- navbarBlock.tpl navbarBlockh.tpl + openbox.tpl pollList.tpl pollResultPage.tpl *************** *** 1461,1464 **** --- 1463,1467 ---- blockList.tpl - list blocks in blockAdmin blocktypeList.tpl - list block types in blockAdmin + borderedbox.tpl - fancybox with a border only breadcrumb.tpl - display current section and topic calendar.tpl - calendar block |
From: Joe S. <joe...@us...> - 2003-01-09 01:18:51
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv29497/phpslash-ft Modified Files: CHANGES Log Message: openbox, and framedbox Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.643 retrieving revision 1.644 diff -C2 -d -r1.643 -r1.644 *** CHANGES 9 Jan 2003 01:02:10 -0000 1.643 --- CHANGES 9 Jan 2003 01:18:17 -0000 1.644 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-January-08 7:00PM CST Joe Stewart <joe...@us...> + [BT] - added missing openbox.tpl, borderedbox.tpl. Corrected + framedbox.tpl and basic.css. 2003-January-08 7:00PM CST Joe Stewart <joe...@us...> |
From: Joe S. <joe...@us...> - 2003-01-09 01:18:24
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/styles In directory sc8-pr-cvs1:/tmp/cvs-serv29497/phpslash-ft/public_html/styles Modified Files: basic.css Log Message: openbox, and framedbox Index: basic.css =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/styles/basic.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** basic.css 19 Apr 2002 17:26:39 -0000 1.2 --- basic.css 9 Jan 2003 01:18:19 -0000 1.3 *************** *** 255,258 **** --- 255,297 ---- } + /** + * framedBox.tpl + */ + #framedBox { + text-align: left; + padding-left: 4px; + margin-top: 4px; + margin-bottom: 20px; + /** + * Possibilities for browsers != NN 4.x: + * (NN 4.x just ignores this) + */ + border-style: solid; + border-color: #9298AD; + border-width: 1px; + } + + /** + * borderedBox.tpl + */ + #borderedBox { + text-align: left; + margin-top: 4px; + margin-bottom: 20px; + /** + * Possibilities for browsers != NN 4.x: + * (NN 4.x just ignores this) + */ + border-style: solid; + border-color: #9298AD; + border-width: 1px; + } + + /** + * openBox.tpl + */ + #openBox { + + } /** |
From: Joe S. <joe...@us...> - 2003-01-09 01:18:24
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv29497/phpslash-ft/public_html/templates/en/basic Modified Files: framedbox.tpl openbox.tpl Added Files: borderedbox.tpl Log Message: openbox, and framedbox --- NEW FILE: borderedbox.tpl --- <!-- START borderedbox.tpl: {TITLE} --> <div id="borderedBox"> {CONTENTS} </div> <!-- id="borderedBox" --> <!-- END borderedbox.tpl --> Index: framedbox.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/framedbox.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** framedbox.tpl 9 Jan 2003 01:02:15 -0000 1.1 --- framedbox.tpl 9 Jan 2003 01:18:20 -0000 1.2 *************** *** 1,20 **** ! <!-- START FRAMEDBOX.TPL: {TITLE} --> ! <IMG SRC="{IMAGEDIR}/layout/blank.gif" HEIGHT="1" WIDTH="1" ALT=""> ! <table border="1" width="{WIDTH}" cellspacing="0" cellpadding="0" bordercolor="#3F4469" bordercolordark="#3F4469" bordercolorlight="#3F4469"> ! <tr> ! <td width="100%"> ! ! <table border="0" width="100%"> ! <tr> ! <td width="100%" align="left" valign="top"> ! <!-- START FANCYBOX TEMPLATE CONTENTS --><font face="arial,helvetica" size="2"> ! {CONTENTS} </font> ! <!-- END FANCYBOX TEMPLATE CONTENTS --> ! </td> ! </tr> ! </table> ! </td> ! </tr> ! </table> ! <img src ="{IMAGEDIR}/layout/blank.gif" width ="150" height = "15"><br> ! <!-- END FRAMEDBOX.TPL --> --- 1,6 ---- ! <!-- START framedbox.tpl: {TITLE} --> ! <div id="framedBox"> ! {CONTENTS} ! </div> <!-- id="framedBox" --> ! <!-- END framedbox.tpl --> ! Index: openbox.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/templates/en/basic/openbox.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** openbox.tpl 20 May 2002 17:52:47 -0000 1.1 --- openbox.tpl 9 Jan 2003 01:18:20 -0000 1.2 *************** *** 1,8 **** <!-- START openbox.tpl: {TITLE} --> ! <div id="fancyBox"> <!-- START openBox template content --> {CONTENTS} <!-- END openBox template content --> ! </div> <!-- id="fancyBox" --> <!-- END openbox.tpl --> --- 1,8 ---- <!-- START openbox.tpl: {TITLE} --> ! <div id="openBox"> <!-- START openBox template content --> {CONTENTS} <!-- END openBox template content --> ! </div> <!-- id="openBox" --> <!-- END openbox.tpl --> |
From: Joe S. <joe...@us...> - 2003-01-09 01:02:47
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv25874/phpslash-ft/public_html Modified Files: config.php3 config-dist.ini.php3 Log Message: basiccurves skin Index: config.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v retrieving revision 1.174 retrieving revision 1.175 diff -C2 -d -r1.174 -r1.175 *** config.php3 20 Dec 2002 22:17:31 -0000 1.174 --- config.php3 9 Jan 2003 01:02:13 -0000 1.175 *************** *** 349,353 **** **/ // Sets the default skin for a site ! $_PSL['defaultskin'] = "basic"; // no css skin - "default" // comment out this block to disable setting theme in url --- 349,353 ---- **/ // Sets the default skin for a site ! $_PSL['defaultskin'] = "basiccurves"; // no css skin - "default" // comment out this block to disable setting theme in url Index: config-dist.ini.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.ini.php3,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** config-dist.ini.php3 20 Dec 2002 15:36:01 -0000 1.10 --- config-dist.ini.php3 9 Jan 2003 01:02:13 -0000 1.11 *************** *** 182,186 **** ;; both HTML 4.0 Transitional. The "basic" skin does all formatting ;; with CSS, whereas the "default" skin uses <font> tags and such. ! defaultskin = "basic" ;;; --- 182,186 ---- ;; both HTML 4.0 Transitional. The "basic" skin does all formatting ;; with CSS, whereas the "default" skin uses <font> tags and such. ! defaultskin = "basiccurves" ;;; |
From: Joe S. <joe...@us...> - 2003-01-09 01:02:46
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv25874/phpslash-ft Modified Files: CHANGES Log Message: basiccurves skin Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.642 retrieving revision 1.643 diff -C2 -d -r1.642 -r1.643 *** CHANGES 8 Jan 2003 20:29:02 -0000 1.642 --- CHANGES 9 Jan 2003 01:02:10 -0000 1.643 *************** *** 13,16 **** --- 13,22 ---- 9 - Removal of something (kill -9 :) + + 2003-January-08 7:00PM CST Joe Stewart <joe...@us...> + [BFT] - Added missing article-wml.tpl, xhtml.css, basic/framedbox.tpl. + Moved curved boxes to basiccurves skin. This provides an example + of how to create new skins. Changed config files to use this skin. + 2003-January-08 2:30PM CST Joe Stewart <joe...@us...> [W] - db_xfer.php3.disabled - a working upgrade script. No known bugs but |
From: Joe S. <joe...@us...> - 2003-01-09 01:02:46
|
Update of /cvsroot/phpslash/phpslash-ft/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv25874/phpslash-ft/doc/html Modified Files: phpslash.sgml Log Message: basiccurves skin Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/doc/html/phpslash.sgml,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** phpslash.sgml 8 Jan 2003 16:45:58 -0000 1.60 --- phpslash.sgml 9 Jan 2003 01:02:12 -0000 1.61 *************** *** 767,770 **** --- 767,772 ---- <tscreen><code> + article-wml.tpl + article-xhtmlb.tpl authorEmailLostPW.tpl authorList.tpl *************** *** 1434,1437 **** --- 1436,1440 ---- about.tpl - About page article-pf.tpl - printer friendly article page + article-wml.tpl - wap article view article-xhtmlb.tpl - xhtml basic article view article.tpl - deprecated |
From: Joe S. <joe...@us...> - 2003-01-09 01:02:18
|
Update of /cvsroot/phpslash/phpslash-ft/public_html/templates/en/default In directory sc8-pr-cvs1:/tmp/cvs-serv25874/phpslash-ft/public_html/templates/en/default Added Files: article-wml.tpl Log Message: basiccurves skin --- NEW FILE: article-wml.tpl --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> <wml> <card title="{SITENAME} {PAGETITLE} : {TITLE}"> <p> <b>{TITLE}</b><br/> {INTRO_TEXT} {BODY_TEXT}</p> </card> </wml> |