phpslash-commit Mailing List for phpSlash (Page 40)
Brought to you by:
joestewart,
nhruby
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2003-11-12 21:20:08
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/SpellChecker/img In directory sc8-pr-cvs1:/tmp/cvs-serv9918/img Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/SpellChecker/img added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:18:35
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/TableOperations In directory sc8-pr-cvs1:/tmp/cvs-serv9629/TableOperations Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/TableOperations added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:18:34
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/SpellChecker In directory sc8-pr-cvs1:/tmp/cvs-serv9629/SpellChecker Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins/SpellChecker added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:15:58
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/popups In directory sc8-pr-cvs1:/tmp/cvs-serv9003/popups Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/popups added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:15:58
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/images In directory sc8-pr-cvs1:/tmp/cvs-serv9003/images Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/images added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:15:58
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv9003/plugins Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/plugins added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:15:58
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/lang In directory sc8-pr-cvs1:/tmp/cvs-serv9003/lang Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3/lang added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:09:56
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3 In directory sc8-pr-cvs1:/tmp/cvs-serv7463/htmlarea3 Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts/htmlarea3 added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 21:08:34
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7327/scripts Log Message: Directory /cvsroot/phpslash/phpslash-dev/public_html/scripts added to the repository |
From: Joe S. <joe...@us...> - 2003-11-12 16:02:33
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/story/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv2534/phpslash-dev/include/modules/story/plugins Modified Files: Story_plugin_bbcode.class Added Files: Story_plugin_wiki.class Log Message: Added Wiki Story plugin --- NEW FILE: Story_plugin_wiki.class --- <?php /* Story_plugin_wiki.class -> Methods for phpslash specfic story plugins */ /* $Id: Story_plugin_wiki.class,v 1.1 2003/11/12 16:02:10 joestewart Exp $ */ class Story_plugin_wiki extends Story_plugin_i { /* constructor */ function Story_plugin_wiki() { $this->Story_plugin_i(); $this->type = "wiki"; /* set the 'type' */ $this->description = "A plugin that converts wiki to html"; } function parse($ary) { addClassRequirement('WikiEngine',$this->psl['classdir'] . '/WikiEngine.class'); loadClass('WikiEngine'); // first apply to intro WikiEngine::transformHtml($ary['intro_text']); // then body WikiEngine::transformHtml($ary['body_text']); $this->output = $ary; return true; } } ?> Index: Story_plugin_bbcode.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/plugins/Story_plugin_bbcode.class,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Story_plugin_bbcode.class 11 Nov 2003 22:11:11 -0000 1.1 --- Story_plugin_bbcode.class 12 Nov 2003 16:02:10 -0000 1.2 *************** *** 20,23 **** --- 20,25 ---- // The PEAR package can be downloaded here: // http://pear.php.net/package/HTML_BBCodeParser + // or from the command line: + // pear install BBCodeParser // adjust include_path to include PEAR |
From: Joe S. <joe...@us...> - 2003-11-12 16:02:33
|
Update of /cvsroot/phpslash/phpslash-dev/doc/html In directory sc8-pr-cvs1:/tmp/cvs-serv2534/phpslash-dev/doc/html Modified Files: phpslash.sgml Log Message: Added Wiki Story plugin Index: phpslash.sgml =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/doc/html/phpslash.sgml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** phpslash.sgml 28 Apr 2003 15:26:52 -0000 1.2 --- phpslash.sgml 12 Nov 2003 16:02:10 -0000 1.3 *************** *** 215,218 **** --- 215,250 ---- </itemize> + <sect1> Quicker Install + <p>This section details a browser based wizard style installation method. It does not contain exhaustive direction or details. It is geared for those that want to get started with minimal configuration. + + <sect2> 1. Decompress the phpslash-0.8.x.tar.gz files into your web directory. + <p> It is critical that the files in public_html are in a public location on your web server. It is more secure to have the class directory parallel to the public_html directory so that the files are not visible to your visitors. + + <tscreen><verb> + tar xzvf phplash-0.8.tar.gz + cd phpslash-0.8 + </verb></tscreen> + + + <sect2> 2. Set the config.ini.php with write permissions, from the server enter: <p> + + <tscreen><verb> + cd public_html + chmod 777 config.ini.php + </verb></tscreen> + + <sect2> 3. Browse to the directory where you installed the public_html files and follow the configure screens to set up phpSlash (this assumes that you either have a MySQL database configured or have the permissions to set up a new database. + <p> + + <sect2> 4. For security delete the config_setup.php file and set the write permissions on the config.ini.php file: + <p> + <tscreen><verb> + rm config_setup.php + chmod 644 config.ini.php + </verb></tscreen> + + <sect2> 5. Follow the login instructions. + <p> + <sect1> Quick Install <p>This section details a quick installation method. It does not contain exhaustive direction or details. It is geared for those that are already familiar with configuration of php scripts. *************** *** 221,226 **** <p> <tscreen><verb> ! tar xzvf phplash-0.7.tar.gz ! cd phpslash-0.7 </verb></tscreen> --- 253,258 ---- <p> <tscreen><verb> ! tar xzvf phplash-0.8.tar.gz ! cd phpslash-0.8 </verb></tscreen> |
From: Joe S. <joe...@us...> - 2003-11-12 16:02:33
|
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv2534/phpslash-dev/include/templates/en/basic Modified Files: optionTypes.tpl Log Message: Added Wiki Story plugin Index: optionTypes.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/optionTypes.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** optionTypes.tpl 21 Apr 2003 20:15:11 -0000 1.1 --- optionTypes.tpl 12 Nov 2003 16:02:09 -0000 1.2 *************** *** 22,26 **** <!-- BEGIN each_default_option --> <tr> ! <td class="descr"><b>{DOPTION_NAME_VAL}</b> <i>{DOPTION_DESCRIPTION}</i></td> <td> <input type="hidden" name="{DOPTION_NAME}" value="{DOPTION_NAME_VAL}" /> --- 22,26 ---- <!-- BEGIN each_default_option --> <tr> ! <td class="descr"><b>{DOPTION_NAME_VAL}</b> </td> <td> <input type="hidden" name="{DOPTION_NAME}" value="{DOPTION_NAME_VAL}" /> *************** *** 33,36 **** --- 33,37 ---- <!-- END each_default_notselected --> <!-- END each_default_choice --> + <i>{DOPTION_DESCRIPTION}</i> </td> </tr> *************** *** 56,60 **** <!-- BEGIN each_default_option --> <tr> ! <td class="descr"><b>{DOPTION_NAME_VAL}</b> <i>{DOPTION_DESCRIPTION}</i></td> <td> <input type="hidden" name="{DOPTION_NAME}" value="{DOPTION_NAME_VAL}" /> --- 57,61 ---- <!-- BEGIN each_default_option --> <tr> ! <td class="descr"><b>{DOPTION_NAME_VAL}</b> </td> <td> <input type="hidden" name="{DOPTION_NAME}" value="{DOPTION_NAME_VAL}" /> *************** *** 69,72 **** --- 70,75 ---- <!-- END each_default_choice --> </select> + <br /> + <i>{DOPTION_DESCRIPTION}</i> </td> </tr> |
From: Joe S. <joe...@us...> - 2003-11-12 16:02:32
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv2534/phpslash-dev Modified Files: CHANGES Log Message: Added Wiki Story plugin Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** CHANGES 11 Nov 2003 22:11:10 -0000 1.47 --- CHANGES 12 Nov 2003 16:02:09 -0000 1.48 *************** *** 13,18 **** 9 - Removal of something (kill -9 :) 2003-November 11 4:00PM CST Joe Stewart <joe...@us...> ! [E] - Added untested BBCode Story plugin using the PEAR BBCodeParser. 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> --- 13,24 ---- 9 - Removal of something (kill -9 :) + 2003-November 12 10:00AM CST Joe Stewart <joe...@us...> + [DFT] - Added Wiki Story plugin using the Back-End WikiEngine.class. + WikiEngine.class added to include/class. + optionTypes.tpl - moved description. + phpslash.sgml - Attemted to describe install using the wizard. + 2003-November 11 4:00PM CST Joe Stewart <joe...@us...> ! [F] - Added BBCode Story plugin using the PEAR BBCodeParser. 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> |
From: Joe S. <joe...@us...> - 2003-11-11 22:11:16
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv14295/phpslash-dev Modified Files: CHANGES Log Message: Added BBCode Story plugin Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** CHANGES 11 Nov 2003 21:20:00 -0000 1.46 --- CHANGES 11 Nov 2003 22:11:10 -0000 1.47 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-November 11 4:00PM CST Joe Stewart <joe...@us...> + [E] - Added untested BBCode Story plugin using the PEAR BBCodeParser. + 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> [S] - moved sql file to tables/0.8 and reverted 0.7 to 0.7.2 release status. |
From: Joe S. <joe...@us...> - 2003-11-11 22:11:16
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/story In directory sc8-pr-cvs1:/tmp/cvs-serv14295/phpslash-dev/include/modules/story Modified Files: admin.php article.php index.php Log Message: Added BBCode Story plugin Index: admin.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/admin.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** admin.php 6 Nov 2003 12:40:38 -0000 1.4 --- admin.php 11 Nov 2003 22:11:11 -0000 1.5 *************** *** 12,16 **** AddClassRequirement("story_admin","story_base"); AddClassRequirement("story_admin",$_PSL['moduledir'] . "/story/Story_admin.class"); ! AddClassRequirement("author",$_PSL['moduledir'] ."/author/Author.class"); AddClassRequirement("section",$_PSL['moduledir'] ."/section/Section.class"); --- 12,16 ---- AddClassRequirement("story_admin","story_base"); AddClassRequirement("story_admin",$_PSL['moduledir'] . "/story/Story_admin.class"); ! AddClassRequirement("story_plugin_i",$_PSL['moduledir'] ."/". $_PSL['module']['Story'] ."/Story_plugin_i.class"); AddClassRequirement("author",$_PSL['moduledir'] ."/author/Author.class"); AddClassRequirement("section",$_PSL['moduledir'] ."/section/Section.class"); Index: article.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/article.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** article.php 24 Jun 2003 19:32:34 -0000 1.2 --- article.php 11 Nov 2003 22:11:11 -0000 1.3 *************** *** 7,10 **** --- 7,11 ---- AddClassRequirement("story","story_base"); AddClassRequirement("story",$_PSL['moduledir'] . "/story/Story.class"); + AddClassRequirement("story_plugin_i",$_PSL['moduledir'] ."/". $_PSL['module']['Story'] ."/Story_plugin_i.class"); $pagetitle = pslgetText('Home'); // The name to be displayed in the header Index: index.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/index.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.php 24 Jun 2003 19:32:34 -0000 1.6 --- index.php 11 Nov 2003 22:11:11 -0000 1.7 *************** *** 7,10 **** --- 7,11 ---- AddClassRequirement("story","story_base"); AddClassRequirement("story",$_PSL['moduledir'] . "/story/Story.class"); + AddClassRequirement("story_plugin_i",$_PSL['moduledir'] ."/". $_PSL['module']['Story'] ."/Story_plugin_i.class"); $pagetitle = pslgetText('Home'); // The name to be displayed in the header |
From: Joe S. <joe...@us...> - 2003-11-11 22:11:16
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/story/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv14295/phpslash-dev/include/modules/story/plugins Added Files: BBCodeParser.ini Story_plugin_bbcode.class Log Message: Added BBCode Story plugin --- NEW FILE: BBCodeParser.ini --- [HTML_BBCodeParser] ; possible values: single|double ; use single or double quotes for attributes quotestyle = single ; possible values: all|nothing|strings ; quote all attribute values, none, or only the strings quotewhat = all ; the opening tag character open = [ ; the closing tag character close = ] ; possible values: true|false ; use xml style closing tags for single html tags (<img> or <img />) xmlclose = true ; possible values: a comma seperated list of filters ; comma seperated list of filters to use filters = Basic,Links,Images,Lists,Email --- NEW FILE: Story_plugin_bbcode.class --- <?php /* Story_plugin_bbcode.class -> Methods for phpslash specfic story plugins */ /* $Id: Story_plugin_bbcode.class,v 1.1 2003/11/11 22:11:11 joestewart Exp $ */ class Story_plugin_bbcode extends Story_plugin_i { /* constructor */ function Story_plugin_bbcode() { $this->Story_plugin_i(); $this->type = "bbcode"; /* set the 'type' */ $this->description = "A plugin that converts bbcode to html"; } function parse($ary) { // Straight from the PEAR package example // The PEAR package can be downloaded here: // http://pear.php.net/package/HTML_BBCodeParser // adjust include_path to include PEAR // ini_set('include_path', ini_get('include_path').':/usr/share/pear'); // all your errors are belong to us // error_reporting(E_ALL); // require PEAR and the parser require_once('PEAR.php'); require_once('HTML/BBCodeParser.php'); // get options from the ini file // $config = parse_ini_file($this->psl['moduledir'] ."/story/plugins/".'BBCodeParser.ini', true); $options = &PEAR::getStaticProperty('HTML_BBCodeParser', '_options'); $options = $config['HTML_BBCodeParser']; unset($options); $parser = new HTML_BBCodeParser(); // first apply to intro $parser->setText($ary['intro_text']); $parser->parse(); $ary['intro_text'] = $parser->getParsed(); // then body $parser->setText($ary['body_text']); $parser->parse(); $ary['body_text'] = $parser->getParsed(); $this->output = $ary; return true; } } ?> |
From: Joe S. <joe...@us...> - 2003-11-11 21:20:04
|
Update of /cvsroot/phpslash/phpslash-dev/tables/0.7 In directory sc8-pr-cvs1:/tmp/cvs-serv2419/phpslash-dev/tables/0.7 Modified Files: 65_to_7.sql slash-all.sql Log Message: move slash-all.sql to 0.8 directory Index: 65_to_7.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/tables/0.7/65_to_7.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** 65_to_7.sql 25 Apr 2003 20:00:18 -0000 1.2 --- 65_to_7.sql 11 Nov 2003 21:20:01 -0000 1.3 *************** *** 169,180 **** INSERT INTO psl_group_permission_lut VALUES (65,15,32); INSERT INTO psl_group_permission_lut VALUES (66,15,31); ! INSERT INTO psl_group_permission_lut VALUES (67,16,78); ! INSERT INTO psl_group_permission_lut VALUES (68,16,77); INSERT INTO psl_group_permission_lut VALUES (69,16,71); ! INSERT INTO psl_group_permission_lut VALUES (70,16,79); INSERT INTO psl_group_permission_lut VALUES (71,16,74); ! INSERT INTO psl_group_permission_lut VALUES (72,16,76); INSERT INTO psl_group_permission_lut VALUES (73,16,75); ! INSERT INTO psl_group_permission_lut VALUES (74,16,80); INSERT INTO psl_group_permission_lut VALUES (75,16,73); INSERT INTO psl_group_permission_lut VALUES (76,16,72); --- 169,180 ---- INSERT INTO psl_group_permission_lut VALUES (65,15,32); INSERT INTO psl_group_permission_lut VALUES (66,15,31); ! # INSERT INTO psl_group_permission_lut VALUES (67,16,78); ! # INSERT INTO psl_group_permission_lut VALUES (68,16,77); INSERT INTO psl_group_permission_lut VALUES (69,16,71); ! # INSERT INTO psl_group_permission_lut VALUES (70,16,79); INSERT INTO psl_group_permission_lut VALUES (71,16,74); ! # INSERT INTO psl_group_permission_lut VALUES (72,16,76); INSERT INTO psl_group_permission_lut VALUES (73,16,75); ! # INSERT INTO psl_group_permission_lut VALUES (74,16,80); INSERT INTO psl_group_permission_lut VALUES (75,16,73); INSERT INTO psl_group_permission_lut VALUES (76,16,72); Index: slash-all.sql =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/tables/0.7/slash-all.sql,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** slash-all.sql 25 Jun 2003 15:16:45 -0000 1.10 --- slash-all.sql 11 Nov 2003 21:20:01 -0000 1.11 *************** *** 1,29 **** ! -- MySQL dump 9.07 ! -- ! -- Host: localhost Database: modules ! --------------------------------------------------------- ! -- Server version 4.0.12-log ! ! -- ! -- Table structure for table 'CACHEDATA' ! -- ! [...1418 lines suppressed...] INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (3,'poll_currentquestionid','18','The Current Question on the homepage pollbooth',''); *************** *** 1156,1157 **** --- 1022,1037 ---- INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (63,'mailinglist_subject','Slash list','The Subject for the mailing list newsletters',''); + + # -------------------------------------------------------- + # + # Table structure for table 'CACHEDATA' + # + + CREATE TABLE CACHEDATA ( + CACHEKEY varchar(255) NOT NULL, + CACHEEXPIRATION int(11) NOT NULL, + GZDATA blob, + DATASIZE int(11), + DATACRC int(11), + PRIMARY KEY (CACHEKEY) + ) TYPE=MyISAM; |
From: Joe S. <joe...@us...> - 2003-11-11 21:20:04
|
Update of /cvsroot/phpslash/phpslash-dev/tables/0.8 In directory sc8-pr-cvs1:/tmp/cvs-serv2419/phpslash-dev/tables/0.8 Added Files: slash-all.sql Log Message: move slash-all.sql to 0.8 directory --- NEW FILE: slash-all.sql --- -- MySQL dump 9.07 -- -- Host: localhost Database: modules --------------------------------------------------------- -- Server version 4.0.12-log -- -- Table structure for table 'CACHEDATA' -- CREATE TABLE CACHEDATA ( CACHEKEY varchar(255) NOT NULL default '', CACHEEXPIRATION int(11) NOT NULL default '0', GZDATA blob, DATASIZE int(11) default NULL, DATACRC int(11) default NULL, PRIMARY KEY (CACHEKEY) ) TYPE=MyISAM; [...1118 lines suppressed...] -- -- Dumping data for table 'psl_variable' -- INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (3,'poll_currentquestionid','18','The Current Question on the homepage pollbooth',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (57,'article_nextprevlinks','','Adds next/prev links when viewing an article, but also requires a FULL TABLE SCAN.',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (40,'site_name','PHPSlash','This is the name of the website',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (41,'site_title','PHPSlash: Another title','Title for the website',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (43,'site_slogan','News for nerds in templates that matter!','Web Site Slogan',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (49,'site_logosmall','','small logo',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (50,'site_owner','web...@ph...','email address of the siteowner',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (60,'article_updatehits','1','If you want to keep track of the number of hits on an article, set this to true. REQUIRES AN UPDATE FOR EACH ARTICLE VIEW',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (59,'block_optioncount','4','the number of options for the block.',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (58,'search_maxresults','20','The maximum number of search results in the search page.',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (55,'comment_defaultmode','nested','The default mode for displaying comments (flat, thread, nested, index)',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (61,'submission_autodelete','','Deletes the submission *instantly* after clicking on the',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (62,'site_homesection','Home','this section\r\n appears on the main index page.',''); INSERT INTO psl_variable (variable_id, variable_name, value, description, variable_group) VALUES (63,'mailinglist_subject','Slash list','The Subject for the mailing list newsletters',''); |
From: Joe S. <joe...@us...> - 2003-11-11 21:20:04
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv2419/phpslash-dev/public_html Modified Files: config_setup.ini.php Log Message: move slash-all.sql to 0.8 directory Index: config_setup.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config_setup.ini.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config_setup.ini.php 6 Nov 2003 21:12:34 -0000 1.2 --- config_setup.ini.php 11 Nov 2003 21:20:01 -0000 1.3 *************** *** 318,321 **** --- 318,331 ---- block_optioncount = 4 ;;; end of Block Options + ;;; + ;; Story Options + ;; Use this number as the minimum number of options available for a story. + story_optioncount = 0 + ;;; end of Story Options + ;; Author Options + ;; Use this number as the minimum number of options available for an author. + author_optioncount = 0 + ;;; end of Author Options + ;;; |
From: Joe S. <joe...@us...> - 2003-11-11 21:20:04
|
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1:/tmp/cvs-serv2419/phpslash-dev/include/templates/en/basic Modified Files: storyNew.tpl Log Message: move slash-all.sql to 0.8 directory Index: storyNew.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/storyNew.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** storyNew.tpl 1 Jul 2003 03:55:49 -0000 1.4 --- storyNew.tpl 11 Nov 2003 21:20:00 -0000 1.5 *************** *** 110,122 **** </td> </tr> - <tr> - <td> </td> - <td colspan="3"> - <span class="descr">New Story Options: </span> - <input type="radio" {PLAIN_CHKBOX} name="content" value="plain" /> Plain Text - <input type="radio" {HTML_CHKBOX} name="content" value="html" /> HTML - <input type="radio" {EXTTRANS_CHKBOX} name="content" value="exttrans" /> Extended Translation</p> - </td> - </tr> {OPTIONS} <tr> --- 110,113 ---- |
From: Joe S. <joe...@us...> - 2003-11-11 21:20:04
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv2419/phpslash-dev Modified Files: CHANGES Log Message: move slash-all.sql to 0.8 directory Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** CHANGES 11 Nov 2003 20:50:07 -0000 1.45 --- CHANGES 11 Nov 2003 21:20:00 -0000 1.46 *************** *** 13,16 **** --- 13,19 ---- 9 - Removal of something (kill -9 :) + 2003-November 11 3:00PM CST Joe Stewart <joe...@us...> + [S] - moved sql file to tables/0.8 and reverted 0.7 to 0.7.2 release status. + 2003-November 11 2:30PM CST Joe Stewart <joe...@us...> [BFT] - New Feature - Story plugins added. |
From: Joe S. <joe...@us...> - 2003-11-11 21:05:50
|
Update of /cvsroot/phpslash/phpslash-dev/tables/0.8 In directory sc8-pr-cvs1:/tmp/cvs-serv32031/0.8 Log Message: Directory /cvsroot/phpslash/phpslash-dev/tables/0.8 added to the repository |
From: Joe S. <joe...@us...> - 2003-11-11 20:57:24
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen In directory sc8-pr-cvs1:/tmp/cvs-serv30034/phpslash-skins/include/templates/en/ShankZen Modified Files: storyIndex.tpl Log Message: link should be using php extension Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen/storyIndex.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** storyIndex.tpl 8 Apr 2003 21:12:33 -0000 1.1 --- storyIndex.tpl 11 Nov 2003 20:57:21 -0000 1.2 *************** *** 3,8 **** {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 --> --- 3,8 ---- {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.php?story_id={STORY_ID}">{MORE}</a> ! <a class="psl-more" href="{ROOTDIR}/article.php?story_id={STORY_ID}">[{COMMENT}]</a> </div><!-- end: block --> <!-- END each_story --> |
From: Joe S. <joe...@us...> - 2003-11-11 20:57:24
|
Update of /cvsroot/phpslash/phpslash-skins In directory sc8-pr-cvs1:/tmp/cvs-serv30034/phpslash-skins Modified Files: CHANGES Log Message: link should be using php extension Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/CHANGES,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** CHANGES 31 Oct 2003 12:49:58 -0000 1.8 --- CHANGES 11 Nov 2003 20:57:21 -0000 1.9 *************** *** 13,19 **** 9 - Removal of something (kill -9 :) 2003-October-31 7:00AM CST Joe Stewart <joe...@us...> ! [BT] - Added TOP and BOTTOM placeholders to pretty much all index templates to bring them ! compatible with phpslash-dev tree. 2003-April-8 4:00PM CST Joe Stewart <joe...@us...> --- 13,22 ---- 9 - Removal of something (kill -9 :) + + 2003-November 11 2:30PM CST Joe Stewart <joe...@us...> + [BT] - ShankZen storyIndex template used php3 extension. + 2003-October-31 7:00AM CST Joe Stewart <joe...@us...> ! [BT] - Added TOP and BOTTOM placeholders to pretty much all index templates to bring them compatible with phpslash-dev tree. 2003-April-8 4:00PM CST Joe Stewart <joe...@us...> |
From: Joe S. <joe...@us...> - 2003-11-11 20:50:11
|
Update of /cvsroot/phpslash/phpslash-dev/include/class In directory sc8-pr-cvs1:/tmp/cvs-serv27702/phpslash-dev/include/class Modified Files: functions.inc Log Message: New Feature - Story plugins added. Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/functions.inc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** functions.inc 31 Oct 2003 18:57:51 -0000 1.9 --- functions.inc 11 Nov 2003 20:50:07 -0000 1.10 *************** *** 1636,1641 **** // is there a saved value for this option? if(is_array($options_ary) && array_key_exists($dname, $options_ary)) { ! // yes - load the saved value ! $dvalue = $options_ary[$dname]; } // debug("dvalue", $dvalue); --- 1636,1644 ---- // is there a saved value for this option? if(is_array($options_ary) && array_key_exists($dname, $options_ary)) { ! // the 'selected' setting overrides the saved value ! if(!array_key_exists('selected', $_PSL[$default_options][$i])) { ! // yes - load the saved value ! $dvalue = $options_ary[$dname]; ! } } // debug("dvalue", $dvalue); *************** *** 1651,1655 **** reset($dchoices); ! // show current option value as selected/checked $tpl_object->set_var(array( 'DOPTION_VALUE' => "optionval[]", --- 1654,1658 ---- reset($dchoices); ! // show current option value as selected/checked $tpl_object->set_var(array( 'DOPTION_VALUE' => "optionval[]", *************** *** 1658,1662 **** )); ! // If the current option value is one of the choices, show that label if(array_key_exists($dvalue,$dchoices)) { $tpl_object->set_var('DOPTION_VALUE_LABEL', $dchoices[$dvalue]); --- 1661,1665 ---- )); ! // If the current option value is one of the choices, show that label if(array_key_exists($dvalue,$dchoices)) { $tpl_object->set_var('DOPTION_VALUE_LABEL', $dchoices[$dvalue]); *************** *** 1664,1668 **** $tpl_object->parse("dchoices", "each_default_selected", true); ! // display the choices foreach($dchoices as $key => $value) { $tpl_object->set_var(array( --- 1667,1671 ---- $tpl_object->parse("dchoices", "each_default_selected", true); ! // display the choices foreach($dchoices as $key => $value) { $tpl_object->set_var(array( *************** *** 1697,1701 **** 'selected' => '', 'notselected' => '', ! 'dchoices' => '' )); } --- 1700,1704 ---- 'selected' => '', 'notselected' => '', ! 'dchoices' => '' )); } *************** *** 1715,1719 **** // debug("current", $current); ! if ($current) { $tpl_object->set_var(array( 'OPTION_NAME' => "optionname[]", --- 1718,1722 ---- // debug("current", $current); ! if ($current) { $tpl_object->set_var(array( 'OPTION_NAME' => "optionname[]", *************** *** 1725,1729 **** $tpl_object->parse("options", "each_option", true); } ! if( (count($options_ary) - $optioncnt) >= 0) { $optioncnt = $i; // spit out one more; } --- 1728,1732 ---- $tpl_object->parse("options", "each_option", true); } ! if( (count($options_ary) - $optioncnt) > 0) { $optioncnt = $i; // spit out one more; } |