phpslash-commit Mailing List for phpSlash (Page 10)
Brought to you by:
joestewart,
nhruby
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2004-11-19 21:47:25
|
Update of /cvsroot/phpslash/phpslash-dev/public_html/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13181 Added Files: index.php Log Message: first commit --- NEW FILE: index.php --- <?php Header("Location: /"); exit; ?> |
From: Luis M <le...@us...> - 2004-11-17 21:15:04
|
Update of /cvsroot/phpslash/phpslash-dev/include/class/jpcache/type In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26146/include/class/jpcache/type Modified Files: file.php Log Message: minor bug fixes Index: file.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/jpcache/type/file.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** file.php 20 Oct 2004 22:06:53 -0000 1.3 --- file.php 17 Nov 2004 21:14:51 -0000 1.4 *************** *** 113,117 **** // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("x$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; --- 113,117 ---- // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; *************** *** 147,151 **** // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("x$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; --- 147,151 ---- // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; *************** *** 182,186 **** // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("x$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; --- 182,186 ---- // To get around strange php-strpos, add additional char // Only read jpcache-files. ! if (strpos("$de", $GLOBALS["JPCACHE_FILEPREFIX"])==1) { $filename=$GLOBALS["JPCACHE_DIR"] . "/" . $de; |
From: Luis M <le...@us...> - 2004-11-17 21:07:29
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24432 Modified Files: CHANGES Log Message: Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.149 retrieving revision 1.150 diff -C2 -d -r1.149 -r1.150 *** CHANGES 16 Nov 2004 18:13:21 -0000 1.149 --- CHANGES 17 Nov 2004 21:07:18 -0000 1.150 *************** *** 13,16 **** --- 13,26 ---- 9 - Removal of something (kill -9 :) + 2004-November 17 Luis Mondesi <le...@ph...> + [BF] - Fixed a number of bugs with caching. Variables are more + consistent and naming of cache files is also improved. + [F] - Added the ability to have separate config.ini files loaded + by using names in the form: $HOST-config.ini.php. Where $HOST is + the FQDN ($_SERVER['SERVER_NAME'] from php) of your site. + This implies that virtual hosting is a lot easier as sites + can share virtually all psl files and the only thing changing + is whatever comes from the database. + 2004-November 16 Joe Stewart <joe...@us... [BT] - submission/index.php, submissionForm.tpl, emailNotifySubmit.tpl, |
From: Luis M <le...@us...> - 2004-11-17 20:09:06
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9780 Modified Files: config-dist.ini.php Log Message: added note about known bug using 'file' and possibly 'static' caching: psl won't recursively make directories for you. it will only attempt to make a single directory for a given path: /path/to/jpcache_dir and not /path/to/jpcache/1/2/3/jpcache_dir, which would simply fail Index: config-dist.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** config-dist.ini.php 17 Nov 2004 19:16:34 -0000 1.27 --- config-dist.ini.php 17 Nov 2004 20:08:51 -0000 1.28 *************** *** 223,226 **** --- 223,231 ---- ;; TIP: if running on *NIX, you can set this to /dev/shm/cache to cache ;; files directly on RAM. + ;; BUG: Do not set this to a directory that doesn't exist, inside + ;; another that doesn't exists recursively: + ;; i.e. do not do: /dev/shm/1/2/3/. + ;; /dev/shm/1 will be created fine if you set your + ;; path to /dev/shm/1 ;jpcache.cachedir = /dev/shm/cache |
From: Luis M <le...@us...> - 2004-11-17 19:32:58
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1259 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ChangeLog 10 Nov 2004 23:08:44 -0000 1.23 --- ChangeLog 17 Nov 2004 19:32:44 -0000 1.24 *************** *** 1,3650 **** ! 2004-11-10 16:37 joestewart * include/templates/en/basic/slashHead-htmlarea3.tpl, ! include/templates/en/basic/slashHead.tpl, ! include/templates/en/basiccurves/slashHead-htmlarea3.tpl, ! CHANGES: corrected printer css changes. ! 2004-11-09 16:54 lems1 * include/modules/auth/slashAuth.class: fixed bug CR authentication [...7318 lines suppressed...] ! public_html/images/topics/topicquickies.gif, ! public_html/images/topics/topicredhat.gif, ! public_html/images/topics/topicscience.gif, ! public_html/images/topics/topicsgi.gif, ! public_html/images/topics/topicslashdot.gif, ! public_html/images/topics/topicspam.jpg, ! public_html/images/topics/topicstarwars.gif, ! public_html/images/topics/topicsun.gif, ! public_html/images/topics/topicsuse.gif, ! public_html/images/topics/topictech2.jpg, ! public_html/images/topics/topictv.jpg, ! public_html/images/topics/topicunix.jpg, ! public_html/images/topics/topicus.gif, ! public_html/images/topics/topicwine.gif, ! public_html/images/topics/topicx.jpg, ! public_html/images/topics/topicxmas.jpg, ! public_html/styles/basic.css, public_html/styles/xhtmlb.css, ! scripts/db_xfer.php3.disabled, scripts/url_test.php, ! tables/0.7/65_to_7.sql, tables/0.7/slash-all.sql: Initial revision |
From: Luis M <le...@us...> - 2004-11-17 19:30:20
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv377 Modified Files: .cvsignore config-dist.php Log Message: changed psl ini file from config-FQDN.ini.php to FQDN-config.ini.php so that it's easier for people to host sites straight from CVS Index: .cvsignore =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 5 Jun 2003 17:48:00 -0000 1.2 --- .cvsignore 17 Nov 2004 19:29:52 -0000 1.3 *************** *** 1,3 **** --- 1,4 ---- config.php config.ini.php + *-config.ini.php .htaccess Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** config-dist.php 17 Nov 2004 19:16:34 -0000 1.39 --- config-dist.php 17 Nov 2004 19:29:52 -0000 1.40 *************** *** 13,17 **** // This automagically detect what virtual-host we are using // or fallback to standard config.ini.php if needed: ! $psl_inifile = $psl_inifile_path."config-".$_SERVER['SERVER_NAME'].".ini.php"; if ( !is_file("$psl_inifile") ) { --- 13,17 ---- // This automagically detect what virtual-host we are using // or fallback to standard config.ini.php if needed: ! $psl_inifile = $psl_inifile_path.$_SERVER['SERVER_NAME']."-config.ini.php"; if ( !is_file("$psl_inifile") ) { |
From: Luis M <le...@us...> - 2004-11-17 19:16:43
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29803 Modified Files: config-dist.ini.php config-dist.php Log Message: changed the way that config.ini files are included. now the realm for virtualization is limitless and all .php and include files can be shared accross multiple virtualhosts from the same installation of psl. Simply name your oconfig.ini files config-FQDN.ini.php Index: config-dist.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** config-dist.ini.php 17 Nov 2004 17:39:44 -0000 1.26 --- config-dist.ini.php 17 Nov 2004 19:16:34 -0000 1.27 *************** *** 113,116 **** --- 113,118 ---- ;; ;; The base URL for the PHPSlash site. (no trailing slashes here) + ;; Could also be the full path as seen from the browser: + ;; i.e. http://domain.com/phpslash/public_html OR /phpslash/public_html rooturl = "<ROOT_URL>" ;; Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** config-dist.php 17 Nov 2004 17:35:01 -0000 1.38 --- config-dist.php 17 Nov 2004 19:16:34 -0000 1.39 *************** *** 8,14 **** */ ! // Specify full path to ini file ! $psl_inifile = "config.ini.php"; ! // end of required configuration. config.ini.php contains the phpSlash // configuration variables. --- 8,24 ---- */ ! // Specify full path to ini file (use trailing slashes) ! $psl_inifile_path = ""; // i.e. /path/to/dir/ ! // NOTE: You should not need to change the following: ! // This automagically detect what virtual-host we are using ! // or fallback to standard config.ini.php if needed: ! $psl_inifile = $psl_inifile_path."config-".$_SERVER['SERVER_NAME'].".ini.php"; ! if ( !is_file("$psl_inifile") ) ! { ! /* fall back to a nice default */ ! $psl_inifile = "config.ini.php"; ! } ! // DEBUG: print($psl_inifile); ! // DEBUG: exit(1); // end of required configuration. config.ini.php contains the phpSlash // configuration variables. |
From: Luis M <le...@us...> - 2004-11-17 17:39:53
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6319 Modified Files: config-dist.ini.php Log Message: changed jpc- to jpc since this last dash will be added later anyway. added a comment about jpcache prefix Index: config-dist.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** config-dist.ini.php 17 Nov 2004 17:08:38 -0000 1.25 --- config-dist.ini.php 17 Nov 2004 17:39:44 -0000 1.26 *************** *** 226,230 **** ;; ;; All non-static files will be prefixed with this string ! jpcache.fileprefix = "jpc-" ;;; --- 226,230 ---- ;; ;; All non-static files will be prefixed with this string ! jpcache.fileprefix = "jpc" ;;; |
From: Luis M <le...@us...> - 2004-11-17 17:35:12
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5079 Modified Files: config-dist.php Log Message: added sensible defaults to set jpcache.fileprefix to jpc if none found Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** config-dist.php 17 Nov 2004 17:29:35 -0000 1.37 --- config-dist.php 17 Nov 2004 17:35:01 -0000 1.38 *************** *** 339,345 **** // generated files. Please use a dedicated // directory, and make it writable ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix'];// Prefix used in the filename. This enables ! // us to (more accuratly) recognize jpcache- ! // files. $JPCACHE_VERSION = "2.0.0rc1"; --- 339,347 ---- // generated files. Please use a dedicated // directory, and make it writable ! if ( !empty ($_PSL['jpcache.fileprefix']) ) { ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix']; ! } else { ! $JPCACHE_FILEPREFIX = "jpc"; ! } $JPCACHE_VERSION = "2.0.0rc1"; *************** *** 422,427 **** } elseif($_PSL['jpcache.enable'] == 'file') { $JPCACHE_TYPE = "file"; ! $JPCACHE_DIR = $_PSL['jpcache.cachedir']; ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix']; addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); --- 424,433 ---- } elseif($_PSL['jpcache.enable'] == 'file') { $JPCACHE_TYPE = "file"; ! $JPCACHE_DIR = $_PSL['jpcache.cachedir']; ! if ( !empty ($_PSL['jpcache.fileprefix']) ) { ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix']; ! } else { ! $JPCACHE_FILEPREFIX = "jpc"; ! } addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); |
From: Luis M <le...@us...> - 2004-11-17 17:29:44
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3640 Modified Files: config-dist.php Log Message: renamed jpcachedir variable (key) to jpcache.classdir to avoid ambiguity with jpcache.cachedir and jpcache.fileprefix ... which are now customizable from config.ini.php by psl site admins. the ability to change the jpcache.classdir value has been postpone because psl depends on the files of the jpcache classdir to be structured in a certain way and they are heavily customized from upstream sources to suit psl needs. jpcache ships with psl anyway, so no need to change/customize this. it can be easily added in the future by simply editing config.php at what is now line 316 Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** config-dist.php 6 Nov 2004 22:18:41 -0000 1.36 --- config-dist.php 17 Nov 2004 17:29:35 -0000 1.37 *************** *** 1,4 **** <?php ! /* * config.php - Configuration File for PHPSlash --- 1,4 ---- <?php ! // vi: sts=3:ts=3 : /* * config.php - Configuration File for PHPSlash *************** *** 314,324 **** /* Full path to jpcache class dir */ ! if(empty($_PSL['jpcachedir'])) { ! $_PSL['jpcachedir'] = $_PSL['classdir'] . "/jpcache"; ! } ! /** ! * General jpcache configuration options. ! */ $JPCACHE_TIME = 900; // Default number of seconds to cache a page $JPCACHE_DEBUG = 0; // Turn debugging on/off --- 314,325 ---- /* Full path to jpcache class dir */ ! // FIXME is there a need for users to customize this ever? commented out for now ! //if(empty($_PSL['jpcache.classdir'])) { ! $_PSL['jpcache.classdir'] = $_PSL['classdir'] . "/jpcache"; ! //} ! /** ! * General jpcache configuration options. ! */ $JPCACHE_TIME = 900; // Default number of seconds to cache a page $JPCACHE_DEBUG = 0; // Turn debugging on/off *************** *** 338,342 **** // generated files. Please use a dedicated // directory, and make it writable ! $JPCACHE_FILEPREFIX = "jpc";// Prefix used in the filename. This enables // us to (more accuratly) recognize jpcache- // files. --- 339,343 ---- // generated files. Please use a dedicated // directory, and make it writable ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix'];// Prefix used in the filename. This enables // us to (more accuratly) recognize jpcache- // files. *************** *** 344,351 **** // Standard jpcache functions ! // require $_PSL['jpcachedir']. "/jpcache-main.php"; ! addLibraryRequirement("jpcache",$_PSL['jpcachedir'] . "/jpcache-main.php"); ! // require $_PSL['jpcachedir'] ."/type/$JPCACHE_TYPE.php"; // end of jpcache configuration --- 345,352 ---- // Standard jpcache functions ! // require $_PSL['jpcache.classdir']. "/jpcache-main.php"; ! addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] . "/jpcache-main.php"); ! // require $_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"; // end of jpcache configuration *************** *** 412,417 **** // PHPLIB Type specific jpcache implementations addClassRequirement("jpcacheDB","db_sql"); ! addClassRequirement("jpcacheDB",$_PSL['jpcachedir'] ."/type/phplib.php"); ! addLibraryRequirement("jpcache",$_PSL['jpcachedir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); if (!array_key_exists('slashSess', $HTTP_COOKIE_VARS)) { --- 413,418 ---- // PHPLIB Type specific jpcache implementations addClassRequirement("jpcacheDB","db_sql"); ! addClassRequirement("jpcacheDB",$_PSL['jpcache.classdir'] ."/type/phplib.php"); ! addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); if (!array_key_exists('slashSess', $HTTP_COOKIE_VARS)) { *************** *** 422,428 **** $JPCACHE_TYPE = "file"; $JPCACHE_DIR = $_PSL['jpcache.cachedir']; ! $JPCACHE_FILEPREFIX = ""; ! addLibraryRequirement("jpcache",$_PSL['jpcachedir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); --- 423,429 ---- $JPCACHE_TYPE = "file"; $JPCACHE_DIR = $_PSL['jpcache.cachedir']; ! $JPCACHE_FILEPREFIX = $_PSL['jpcache.fileprefix']; ! addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); *************** *** 455,459 **** // files. ! addLibraryRequirement("jpcache",$_PSL['jpcachedir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); --- 456,460 ---- // files. ! addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); *************** *** 471,475 **** $JPCACHE_MEMCACHE_HOST = "localhost"; // Memcache Server $JPCACHE_MEMCACHE_PORT = "11211"; // Port ! addLibraryRequirement("jpcache",$_PSL['jpcachedir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); // TODO this could be called from != off block if (!array_key_exists('slashSess', $HTTP_COOKIE_VARS)) { --- 472,476 ---- $JPCACHE_MEMCACHE_HOST = "localhost"; // Memcache Server $JPCACHE_MEMCACHE_PORT = "11211"; // Port ! addLibraryRequirement("jpcache",$_PSL['jpcache.classdir'] ."/type/$JPCACHE_TYPE.php"); loadLibrary("jpcache"); // TODO this could be called from != off block if (!array_key_exists('slashSess', $HTTP_COOKIE_VARS)) { |
From: Luis M <le...@us...> - 2004-11-17 17:09:02
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30120 Modified Files: config-dist.ini.php Log Message: assigning jpcache file prefixes to all file-based caching now possible (except for static files). Index: config-dist.ini.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.ini.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** config-dist.ini.php 29 Oct 2004 05:29:48 -0000 1.24 --- config-dist.ini.php 17 Nov 2004 17:08:38 -0000 1.25 *************** *** 223,226 **** --- 223,230 ---- ;jpcache.cachedir = /dev/shm/cache + ;; jpcache.fileprefix - valid values = string + ;; + ;; All non-static files will be prefixed with this string + jpcache.fileprefix = "jpc-" ;;; |
From: Joe S. <joe...@us...> - 2004-11-16 18:13:30
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21847/phpslash-dev Modified Files: CHANGES Log Message: submission fixes for jpcache and session. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.148 retrieving revision 1.149 diff -C2 -d -r1.148 -r1.149 *** CHANGES 15 Nov 2004 22:03:09 -0000 1.148 --- CHANGES 16 Nov 2004 18:13:21 -0000 1.149 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2004-November 16 Joe Stewart <joe...@us... + [BT] - submission/index.php, submissionForm.tpl, emailNotifySubmit.tpl, + submission.php - submission fixes for jpcache and session. + 2004-November 15 Joe Stewart <joe...@us... [BT] - Thanks to Josh Udall for reporting these bugs. |
From: Joe S. <joe...@us...> - 2004-11-16 18:13:02
|
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21728/phpslash-dev/include/templates/en/basic Modified Files: submissionForm.tpl emailNotifySubmission.tpl Log Message: submission fixes for jpcache and session. Index: submissionForm.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/submissionForm.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** submissionForm.tpl 12 Mar 2003 16:12:53 -0000 1.1.1.1 --- submissionForm.tpl 16 Nov 2004 18:12:51 -0000 1.2 *************** *** 58,63 **** <td class="descr">New Submittal Options:</td> <td> ! <input type="radio" checked="checked" name="content" value="plain" /> Plain Text ! <input type="radio" name="content" value="html" /> HTML <input type="radio" name="content" value="exttrans" /> Extended Translation </td> --- 58,63 ---- <td class="descr">New Submittal Options:</td> <td> ! <input type="radio" name="content" value="plain" /> Plain Text ! <input type="radio" checked="checked" name="content" value="html" /> HTML <input type="radio" name="content" value="exttrans" /> Extended Translation </td> *************** *** 66,70 **** <td> </td> <td> - <p><input type="checkbox" name="cookie" value="yes" {CHECKED} />Save Cookie with your name.</p> <input type="submit" name="submit" value="save" /> <input type="submit" name="submit" value="preview" /> --- 66,69 ---- Index: emailNotifySubmission.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/emailNotifySubmission.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** emailNotifySubmission.tpl 19 Apr 2004 21:10:11 -0000 1.3 --- emailNotifySubmission.tpl 16 Nov 2004 18:12:51 -0000 1.4 *************** *** 7,11 **** <!-- BEGIN headers_block --> From: "{SITE_NAME} Robot" <{SITE_OWNER}> ! X-Sender: {SITE_NAME} <{ROOTURL}> X-Mailer: phpSlash X-Priority: 3 --- 7,11 ---- <!-- BEGIN headers_block --> From: "{SITE_NAME} Robot" <{SITE_OWNER}> ! X-Sender: {SITE_NAME} <http://{SITE_HOST}{ROOTURL}> X-Mailer: phpSlash X-Priority: 3 *************** *** 16,20 **** You now need to login and check the Submissions. ! <{ROOTURL}>/admin/submissionAdmin.php> +=+=+=+=+=+=+=+=+=+=+=+=++=+=+=++=+=+=++=++=+=+=+ --- 16,20 ---- You now need to login and check the Submissions. ! <http://{SITE_HOST}{ROOTURL}/admin/submissionAdmin.php> +=+=+=+=+=+=+=+=+=+=+=+=++=+=+=++=+=+=++=++=+=+=+ |
From: Joe S. <joe...@us...> - 2004-11-16 18:13:02
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/submission In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21728/phpslash-dev/include/modules/submission Modified Files: index.php Log Message: submission fixes for jpcache and session. Index: index.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/submission/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.php 9 Jun 2003 19:10:18 -0000 1.4 --- index.php 16 Nov 2004 18:12:50 -0000 1.5 *************** *** 13,17 **** $ary_post = clean($HTTP_POST_VARS); } ! if (!empty($ary_post['cookie'])) { $submission_name = $ary_post['name']; --- 13,18 ---- $ary_post = clean($HTTP_POST_VARS); } ! /* ! TODO - 2004-11-16 - jvs - remove? if (!empty($ary_post['cookie'])) { $submission_name = $ary_post['name']; *************** *** 20,24 **** $sess->register("submission_email"); } ! $content = ''; --- 21,25 ---- $sess->register("submission_email"); } ! */ $content = ''; *************** *** 38,44 **** // send email for new submission. if ($_PSL['submitnotify']) { ! $ary['tpl'] = "emailNotifySubmission"; ! $ary['vars'] = $HTTP_POST_VARS; ! $success = emailNotify($ary); } } else { --- 39,45 ---- // send email for new submission. if ($_PSL['submitnotify']) { ! $notify_ary['tpl'] = "emailNotifySubmission"; ! $notify_ary['vars'] = $HTTP_POST_VARS; ! $success = emailNotify($notify_ary); } } else { |
From: Joe S. <joe...@us...> - 2004-11-16 18:13:02
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21728/phpslash-dev/public_html Modified Files: submission.php Log Message: submission fixes for jpcache and session. Index: submission.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/submission.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** submission.php 15 May 2003 18:19:55 -0000 1.3 --- submission.php 16 Nov 2004 18:12:51 -0000 1.4 *************** *** 5,8 **** --- 5,11 ---- $HTTP_GET_VARS['section'] = 'Submission'; + // don't cache admin pages + $cachetimeout=-1; + require('config.php'); |
From: Joe S. <joe...@us...> - 2004-11-15 22:09:26
|
Update of /cvsroot/phpslash/phpslash-dev/include/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7862/phpslash-dev/include/class Modified Files: functions.inc Log Message: corrected host links. Index: functions.inc =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/functions.inc,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** functions.inc 18 Oct 2004 23:11:42 -0000 1.19 --- functions.inc 15 Nov 2004 22:09:13 -0000 1.20 *************** *** 1196,1200 **** 'MAILTOADDRESS' => $ary['mail_to_address'], 'SITE_NAME' => $_PSL['site_name'], ! 'SITE_OWNER' => $_PSL['site_owner'] )); --- 1196,1201 ---- 'MAILTOADDRESS' => $ary['mail_to_address'], 'SITE_NAME' => $_PSL['site_name'], ! 'SITE_OWNER' => $_PSL['site_owner'], ! 'SITE_HOST' => $_SERVER['HTTP_HOST'] )); |
From: Joe S. <joe...@us...> - 2004-11-15 22:09:26
|
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7862/phpslash-dev/include/templates/en/basic Modified Files: emailNotifyComment.tpl Log Message: corrected host links. Index: emailNotifyComment.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/emailNotifyComment.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** emailNotifyComment.tpl 19 Apr 2004 21:10:11 -0000 1.3 --- emailNotifyComment.tpl 15 Nov 2004 22:09:14 -0000 1.4 *************** *** 7,11 **** <!-- BEGIN headers_block --> From: "{SITE_NAME} Robot" <{SITE_OWNER}> ! X-Sender: {SITE_NAME} <{ROOTURL}> X-Mailer: phpSlash X-Priority: 3 --- 7,11 ---- <!-- BEGIN headers_block --> From: "{SITE_NAME} Robot" <{SITE_OWNER}> ! X-Sender: {SITE_NAME} <http://{SITE_HOST}{ROOTURL}> X-Mailer: phpSlash X-Priority: 3 *************** *** 15,19 **** Notice: A new comment has been submitted to {SITE_NAME}. ! <{ROOTURL}/article.php?story_id={STORY_ID}#{COMMENT_ID}>. +=+=+=+=+=+=+=+=+=+=+=+=++=+=+=++=+=+=++=++=+=+=+ --- 15,19 ---- Notice: A new comment has been submitted to {SITE_NAME}. ! <http://{SITE_HOST}{ROOTURL}/article.php?story_id={STORY_ID}#{COMMENT_ID}>. +=+=+=+=+=+=+=+=+=+=+=+=++=+=+=++=+=+=++=++=+=+=+ |
Update of /cvsroot/phpslash/phpslash-dev/include/templates/en/basic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6766/phpslash-dev/include/templates/en/basic Modified Files: article-wml.tpl article-xhtmlb.tpl backendAV.tpl backendAtom.tpl backendBlock.tpl backendHTML.tpl backendJS.tpl backendJSData.tpl backendMozilla.tpl backendOpml.tpl backendRSS1.tpl backendRSS2.tpl backendRSS91.tpl backendRSS92.tpl backendWml.tpl backendXHTMLb.tpl slashHead-fckeditor.tpl slashHead-htmlarea3.tpl Log Message: corrected host links. Index: article-wml.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/article-wml.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article-wml.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- article-wml.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 2,6 **** <!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/> --- 2,6 ---- <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> <wml> ! <card title="{SITE_NAME} : {TITLE}"> <p> <b>{TITLE}</b><br/> Index: article-xhtmlb.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/article-xhtmlb.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article-xhtmlb.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- article-xhtmlb.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 3,8 **** <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <title>{SITE_NAME} {PAGETITLE} : {TITLE}</title> ! <link type="text/css" rel="stylesheet" href="{ROOTDIR}/styles/xhtmlb.css"/> </head> <body> --- 3,8 ---- <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <title>{SITE_NAME} : {TITLE}</title> ! <link type="text/css" rel="stylesheet" href="http://{SITE_HOST}/{ROOTDIR}/styles/xhtmlb.css"/> </head> <body> *************** *** 11,15 **** <p>{BODY_TEXT}</p> ! <p>Delivered by <a href="{ROOTDIR}">{SITENAME}</a></p> </body> </html> --- 11,15 ---- <p>{BODY_TEXT}</p> ! <p>Delivered by <a href="http://{SITE_HOST}/{ROOTDIR}">{SITE_NAME}</a></p> </body> </html> Index: backendAV.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendAV.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendAV.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendAV.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 11,15 **** <ul> <!-- BEGIN each_story --> ! <li><a href="{ROOTDIR}/article.php?story_id={STORY_ID}&submit=pda" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </ul> --- 11,15 ---- <ul> <!-- BEGIN each_story --> ! <li><a href="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}&view=pda" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </ul> Index: backendAtom.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendAtom.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** backendAtom.tpl 1 Nov 2004 17:35:48 -0000 1.1 --- backendAtom.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 3,7 **** <title>{SITE_TITLE}</title> <link rel="alternate" type="text/html" ! href="{ROOTDIR}"/> <modified>{DATE}</modified> <author> --- 3,7 ---- <title>{SITE_TITLE}</title> <link rel="alternate" type="text/html" ! href="http://{SITE_HOST}{ROOTDIR}"/> <modified>{DATE}</modified> <author> *************** *** 17,21 **** <title>{TITLE}</title> <link rel="alternate" type="text/html" ! href="{ROOTURL}/index.php?story_id={STORY_ID}"/> <author> <name>{NAME}</name> --- 17,21 ---- <title>{TITLE}</title> <link rel="alternate" type="text/html" ! href="http://{SITE_HOST}{ROOTURL}/index.php?story_id={STORY_ID}"/> <author> <name>{NAME}</name> Index: backendBlock.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendBlock.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendBlock.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendBlock.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 1,9 **** This is the latest news from {SITE_NAME} ! at {ROOTDIR} Fields are: item,link,description <!-- BEGIN each_story --> %% {TITLE} ! href="{ROOTDIR}/article.php?story_id={STORY_ID} {INTRO_TEXT} <!-- END each_story --> --- 1,9 ---- This is the latest news from {SITE_NAME} ! at http://{SITE_HOST}{ROOTDIR} Fields are: item,link,description <!-- BEGIN each_story --> %% {TITLE} ! href="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID} {INTRO_TEXT} <!-- END each_story --> Index: backendHTML.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendHTML.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendHTML.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendHTML.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 2,11 **** <tr> <td> ! <IMG SRC="{IMAGEDIR}/layout/blank.gif" HEIGHT="1" WIDTH="1" ALT=""> </td> </tr> <tr bgcolor="#3F4469" align="LEFT"> <td valign=top> ! <a href="{ROOTDIR}" target="{TARGET}"><font size="4" color="white" face="arial,helvetica"><b>{SITE_NAME}</b></font></a></td> </tr> <tr> --- 2,11 ---- <tr> <td> ! <IMG SRC="http://{SITE_HOST}{IMAGEDIR}/layout/blank.gif" HEIGHT="1" WIDTH="1" ALT=""> </td> </tr> <tr bgcolor="#3F4469" align="LEFT"> <td valign=top> ! <a href="http://{SITE_HOST}{ROOTDIR}" target="{TARGET}"><font size="4" color="white" face="arial,helvetica"><b>{SITE_NAME}</b></font></a></td> </tr> <tr> *************** *** 13,17 **** <ul> <!-- BEGIN each_story --> ! <li><a href="{ROOTDIR}/article.php?story_id={STORY_ID}" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </ul> --- 13,17 ---- <ul> <!-- BEGIN each_story --> ! <li><a href="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </ul> Index: backendJS.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendJS.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendJS.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendJS.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 1,5 **** ! document.write('<table><TR><TH class="NEWSTITLE"><A HREF="{ROOTDIR}/">{SITE_NAME}</A></TH></TR>'); <!-- BEGIN each_story --> ! document.write('<TR><TD class="NEWSITEM"><A HREF="{ROOTDIR}/article.php?story_id={STORY_ID}" TARGET="_self">{TITLE}</A> {INTRO_TEXT}</TD></TR>'); <!-- END each_story --> ! document.write('<TR><TD class="NEWSCOMMENT" align=right nowrap><small><A HREF="{ROOTDIR}"><IMG border=0 SRC="{IMAGEDIR}/topics/topicphpslash.gif" width=100 height=40 align=left></A></TD></TR><TR><TD class="NEWSCOMMENT" align=right nowrap>Powered by <A HREF="{ROOTDIR}">{SITE_NAME}</A></small></TD></TR></table>'); --- 1,5 ---- ! document.write('<table><TR><TH class="NEWSTITLE"><A HREF="http://{SITE_HOST}{ROOTDIR}/">{SITE_NAME}</A></TH></TR>'); <!-- BEGIN each_story --> ! document.write('<TR><TD class="NEWSITEM"><A HREF="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}" TARGET="_self">{TITLE}</A> {INTRO_TEXT}</TD></TR>'); <!-- END each_story --> ! document.write('<TR><TD class="NEWSCOMMENT" align=right nowrap><small><A HREF="http://{SITE_HOST}{ROOTDIR}"><IMG border=0 SRC="http://{SITE_HOST}{IMAGEDIR}/topics/topicphpslash.gif" width=100 height=40 align=left></A></TD></TR><TR><TD class="NEWSCOMMENT" align=right nowrap>Powered by <A HREF="http://{SITE_HOST}{ROOTDIR}">{SITE_NAME}</A></small></TD></TR></table>'); Index: backendJSData.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendJSData.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendJSData.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendJSData.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 1,4 **** newsHostName = '{SITE_NAME}'; ! newsHostURL = '{ROOTDIR}'; newsCount = {COUNT}; newsModDate = '{DATE}'; --- 1,4 ---- newsHostName = '{SITE_NAME}'; ! newsHostURL = 'http://{SITE_HOST}{ROOTDIR}'; newsCount = {COUNT}; newsModDate = '{DATE}'; *************** *** 10,14 **** <!-- BEGIN each_story --> newsItemTitle[{IDX}] = '{TITLE}'; ! newsItemURL[{IDX}] = '{ROOTDIR}/article.php?story_id={STORY_ID}'; newsItemDesc[{IDX}] = '{INTRO_TEXT}'; <!-- END each_story --> --- 10,14 ---- <!-- BEGIN each_story --> newsItemTitle[{IDX}] = '{TITLE}'; ! newsItemURL[{IDX}] = 'http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}'; newsItemDesc[{IDX}] = '{INTRO_TEXT}'; <!-- END each_story --> Index: backendMozilla.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendMozilla.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** backendMozilla.tpl 1 Sep 2004 18:59:59 -0000 1.2 --- backendMozilla.tpl 15 Nov 2004 22:03:11 -0000 1.3 *************** *** 2,6 **** <head> <title>{SITE_NAME}</title> ! <META HTTP-EQUIV="Refresh" CONTENT="3600"; URL={ROOTDIR}/backend.php?view=mozilla&d=0&max=5"> </head> --- 2,6 ---- <head> <title>{SITE_NAME}</title> ! <META HTTP-EQUIV="Refresh" CONTENT="3600"; URL=http://{SITE_HOST}{ROOTDIR}/backend.php?view=mozilla&d=0&max=5"> </head> *************** *** 13,22 **** <tbody style="font-size: x-small;"> <tr valign=middle align=center> ! <td><A HREF="{ROOTDIR}" target="{TARGET}"><IMG SRC="http://www.php-slash.org/images/smallphpslashlogo.gif" width="88" height="30" border="0"></A></td> </tr> <tr> <td align=left> <!-- BEGIN each_story --> ! <li><a href="{ROOTDIR}/article.php?story_id={STORY_ID}" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </td> --- 13,22 ---- <tbody style="font-size: x-small;"> <tr valign=middle align=center> ! <td><A HREF="http://{SITE_HOST}/{ROOTDIR}" target="{TARGET}"><IMG SRC="http://www.php-slash.org/images/smallphpslashlogo.gif" width="88" height="30" border="0"></A></td> </tr> <tr> <td align=left> <!-- BEGIN each_story --> ! <li><a href="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}" target="{TARGET}">{TITLE}</a><br>{INTRO_TEXT} <!-- END each_story --> </td> *************** *** 25,29 **** <td align=center> <br> ! <FORM method=GET action="{ROOTDIR}/search.php" target="_Content"> <INPUT type=TEXT name=query value="" size=15 style="font-size: x-small;"> <INPUT type=submit value="Search {SITE_NAME}" style="font-size: x-small;"><BR> --- 25,29 ---- <td align=center> <br> ! <FORM method=GET action="http://{SITE_HOST}{ROOTDIR}/search.php" target="_Content"> <INPUT type=TEXT name=query value="" size=15 style="font-size: x-small;"> <INPUT type=submit value="Search {SITE_NAME}" style="font-size: x-small;"><BR> *************** *** 31,35 **** </tr> <tr align=center> ! <td><A HREF="{ROOTDIR}/backend.php?view=mozilla&d=0&max=5" > Refresh Sidebar</A></td> </tr> --- 31,35 ---- </tr> <tr align=center> ! <td><A HREF="http://{SITE_HOST}{ROOTDIR}/backend.php?view=mozilla&d=0&max=5" > Refresh Sidebar</A></td> </tr> Index: backendOpml.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendOpml.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendOpml.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendOpml.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 6,14 **** </head> <body> ! <outline type="rss" version="0.91" text="{SITE_SLOGAN}" htmlUrl="{ROOTDIR}" xmlUrl="{ROOTDIR}/backend.php?view=opml"> <!-- BEGIN each_story --> <outline text="{TITLE}"> ! <outline type="link" url="{ROOTDIR}/article.php?story_id={STORY_ID}" text="{INTRO_TEXT}" /> </outline> <!-- END each_story --> --- 6,14 ---- </head> <body> ! <outline type="rss" version="0.91" text="{SITE_SLOGAN}" htmlUrl="http://{SITE_HOST}{ROOTDIR}" xmlUrl="http://{SITE_HOST}{ROOTDIR}/backend.php?view=opml"> <!-- BEGIN each_story --> <outline text="{TITLE}"> ! <outline type="link" url="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}" text="{INTRO_TEXT}" /> </outline> <!-- END each_story --> Index: backendRSS1.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendRSS1.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** backendRSS1.tpl 1 Sep 2004 18:59:59 -0000 1.2 --- backendRSS1.tpl 15 Nov 2004 22:03:11 -0000 1.3 *************** *** 9,13 **** <channel rdf:about="{SITE_NAME}"> <title>{SITE_NAME}</title> ! <link>{ROOTDIR}</link> <description>{DESCRIPTION}</description> --- 9,13 ---- <channel rdf:about="{SITE_NAME}"> <title>{SITE_NAME}</title> ! <link>http://{SITE_HOST}{ROOTDIR}</link> <description>{DESCRIPTION}</description> *************** *** 19,33 **** <admin:generatorAgent rdf:resource="http://www.php-slash.org/rss.php?rssv=065"/> ! <image rdf:resource="{IMAGEDIR}/topics/topicphpslash.gif" /> <items> <rdf:Seq> <!-- BEGIN each_item --> ! <rdf:li resource="{ROOTDIR}/article.php?story_id={STORY_ID}"/> <!-- END each_item --> </rdf:Seq> </items> ! <textinput rdf:about="{ROOTDIR}/search.php"/> </channel> --- 19,33 ---- <admin:generatorAgent rdf:resource="http://www.php-slash.org/rss.php?rssv=065"/> ! <image rdf:resource="http://{SITE_HOST}{IMAGEDIR}/topics/topicphpslash.gif" /> <items> <rdf:Seq> <!-- BEGIN each_item --> ! <rdf:li resource="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}"/> <!-- END each_item --> </rdf:Seq> </items> ! <textinput rdf:about="http://{SITE_HOST}{ROOTDIR}/search.php"/> </channel> *************** *** 35,46 **** <image> <title>{SITE_TITLE}</title> ! <link>{ROOTDIR}</link> ! <url>{IMAGEDIR}/topics/topicphpslash.gif</url> </image> <!-- BEGIN each_story --> ! <item rdf:about="{ROOTDIR}/article.php?story_id={STORY_ID}"> <title>{TITLE}</title> ! <link>{ROOTDIR}/article.php?story_id={STORY_ID}</link> <description> {INTRO_TEXT} --- 35,46 ---- <image> <title>{SITE_TITLE}</title> ! <link>http://{SITE_HOST}{ROOTDIR}</link> ! <url>http://{SITE_HOST}{IMAGEDIR}/topics/topicphpslash.gif</url> </image> <!-- BEGIN each_story --> ! <item rdf:about="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}"> <title>{TITLE}</title> ! <link>http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}</link> <description> {INTRO_TEXT} *************** *** 49,57 **** <!-- END each_story --> ! <textinput rdf:about="{ROOTDIR}/search.php"> <title>Search {SITE_NAME}</title> <description>Search the archives of {SITE_NAME}</description> <name>query</name> ! <link>{ROOTDIR}/search.php</link> </textinput> --- 49,57 ---- <!-- END each_story --> ! <textinput rdf:about="http://{SITE_HOST}{ROOTDIR}/search.php"> <title>Search {SITE_NAME}</title> <description>Search the archives of {SITE_NAME}</description> <name>query</name> ! <link>http://{SITE_HOST}{ROOTDIR}/search.php</link> </textinput> Index: backendRSS2.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendRSS2.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** backendRSS2.tpl 1 Nov 2004 17:35:48 -0000 1.1 --- backendRSS2.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 3,7 **** <channel> <title>{SITE_TITLE}</title> ! <link>{ROOTDIR}</link> <description>{SITE_SLOGAN}</description> <language>en-us</language> --- 3,7 ---- <channel> <title>{SITE_TITLE}</title> ! <link>http://{SITE_HOST}{ROOTDIR}</link> <description>{SITE_SLOGAN}</description> <language>en-us</language> *************** *** 16,23 **** <item> <title>{TITLE}</title> ! <link>{ROOTURL}/index.php?story_id={STORY_ID}</link> <description>{INTRO_TEXT}</description> <pubDate>{DATEF}</pubDate> ! <guid>{ROOTURL}/index.php?story_id={STORY_ID}</guid> </item> <!-- END each_story --> --- 16,23 ---- <item> <title>{TITLE}</title> ! <link>http://{SITE_HOST}{ROOTURL}/index.php?story_id={STORY_ID}</link> <description>{INTRO_TEXT}</description> <pubDate>{DATEF}</pubDate> ! <guid>http://{SITE_HOST}{ROOTURL}/index.php?story_id={STORY_ID}</guid> </item> <!-- END each_story --> Index: backendRSS91.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendRSS91.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** backendRSS91.tpl 1 Nov 2004 17:35:48 -0000 1.2 --- backendRSS91.tpl 15 Nov 2004 22:03:11 -0000 1.3 *************** *** 12,19 **** <title>{SITE_NAME}: {SITE_SLOGAN}</title> ! <link>{ROOTDIR}</link> <image> <title>{SITE_TITLE}</title> ! <url>{IMAGEDIR}/topics/topicphpslash.gif</url> <width>100</width> <height>40</height> --- 12,19 ---- <title>{SITE_NAME}: {SITE_SLOGAN}</title> ! <link>http://{SITE_HOST}{ROOTDIR}</link> <image> <title>{SITE_TITLE}</title> ! <url>http://{SITE_HOST}{IMAGEDIR}/topics/topicphpslash.gif</url> <width>100</width> <height>40</height> *************** *** 24,28 **** <item> <title>{TITLE}</title> ! <link>{ROOTDIR}/index.php?story_id={STORY_ID}</link> <description>{INTRO_TEXT}</description> </item> --- 24,28 ---- <item> <title>{TITLE}</title> ! <link>http://{SITE_HOST}{ROOTDIR}/index.php?story_id={STORY_ID}</link> <description>{INTRO_TEXT}</description> </item> Index: backendRSS92.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendRSS92.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendRSS92.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendRSS92.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 9,16 **** <title>{SITE_NAME}: {SITE_SLOGAN}</title> ! <link>{ROOTDIR}</link> <image> <title>{SITE_TITLE}</title> ! <url>{IMAGEDIR}/topics/topicphpslash.gif</url> <width>100</width> <height>40</height> --- 9,16 ---- <title>{SITE_NAME}: {SITE_SLOGAN}</title> ! <link>http://{SITE_HOST}{ROOTDIR}</link> <image> <title>{SITE_TITLE}</title> ! <url>http://{SITE_HOST}{IMAGEDIR}/topics/topicphpslash.gif</url> <width>100</width> <height>40</height> *************** *** 20,24 **** <!-- BEGIN each_story --> <item> ! <description><a href="{ROOTDIR}">{SITE_NAME}</a> - <a href="{ROOTDIR}/article.php?story_id={STORY_ID}"><b>{TITLE}</b></a> &quot;<em>{INTRO_TEXT}</em>&quot; </description> </item> --- 20,24 ---- <!-- BEGIN each_story --> <item> ! <description><a href="http://{SITE_HOST}{ROOTDIR}">{SITE_NAME}</a> - <a href="http://{SITE_HOST}{ROOTDIR}/article.php?story_id={STORY_ID}"><b>{TITLE}</b></a> &quot;<em>{INTRO_TEXT}</em>&quot; </description> </item> Index: backendWml.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendWml.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendWml.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendWml.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 4,10 **** <card id="nifcard" title="{SITE_NAME}"> <!-- BEGIN each_story --> ! <p><u><a href="{ROOTDIR}/article.php?story_id={STORY_ID}&submit=wml">{TITLE}</a></u><br/> {INTRO_TEXT}</p> <!-- END each_story --> ! <p align="center">Show [ <a title="full description" href="{ROOTDIR}/backend.php?view=wml">Intro</a> | <a title="no description" href="{ROOTDIR}/backend.php?view=wml&d=0">No Intro</a> ]</p> <p align="right">News collected from {SITE_NAME}</p> </card> --- 4,10 ---- <card id="nifcard" title="{SITE_NAME}"> <!-- BEGIN each_story --> ! <p><u><a href="http://{SITE_HOST}{ROOTDIR}/index.php?story_id={STORY_ID}&view=wml-article">{TITLE}</a></u><br/> {INTRO_TEXT}</p> <!-- END each_story --> ! <p align="center">Show [ <a title="full description" href="http://{SITE_HOST}{ROOTDIR}/index.php?view=wml">Intro</a> | <a title="no description" href="http://{SITE_HOST}{ROOTDIR}/index.php?view=wml&d=0">No Intro</a> ]</p> <p align="right">News collected from {SITE_NAME}</p> </card> Index: backendXHTMLb.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/backendXHTMLb.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** backendXHTMLb.tpl 12 Mar 2003 16:12:52 -0000 1.1.1.1 --- backendXHTMLb.tpl 15 Nov 2004 22:03:11 -0000 1.2 *************** *** 4,14 **** <head> <title>{SITE_NAME}</title> ! <link type="text/css" rel="stylesheet" href="{ROOTDIR}/styles/xhtmlb.css"/> </head> <body> <!-- BEGIN each_story --> ! <p><a href="{ROOTDIR}/article.php?story_id={STORY_ID}&submit=xhtmlb">{TITLE}</a><br/> {INTRO_TEXT}</p> <!-- END each_story --> ! <p class="menu">Show [ <a title="full description" href="{ROOTDIR}/backend.php?view=xhtmlb">Intro</a> | <a title="no description" href="{ROOTDIR}/backend.php?view=xhtmlb&d=0">No Intro</a> ]</p> <p>News collected from {SITE_NAME}</p> </body> --- 4,14 ---- <head> <title>{SITE_NAME}</title> ! <link type="text/css" rel="stylesheet" href="http://{SITE_HOST}{ROOTDIR}/styles/xhtmlb.css"/> </head> <body> <!-- BEGIN each_story --> ! <p><a href="http://{SITE_HOST}{ROOTDIR}/index.php?story_id={STORY_ID}&view=xhtmlbarticle">{TITLE}</a><br/> {INTRO_TEXT}</p> <!-- END each_story --> ! <p class="menu">Show [ <a title="full description" href="http://{SITE_HOST}{ROOTDIR}/backend.php?view=xhtmlb">Intro</a> | <a title="no description" href="http://{SITE_HOST}{ROOTDIR}/backend.php?view=xhtmlb&d=0">No Intro</a> ]</p> <p>News collected from {SITE_NAME}</p> </body> Index: slashHead-fckeditor.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/slashHead-fckeditor.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** slashHead-fckeditor.tpl 12 Nov 2004 17:28:18 -0000 1.5 --- slashHead-fckeditor.tpl 15 Nov 2004 22:03:12 -0000 1.6 *************** *** 1,4 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> ! <!-- START slashHead.tpl --> <html> --- 1,4 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> ! <!-- START slashHead-fckeditor.tpl --> <html> *************** *** 109,111 **** </div> <!-- id="header" --> ! <!-- END slashHead.tpl --> --- 109,111 ---- </div> <!-- id="header" --> ! <!-- END slashHead-fckeditor.tpl --> Index: slashHead-htmlarea3.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/templates/en/basic/slashHead-htmlarea3.tpl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** slashHead-htmlarea3.tpl 12 Nov 2004 17:28:18 -0000 1.9 --- slashHead-htmlarea3.tpl 15 Nov 2004 22:03:12 -0000 1.10 *************** *** 1,4 **** <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> ! <!-- START slashHead.tpl --> <html> --- 1,4 ---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> ! <!-- START slashHead-htmlarea3.tpl --> <html> *************** *** 256,258 **** </div> <!-- id="header" --> ! <!-- END slashHead.tpl --> --- 256,258 ---- </div> <!-- id="header" --> ! <!-- END slashHead-htmlarea3.tpl --> |
From: Joe S. <joe...@us...> - 2004-11-15 22:03:20
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6766/phpslash-dev Modified Files: CHANGES Log Message: corrected host links. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.147 retrieving revision 1.148 diff -C2 -d -r1.147 -r1.148 *** CHANGES 15 Nov 2004 18:44:57 -0000 1.147 --- CHANGES 15 Nov 2004 22:03:09 -0000 1.148 *************** *** 20,23 **** --- 20,24 ---- psl_core.sql - Comments block was in Submission section. Mailinglist.class - add host.domain to URL. + backend*.tpl - corrected host links. 2004-November 11 Joe Stewart <joe...@us... |
From: Joe S. <joe...@us...> - 2004-11-15 22:03:20
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/story In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6766/phpslash-dev/include/modules/story Modified Files: backend.php Log Message: corrected host links. Index: backend.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/story/backend.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** backend.php 6 Nov 2004 21:16:45 -0000 1.2 --- backend.php 15 Nov 2004 22:03:10 -0000 1.3 *************** *** 117,124 **** --- 117,144 ---- $viewtpl = 'backendTxt.tpl'; break; + case 'wml-article': + if(array_key_exists('story_id', $ary)) { + $viewtpl = 'article-wml.tpl'; + $story_ary = $story->extractStory($ary); + $stories[0] = $story_ary; + $ary['d'] = 'd'; + header("Content-type: text/vnd.wap.wml"); + break; + } case 'wml': $viewtpl = 'backendWml.tpl'; header("Content-type: text/vnd.wap.wml"); break; + case 'xhtmlb-article': + if(array_key_exists('story_id', $ary)) { + $viewtpl = 'article-xhtmlb.tpl'; + $story_ary = $story->extractStory($ary); + $stories[0] = $story_ary; + $ary['d'] = 'd'; + header("Content-type: text/vnd.wap.wml"); + break; + } else { + echo "huh?"; + } case 'xhtmlb': $viewtpl = 'backendXHTMLb.tpl'; *************** *** 201,204 **** --- 221,226 ---- 'INTRO_TEXT' => $description, 'INTRO_TEXT_HTML' => $stories[$i]['intro_text'], + 'BODY_TEXT' => htmlspecialchars(strip_tags($stories[$i]["body_text"])), + 'BODY_TEXT_HTML' => $stories[$i]['body_text'], 'IDX' => $i, 'DATEF' => $stories[$i]['datef'], |
From: Joe S. <joe...@us...> - 2004-11-15 18:45:06
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28842/phpslash-dev Modified Files: CHANGES Log Message: Comments block was in Submission section. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.146 retrieving revision 1.147 diff -C2 -d -r1.146 -r1.147 *** CHANGES 15 Nov 2004 18:35:56 -0000 1.146 --- CHANGES 15 Nov 2004 18:44:57 -0000 1.147 *************** *** 19,22 **** --- 19,23 ---- submission/admin.php - next wasn't always available. psl_core.sql - Comments block was in Submission section. + Mailinglist.class - add host.domain to URL. 2004-November 11 Joe Stewart <joe...@us... |
From: Joe S. <joe...@us...> - 2004-11-15 18:44:07
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/mailinglist In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28651/phpslash-dev/include/modules/mailinglist Modified Files: MailingList.class Log Message: Comments block was in Submission section. Index: MailingList.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/mailinglist/MailingList.class,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MailingList.class 2 Sep 2004 17:26:20 -0000 1.8 --- MailingList.class 15 Nov 2004 18:43:58 -0000 1.9 *************** *** 297,301 **** while($db->next_record()) { ! $url = $this->psl["rooturl"] . "/article.php?story_id=" . $db->Record["story_id"]; $this->templ->set_var(array( 'AUTHOR_NAME' => $db->Record["name"], --- 297,301 ---- while($db->next_record()) { ! $url = "http://". $_SERVER['HTTP_HOST']."/".$this->psl["rooturl"] . "/article.php?story_id=" . $db->Record["story_id"]; $this->templ->set_var(array( 'AUTHOR_NAME' => $db->Record["name"], |
From: Joe S. <joe...@us...> - 2004-11-15 18:39:07
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27585/phpslash-skins/include/templates/en/ShankZen Modified Files: slashHead-fckeditor.tpl slashHead-htmlarea3.tpl Log Message: header filenames wrong. Index: slashHead-fckeditor.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen/slashHead-fckeditor.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** slashHead-fckeditor.tpl 12 Nov 2004 17:30:35 -0000 1.5 --- slashHead-fckeditor.tpl 15 Nov 2004 18:38:58 -0000 1.6 *************** *** 1,4 **** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <!-- START slashHead.tpl --> <html> <head> --- 1,4 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <!-- START slashHead-fckeditor.tpl --> <html> <head> *************** *** 117,119 **** </table> <!-- end: header --> ! <!-- END slashHead.tpl --> --- 117,119 ---- </table> <!-- end: header --> ! <!-- END slashHead-fckeditor.tpl --> Index: slashHead-htmlarea3.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/ShankZen/slashHead-htmlarea3.tpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** slashHead-htmlarea3.tpl 12 Nov 2004 17:30:36 -0000 1.14 --- slashHead-htmlarea3.tpl 15 Nov 2004 18:38:58 -0000 1.15 *************** *** 1,4 **** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <!-- START slashHead.tpl --> <html> <head> --- 1,4 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <!-- START slashHead-htmlarea3.tpl --> <html> <head> *************** *** 265,267 **** </table> <!-- end: header --> ! <!-- END slashHead.tpl --> --- 265,267 ---- </table> <!-- end: header --> ! <!-- END slashHead-htmlarea3.tpl --> |
From: Joe S. <joe...@us...> - 2004-11-15 18:36:09
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/submission In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26888/phpslash-dev/include/modules/submission Modified Files: admin.php Log Message: Comments block was in Submission section. Index: admin.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/submission/admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin.php 20 May 2003 17:07:10 -0000 1.2 --- admin.php 15 Nov 2004 18:35:56 -0000 1.3 *************** *** 39,47 **** $submit = clean($HTTP_GET_VARS['submit']); $submission_id = clean($HTTP_GET_VARS['submission_id']); ! $next = clean($HTTP_GET_VARS['next']); } else { $submit = ''; } if ($perm->have_perm("submissionEdit")) { --- 39,49 ---- $submit = clean($HTTP_GET_VARS['submit']); $submission_id = clean($HTTP_GET_VARS['submission_id']); ! // $next = clean($HTTP_GET_VARS['next']); } else { $submit = ''; } + $next = clean($HTTP_GET_VARS['next']); + if ($perm->have_perm("submissionEdit")) { |
From: Joe S. <joe...@us...> - 2004-11-15 18:36:05
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26888/phpslash-dev Modified Files: CHANGES Log Message: Comments block was in Submission section. Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.145 retrieving revision 1.146 diff -C2 -d -r1.145 -r1.146 *** CHANGES 12 Nov 2004 17:28:17 -0000 1.145 --- CHANGES 15 Nov 2004 18:35:56 -0000 1.146 *************** *** 13,16 **** --- 13,23 ---- 9 - Removal of something (kill -9 :) + 2004-November 15 Joe Stewart <joe...@us... + [BT] - Thanks to Josh Udall for reporting these bugs. + slashHead-fckeditor.tpl, slashHead-htmlarea3.tpl - + change file name correctly. + submission/admin.php - next wasn't always available. + psl_core.sql - Comments block was in Submission section. + 2004-November 11 Joe Stewart <joe...@us... [BT] - slashHead.tpl, slashHead-fckeditor.tpl, slashHead-htmlarea3.tpl - |