phpslash-commit Mailing List for phpSlash (Page 57)
Brought to you by:
joestewart,
nhruby
This list is closed, nobody may subscribe to it.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(11) |
Nov
(59) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(52) |
Feb
(77) |
Mar
(118) |
Apr
(76) |
May
(106) |
Jun
(145) |
Jul
(9) |
Aug
(15) |
Sep
(78) |
Oct
(83) |
Nov
(105) |
Dec
(51) |
2003 |
Jan
(105) |
Feb
(100) |
Mar
(111) |
Apr
(149) |
May
(95) |
Jun
(56) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
(22) |
Nov
(117) |
Dec
(6) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(25) |
May
|
Jun
(11) |
Jul
(26) |
Aug
(85) |
Sep
(119) |
Oct
(312) |
Nov
(271) |
Dec
(5) |
2005 |
Jan
(6) |
Feb
|
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joe S. <joe...@us...> - 2003-03-19 20:07:38
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv15813/phpslash-ft/public_html Modified Files: profile.php3 Log Message: revised cronmail, mailinglist POST, and translated glossary pagetitle Index: profile.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/profile.php3,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** profile.php3 25 Feb 2003 15:04:11 -0000 1.10 --- profile.php3 19 Mar 2003 20:07:34 -0000 1.11 *************** *** 40,44 **** // expire cache for this session ! jpcache_gc('string', "-slashSess-" . $sess->id, "100"); } else { $content .= getError("Profile not updated"); --- 40,46 ---- // expire cache for this session ! if(function_exists('jpcache_gc')) { ! jpcache_gc('string', "-slashSess-" . $sess->id, "100"); ! } } else { $content .= getError("Profile not updated"); |
From: Joe S. <joe...@us...> - 2003-03-19 20:06:44
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv15010/phpslash-ft Modified Files: CHANGES Log Message: revised cronmail, mailinglist POST, and translated glossary pagetitle Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.724 retrieving revision 1.725 diff -C2 -d -r1.724 -r1.725 *** CHANGES 18 Mar 2003 16:23:17 -0000 1.724 --- CHANGES 19 Mar 2003 20:06:03 -0000 1.725 *************** *** 13,16 **** --- 13,23 ---- 9 - Removal of something (kill -9 :) + 2003-March-19 2:00PM CST Joe Stewart <joe...@us...> + [B] - mailinglist.php3 - change ary to POST vars. + glossary.php3 - Translate page title. + cronmail.php3 - Luis' revised cronmail that calls the Mailinglist class + method. + profile.php3 - check to see if jpcache is enabled. + 2003-March-18 10:00AM CST Joe Stewart <joe...@us...> [B] - Mailinglist.class - correct "message" typo. |
From: Joe S. <joe...@us...> - 2003-03-19 20:06:18
|
Update of /cvsroot/phpslash/phpslash-ft/contrib In directory sc8-pr-cvs1:/tmp/cvs-serv15010/phpslash-ft/contrib Modified Files: cronmail.php3 Log Message: revised cronmail, mailinglist POST, and translated glossary pagetitle Index: cronmail.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/contrib/cronmail.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** cronmail.php3 8 Jan 2003 17:00:45 -0000 1.9 --- cronmail.php3 19 Mar 2003 20:06:13 -0000 1.10 *************** *** 2,56 **** // #!/usr/bin/php // $Id$ ! // Written by 'Blake' ! // Modified for phpSlash (v0.65) by: // Luis Mondesi <le...@ho...> ! // Last modified: 2002-Jul-28 // ! // USAGE: create a cron job that calls this file every 15 minutes ! // starting at 1:00 am up to 6:30 am // example: ! // 00,15,30,45 1-6 * * * /usr/bin/php /path/to/cronmail.php3 2>&1> /dev/null ! // ! // of course, do not put the 2>&... redirection to /dev/null if you want to ! // get a report on what was done :-) ! // ! // ! // NOTES: ! // The following is an example of how the tables should ! // look like. Check the alter_table...sql script ! // for altering the .65f tables for this script ! // to work... ! // ! // Table structure for table 'psl_mailinglist' ! // ! //CREATE TABLE psl_mailinglist ( ! // id int(30) DEFAULT '0' NOT NULL auto_increment, ! // email varchar(100) DEFAULT '' NOT NULL, ! // name varchar(100), ! // timestamp timestamp(14), ! // html tinyint(2) DEFAULT '0' NOT NULL, ! // PRIMARY KEY (id), ! // UNIQUE email (email) ! //); ! ! // ! // Table structure for table 'mailing_frequency' ! // ! //CREATE TABLE psl_mailinglist_frequency ( ! // id int(30) DEFAULT '0' NOT NULL, ! // frequency char(30) DEFAULT '' NOT NULL, ! // dayback int(11) DEFAULT '0' NOT NULL ! //); ! // ! // Table modifications for existing installations ! // ! // ALTER TABLE psl_mailinglist MODIFY id int(30) DEFAULT '0' NOT NULL auto_increment, MODIFY email varchar(100) DEFAULT '' NOT NULL, MODIFY name varchar(100), MODIFY timestamp timestamp(14), ADD html tinyint(2) DEFAULT '0' NOT NULL; ! // ! // ALTER TABLE psl_mailinglist_frequency MODIFY id int(30) DEFAULT '0' NOT NULL, MODIFY frequency char(30) DEFAULT '' NOT NULL, MODIFY dayback int(11) DEFAULT '0' NOT NULL; ! // ! // ! // Sample header.txt contents: // ! // phpSlash Daily Headline Mailer // // MORE NOTES: --- 2,18 ---- // #!/usr/bin/php // $Id$ ! // Written for phpSlash (v0.7) by: // Luis Mondesi <le...@ho...> ! // Last modified: 2003-Mar-13 // ! // USAGE: create a cron job that calls this file at whichever time ! // is more convenient for you (usually at the end of the day, ! // say starting at 22:00 // example: ! // 00 23 * * * /usr/bin/php4 /path/to/cronmail.php3 // ! // if you don't care about the report being emailed to you, put ! // the appropriate redirection to /dev/null at the end: ! // ... 2>&1 > /dev/null // // MORE NOTES: *************** *** 58,71 **** // package (from the 'woody' distro: apt-get install php4-cgi) // and then edit their /etc/php/cgi/php.ini ! // to include the extensions for mysql (mysql.so) ! // ! // TODO: ! // 1) Major cleanup necessary... ! // 2) test in a different system ! // 3) use the functions from the classes only ! // (clean up the mysql_pconnect() block and all ! // that mess...) // // CHANGELOG: // 2002-06-27 -took off HTML stuff for some of the code // -fixed formatting for some of the strings --- 20,31 ---- // package (from the 'woody' distro: apt-get install php4-cgi) // and then edit their /etc/php/cgi/php.ini ! // to include the extensions for mysql (mysql.so). If not this script ! // might complaint about missing pmysql_connect() calls... you have ! // been warned! // // CHANGELOG: + // 2003-03-05 - cleanup beautifully. now using only mailinglist + // class + // // 2002-06-27 -took off HTML stuff for some of the code // -fixed formatting for some of the strings *************** *** 75,552 **** // -fixed build_body() to return NULL if there // is no messages pulled from the database - // - // And now the code..... - //.......................... - - //require("/path/to/prepend.php3"); - require("/path/to/config.php3"); ! $rightnow = date("Hi"); //figures out what time it is ! ! // Busy server? set this baby to sleep. 0 means it mails as fast as it can ! // it's in seconds ! $sleep = 5; ! //these 2 are used to format the mail to make it shorter and so it wraps at a certain length ! $wraplength = 800; ! $choplength = 600; ! //since you want to include a message daily, it's a separate file ! //remember to make it HTML if you are using the HTML option. ! //tags are stripped for plain text ! $filename = "./header.txt"; ! $fd = fopen ($filename, "r"); ! $header = fread ($fd, filesize ($filename)); ! fclose ($fd); ! // comment this out if you don't care about it ! //$header .= "\n"; ! //$header .= `/usr/games/fortune -s` ; // a little bit of fun! ! //$header .= "\n"; ! $sitename = $_PSL['site_name']; // used in the title, and subject, and body of mail ! $siteurl = $_PSL['rooturl']; ! if ($html==1){ ! $yourtitle = "<h1>$sitename</h1>"; // used in HTML title of email ! $mailsubj = $_PSL['mailinglist_subject']; //change this too, used for HTML Subject of HTML mail ! } else { ! $yourtitle = $site_name; //uh, used not really ! $mailsubj = $_PSL['mailinglist_subject']; // Subject of plain text email ! } ! $sender = preg_replace("/(.*)\@.*/i","noreply",$_PSL['site_owner']); ! // The footer ends up as the last thing in the mail. ! // Tags are stripped for plain text ! // you may want to move this out to a file like ! // the header if you feel the need - // I've split these two - you can't strip the text for international versions as this will do fun things - // with the special characters not compatible with pure text mails. - $footer_text = "\n\t " . pslgetText("To add or remove yourself go to") . ": ".$siteurl."/mailinglist.php3"; - $footer_html = "<P><B>\n\t " . $footer_text ."</B><P></BODY></HTML>"; ! /********************************************************* ! **** NO NEED TO CHANGE ANYTHING BELOW THIS LINE ********** ! *********************************************************/ ! if ($rightnow == "0100"){ ! $limit = "0,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0115") { ! $limit = "99,101"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0130") { ! $limit = "200,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0145") { ! $limit = "300,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0200") { ! $limit = "400,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0215") { ! $limit = "500,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0230") { ! $limit = "600,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0245") { ! $limit = "700,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0300") { ! $limit = "800,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0315") { ! $limit = "900,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0330") { ! $limit = "1000,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0345") { ! $limit = "1100,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0400") { ! $limit = "1200,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } elseif ($rightnow == "0415") { ! $limit = "1300,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "1"; ! } ! $frequency = "DAY"; ! $html =0; ! } ! //that was the last of the normal daily emails ! elseif ($rightnow == "0430") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="1") { ! $offset = "7"; ! $frequency = "MONDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0445") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="2") { ! $offset = "7"; ! $frequency = "TUESDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0500") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="3") { ! $offset = "7"; ! $frequency = "WEDNESDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0515") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="4") { ! $offset = "7"; ! $frequency = "THURSDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0530") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="5") { ! $offset = "7"; ! $frequency = "FRIDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0545") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="6") { ! $offset = "7"; ! $frequency = "SATURDAY"; ! } else { ! die; ! } ! } elseif ($rightnow == "0600") { ! $limit = "0,200"; ! $today = date("w"); ! $html =0; ! if($today=="0") { ! $offset = "7"; ! $frequency = "SUNDAY"; ! } else { ! die; ! } ! } ! ///here is the experimental HTML one ! /*elseif ($rightnow == "0615") { ! $limit = "0,100"; ! $today = date("w"); ! if($today=="1") { ! $offset = "3"; ! } else { ! $offset = "2"; ! } ! $frequency = "DAY"; ! $html = 1; ! }*/ ! /* use functions.inc format_mail() so that you can scrub things ;-) ! function format_mail($str, $char_len) ! { ! GLOBAL $wraplength; ! $str = stripslashes($str); ! $str = strip_tags($str); ! $str = eregi_replace("\n"," ",$str); ! $str = eregi_replace("\t"," ",$str); ! $str = ereg_replace("\r\n"," ",$str); ! $str = eregi_replace("[[:space:]]+", " ", $str); ! $str_out .= substr($str, 0, $wraplength); ! $str = substr($str, 0, $wraplength); ! return $str_out; ! } ! */ ! function format_html_mail($str, $char_len) ! { ! GLOBAL $wraplength; ! $str = stripslashes($str); ! $str = eregi_replace("\n"," ",$str); ! $str = eregi_replace("\t"," ",$str); ! $str = ereg_replace("\r\n"," ",$str); ! $str = eregi_replace("[[:space:]]+", " ", $str); ! $str_out .= substr($str, 0, $wraplength); ! $str = substr($str, 0, $wraplength); ! return $str_out; ! } ! function chopit ($str){ ! GLOBAL $choplength; ! $string = substr($str, 0, $choplength); ! $pos = strrpos ($string, "."); ! $finalstring = substr($string, 0, $pos); ! return $finalstring; } ! function build_body($offset) { ! GLOBAL $offset; ! $slash_q = new slashDB; ! $bmonth = date("m"); ! $bday = date("d") - $offset; // pull stories since yesterday or since Friday if today is Monday ! $byear = date("Y"); ! $emonth = date("m"); ! $eday = date("d"); ! $eyear = date("Y"); ! $begdate = date("Y-m-d H:i:s", mktime(0,0,0,$bmonth,$bday,$byear)); ! $enddate = date("Y-m-d H:i:s", mktime(0,0,0,$emonth,$eday,$eyear)); ! // this should get the stories using the class ! // but, for the moment 2002-06-12 luis mondesi: ! $sql="SELECT story_id, title, dept, ". ! " UNIX_TIMESTAMP(time) as pretty_time, ". ! " intro_text FROM psl_story ". ! " WHERE time >= '$begdate' AND time <= '$enddate' ORDER BY time DESC"; ! ! $slash_q->query($sql); ! ! // 2002-06-27 luis: it makes no sense to continue if there ! // is nothing! ! if ( $slash_q->num_rows() > 0 ) { ! while($slash_q->next_record()){ ! GLOBAL $siteurl; ! $headline = "\n" . pslgetText("Story") . ": ".format_mail($slash_q->Record["title"],500,true) . "\n"; ! $headline .= " " . pslgetText("Written") . ": " . psl_dateTimeLong($slash_q->Record["pretty_time"]) . "\n"; ! $headline .= " " . pslgetText("Intro") . ": " . format_mail($slash_q->Record["intro_text"],500,true) . ".\n"; ! $headline .= " ".$siteurl."/article.php3?story_id=" . $slash_q->Record["story_id"]."\n"; ! $headline .= "---------------------------------------------------------------------------------------------\n\n"; ! $headline = stripslashes($headline); ! $thisHead .= $headline; ! } // end while() next_record ! return $thisHead; ! } // end if $slash_q is empty ! ! return ""; // return empty string if no records selected ! ! }// end build_body() ! ! function build_html_body($offset) { ! GLOBAL $offset; ! $slash_q = new slashDB; ! $bmonth = date("m"); ! $bday = date("d") - $offset; ! $byear = date("Y"); ! $emonth = date("m"); ! $eday = date("d"); ! $eyear = date("Y"); ! $begdate = date("Y-m-d H:i:s", mktime(0,0,0,$bmonth,$bday,$byear)); ! $enddate = date("Y-m-d H:i:s", mktime(0,0,0,$emonth,$eday + 1,$eyear)); ! $sql=" SELECT story_id, title, dept, ". ! " date_format(time, \"%W %M %d %h %i %p\") as pretty_time, ". ! " intro_text FROM psl_story ". ! " WHERE time >= '$begdate' AND time <= '$enddate' ORDER BY time DESC"; ! ! $slash_q->query($sql); ! ! while($slash_q->next_record()) { ! GLOBAL $siteurl; ! $headline = "<B>".format_mail($slash_q->Record["title"],500,true) . "</B><BR>\n"; ! $headline .= " From the: \"" . $slash_q->Record["dept"] . "\" dept.<BR>\n"; ! $headline .= " Posted on: \"" . $slash_q->Record["pretty_time"] . "<BR>\n"; ! $headline .= " Story: " . format_mail(chopit($slash_q->Record["intro_text"]),500,true) . ".</I><BR>\n"; ! $headline .= "<A HREF=\"".$siteurl."/article.php3?story_id=" . $slash_q->Record["story_id"] . "\">Full Story</A>\n"; ! $headline .= "<BR>---------------------------------------------------------------------------------------------<BR>\n\n"; ! $headline = stripslashes($headline); ! $thisHead .= $headline; ! } ! return $thisHead; ! }// end build_html_body() ! ! // mail goes out below here now ! ! // use slashDB class later ... ! // $db = new slashDB; ! $link = mysql_pconnect($_PSL['DB_Host'],$_PSL['DB_User'],$_PSL['DB_Password']); ! ! // limit is blank for some reason... ! $limit = ($limit == '') ? "0,100":$limit; ! // if HTML is null ... then select text ! $html = ($html == '') ? "0":$html; ! // if frequency is null, then select DAY ! $frequency = ($frequency == '') ? "DAY":$frequency; ! ! $sql_query="SELECT email, dayback, frequency" ! ." FROM psl_mailinglist, psl_mailinglist_frequency" ! ." WHERE psl_mailinglist.id = psl_mailinglist_frequency.id" ! ." AND psl_mailinglist_frequency.frequency = '$frequency'" ! ." AND psl_mailinglist.html = '$html'" ! ." ORDER BY psl_mailinglist_frequency.dayback, psl_mailinglist_frequency.frequency" ! ." LIMIT $limit"; ! $db_results = mysql($_PSL['DB_Database'],$sql_query,$link) ! or die("ERROR: $sql_query connecting to ".$_PSL['DB_Database']." with link $link \n "); ! ! ignore_user_abort(); ! flush(); ! ! $tmpDay = ''; ! ! while($row = mysql_fetch_row($db_results)) { ! //while ($db->next_record()) { ! //$row = $db->f(""); ! GLOBAL $sender; ! GLOBAL $html; ! //first part is the plain text email ! // 2002-06-27 luis: no HTML messages. will ! // put it back later ! //if($html==0) { ! //if ( $row[2] > '' ) { ! ! // 2002-06-27 luis: to avoid empty emails ! // we will check to see if build_body() returns ! // something, else we will just die/leave ! ! $my_message = build_body($row[2]); ! ! if ( $my_message > "" ) { ! set_time_limit(0); ! $header= strip_tags($header); ! $body = $header; ! $body .= $my_message; // takes the body from my_message ! $body .= $footer_text; // No need to strip ! $subject = $mailsubj; ! $headers = "Reply-To:$sender\r\n"; ! $headers .= "From:$sender\r\n"; ! if (mail($row[0], $subject, $body, $headers)) ! echo "\n" . $row[0]." ". $row[2] . "\n... sent\n"; ! else ! $errors[] = $row[0]; ! $tmpDay = $row[2]; ! sleep($sleep); ! } // end if $my_message > null ! //} //closes if html=0 so that means the HTML goes out from below here ! /* html disable until further notice ! else { ! set_time_limit(0); ! $body = "<html><head><title>" . $yourtitle."</title><BASE HREF=\"".$siteurl."\"></head><body>\r\n\n\n"; ! $body .= $header; ! $body .= build_html_body($row[2]); ! $body .= $footer; ! $subject = $mailsubj; ! $headers = "Reply-To:$sender\r\n"; ! $headers .= "From:$sender\r\n"; ! $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; ! if (mail($row[0], $subject, $body, $headers)) ! echo "\n" . $row[0]. $row[2] . "\n... sent\n"; ! else ! $errors[] = $row[0]; ! $tmpDay = $row[2]; ! sleep($sleep); ! }//closes else for html = 0 ! */ ! }//closes the mail function ?> --- 35,93 ---- // -fixed build_body() to return NULL if there // is no messages pulled from the database ! // don't cache this page ! $cachetimeout=-1; ! // prepending might not be needed now... just the config.php3: ! require("/path/to/config.php3"); ! /* DEBUG */ ! error_reporting(E_ALL,~E_WARN); ! /* END DEBUG */ ! $USE_NO_REPLY_ADDRESS = "true"; // when true, a fake address ! // will be used for the FROM ! // field -- to avoid users ! // being able to reply to it ! $NO_REPLY_STRING = "noreply"; // string which is used for the ! // fake reply address when the ! // variable above is set to "true" ! /********************************************* ! * Nothing to change below this line * ! *********************************************/ ! // when this script runs successfully, something should be reported ! // thus this variable's content will change ! $report = "nothing to report"; ! $list = pslNew("MailingList"); ! // this script is run daily, thus: ! $ary["bmonth"] = date("m"); // beginning today ! $ary["bday"] = date("d"); // today's day ! $ary["byear"] = date("y"); // today's year ! $ary["emonth"] = date("m"); // also ending today ! $ary["eday"] = date("d"); // yaddah today ! $ary["eyear"] = date("y"); // yaddah today ! $ary["sender"] = ($USE_NO_REPLY_ADDRESS == "true") ? preg_replace("/(.*)\@(.*)/i","$NO_REPLY_STRING@$2",$list->psl['site_owner']) : $list->psl['site_owner']; ! //echo $list->psl['site_owner']; ! //echo "\n"; ! $ary["subject"] = $list->psl['mailinglist_subject']; ! //echo "\n"; ! //uncomment this to force emails to be sent ! //$ary["freqoverride"]="true"; ! if($list->newsletterSend($ary)) { ! $report = getMessage($list->getMessage()); } ! // report what was done ! echo $report; ?> |
From: Joe S. <joe...@us...> - 2003-03-19 20:06:18
|
Update of /cvsroot/phpslash/phpslash-ft/public_html In directory sc8-pr-cvs1:/tmp/cvs-serv15010/phpslash-ft/public_html Modified Files: mailinglist.php3 glossary.php3 Log Message: revised cronmail, mailinglist POST, and translated glossary pagetitle Index: mailinglist.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/mailinglist.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** mailinglist.php3 20 Dec 2002 22:17:31 -0000 1.12 --- mailinglist.php3 19 Mar 2003 20:06:09 -0000 1.13 *************** *** 14,19 **** *****************************/ $ary = array(); ! if(!empty($HTTP_GET_VARS)) { ! $ary = clean($HTTP_GET_VARS); } --- 14,19 ---- *****************************/ $ary = array(); ! if(!empty($HTTP_POST_VARS)) { ! $ary = clean($HTTP_POST_VARS); } Index: glossary.php3 =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/public_html/glossary.php3,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** glossary.php3 20 Dec 2002 22:17:31 -0000 1.18 --- glossary.php3 19 Mar 2003 20:06:11 -0000 1.19 *************** *** 5,12 **** require("config.php3"); ! $pagetitle = "Glossary"; // header title ! $xsiteobject = "Glossary"; // Defines The META TAG Page Type ! ! // page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm")); /***************************** --- 5,10 ---- require("config.php3"); ! $pagetitle = pslgetText("Glossary"); // header title ! $xsiteobject = pslgetText("Glossary"); // Defines The META TAG Page Type /***************************** |
From: Joe S. <joe...@us...> - 2003-03-18 16:23:29
|
Update of /cvsroot/phpslash/phpslash-ft/class In directory sc8-pr-cvs1:/tmp/cvs-serv17729/phpslash-ft/class Modified Files: MailingList.class Log Message: mailinglist - correct typo Index: MailingList.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/class/MailingList.class,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** MailingList.class 25 Feb 2003 13:00:38 -0000 1.17 --- MailingList.class 18 Mar 2003 16:23:24 -0000 1.18 *************** *** 419,423 **** } ! $this->messge .= "To: $email <$name>"; if ( ($dayback != $tmpDay) && ( !($ary['override']) ) ) { --- 419,423 ---- } ! $this->message .= "To: $email <$name>"; if ( ($dayback != $tmpDay) && ( !($ary['override']) ) ) { |
From: Joe S. <joe...@us...> - 2003-03-18 16:23:28
|
Update of /cvsroot/phpslash/phpslash-ft In directory sc8-pr-cvs1:/tmp/cvs-serv17729/phpslash-ft Modified Files: CHANGES Log Message: mailinglist - correct typo Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-ft/CHANGES,v retrieving revision 1.723 retrieving revision 1.724 diff -C2 -d -r1.723 -r1.724 *** CHANGES 11 Mar 2003 21:59:11 -0000 1.723 --- CHANGES 18 Mar 2003 16:23:17 -0000 1.724 *************** *** 13,18 **** 9 - Removal of something (kill -9 :) 2003-March-11 3:30PM CST Joe Stewart <joe...@us...> ! [B - slashTemplate.class - removed exception to allow array call to find inherited templates correctly. --- 13,21 ---- 9 - Removal of something (kill -9 :) + 2003-March-18 10:00AM CST Joe Stewart <joe...@us...> + [B] - Mailinglist.class - correct "message" typo. + 2003-March-11 3:30PM CST Joe Stewart <joe...@us...> ! [B] - slashTemplate.class - removed exception to allow array call to find inherited templates correctly. |
From: Joe S. <joe...@us...> - 2003-03-12 16:57:43
|
Update of /cvsroot/phpslash/phpslash-skins In directory sc8-pr-cvs1:/tmp/cvs-serv30703/phpslash-skins Modified Files: CHANGES Log Message: extra character in AHP titlebar and fancybox Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/CHANGES,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CHANGES 12 Mar 2003 16:29:09 -0000 1.1 --- CHANGES 12 Mar 2003 16:57:39 -0000 1.2 *************** *** 14,16 **** --- 14,19 ---- 2003-March-12 10:30AM CST Joe Stewart <joe...@us...> + [BT] - AHP - titlebar.tpl, and fancybox.tpl had an extra "{" character. + + 2003-March-12 10:30AM CST Joe Stewart <joe...@us...> [BT] - change file references from php3 to php. |
From: Joe S. <joe...@us...> - 2003-03-12 16:57:43
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP In directory sc8-pr-cvs1:/tmp/cvs-serv30703/phpslash-skins/include/templates/en/AHP Modified Files: fancybox.tpl titlebar.tpl Log Message: extra character in AHP titlebar and fancybox Index: fancybox.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/fancybox.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fancybox.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- fancybox.tpl 12 Mar 2003 16:57:39 -0000 1.2 *************** *** 2,6 **** <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> ! <td style="background-image : url({{IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"><img src="{IMAGEDIR}/{SKIN}/boxstyles/left.gif" /></td> <td style="color : #525267; background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"> <div style="font-family : arial, helvetica; font-size : .7em; text-transform : uppercase; font-weight : bold">{LINK_OPEN}{TITLE}{LINK_CLOSE}</div> --- 2,6 ---- <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> ! <td style="background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"><img src="{IMAGEDIR}/{SKIN}/boxstyles/left.gif" /></td> <td style="color : #525267; background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"> <div style="font-family : arial, helvetica; font-size : .7em; text-transform : uppercase; font-weight : bold">{LINK_OPEN}{TITLE}{LINK_CLOSE}</div> Index: titlebar.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/titlebar.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** titlebar.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- titlebar.tpl 12 Mar 2003 16:57:40 -0000 1.2 *************** *** 2,6 **** <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> ! <td style="background-image : url({{IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"><img src="{IMAGEDIR}/{SKIN}/boxstyles/left.gif" /></td> <td style="color : #525267; background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"> <div style="font-family : arial, helvetica; font-size : .7em; text-transform : uppercase; font-weight : bold">{TITLE}</div> --- 2,6 ---- <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> ! <td style="background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"><img src="{IMAGEDIR}/{SKIN}/boxstyles/left.gif" /></td> <td style="color : #525267; background-image : url({IMAGEDIR}/{SKIN}/boxstyles/tile.gif); background-repeat : repeat-x"> <div style="font-family : arial, helvetica; font-size : .7em; text-transform : uppercase; font-weight : bold">{TITLE}</div> |
From: Joe S. <joe...@us...> - 2003-03-12 16:42:53
|
Update of /cvsroot/phpslash/phpslash-dev/include/class In directory sc8-pr-cvs1:/tmp/cvs-serv22834/phpslash-dev/include/class Modified Files: slashAuthCR.class Log Message: add class requirement for Author Index: slashAuthCR.class =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/class/slashAuthCR.class,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashAuthCR.class 12 Mar 2003 16:12:49 -0000 1.1.1.1 --- slashAuthCR.class 12 Mar 2003 16:42:50 -0000 1.2 *************** *** 48,52 **** $this->magic = $_PSL['magic']; } ! $this->loadClasses("database_class"); --- 48,54 ---- $this->magic = $_PSL['magic']; } ! ! AddClassRequirement("author",$_PSL['moduledir'] ."/". $_PSL['module']['Author'] ."/Author.class"); ! $this->loadClasses("database_class"); |
From: Joe S. <joe...@us...> - 2003-03-12 16:42:53
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv22834/phpslash-dev Modified Files: CHANGES Log Message: add class requirement for Author Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHANGES 12 Mar 2003 16:31:42 -0000 1.2 --- CHANGES 12 Mar 2003 16:42:49 -0000 1.3 *************** *** 14,17 **** --- 14,20 ---- 2003-March-12 10:30PM CST Joe Stewart <joe...@us...> + [B] - slashAuthCR.class - AddClassRequirement for Author. + + 2003-March-12 10:30PM CST Joe Stewart <joe...@us...> [W] - remove extra extchg.sh from main directory. Initial phpslash-dev cvs tree import. |
From: Joe S. <joe...@us...> - 2003-03-12 16:33:22
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv18460/phpslash-dev Removed Files: extchg.sh Log Message: remove extra extchg.sh --- extchg.sh DELETED --- |
From: Joe S. <joe...@us...> - 2003-03-12 16:31:49
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv17493/phpslash-dev Modified Files: CHANGES Log Message: remove extra extchg.sh Index: CHANGES =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/CHANGES,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** CHANGES 12 Mar 2003 16:12:47 -0000 1.1.1.1 --- CHANGES 12 Mar 2003 16:31:42 -0000 1.2 *************** *** 13,16 **** --- 13,20 ---- 9 - Removal of something (kill -9 :) + 2003-March-12 10:30PM CST Joe Stewart <joe...@us...> + [W] - remove extra extchg.sh from main directory. Initial phpslash-dev + cvs tree import. + 2003-March-11 12:30PM CST Joe Stewart <joe...@us...> [W] - config-dist.php, config.php, functions.inc, Author.class, |
From: Joe S. <joe...@us...> - 2003-03-12 16:30:13
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/winxp Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:25 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:31 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:32 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:34 -0000 1.2 *************** *** 44,48 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 44,48 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 50,54 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 50,54 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/winxp/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:35 -0000 1.2 *************** *** 41,51 **** </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 41,51 ---- </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 53,57 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 53,57 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> |
From: Joe S. <joe...@us...> - 2003-03-12 16:30:04
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/muggles Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:24 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:24 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" /> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:25 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,28 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 24,28 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/muggles/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:25 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,33 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> --- 24,33 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:59
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/mainsite Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 31,35 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 31,35 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 37,41 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 37,41 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/mainsite/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:23 -0000 1.2 *************** *** 30,40 **** </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 30,40 ---- </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 42,46 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 42,46 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:57
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/clean In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/clean Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/clean/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:20 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/clean/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:21 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/clean/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:22 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/clean/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:22 -0000 1.2 *************** *** 32,37 **** <tr><td align="right"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </td></tr> --- 32,37 ---- <tr><td align="right"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </td></tr> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:56
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/funkatronic In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/funkatronic Modified Files: slashHead.tpl Log Message: change php3 references to php Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/funkatronic/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:22 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:56
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/Smooth Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:18 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:19 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:19 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:19 -0000 1.2 *************** *** 51,55 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 51,55 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Smooth/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:19 -0000 1.2 *************** *** 47,52 **** </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> --- 47,52 ---- </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> *************** *** 58,62 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 58,62 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:55
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/bluerobot In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/bluerobot Modified Files: slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/bluerobot/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:19 -0000 1.2 *************** *** 19,23 **** <meta name="{METANAME}" content="{METADESCRIPTION}" /> <!-- END each_metatag --> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <style type="text/css" media="screen">@import "{ROOTDIR}/styles/{SKIN}.css";</style> --- 19,23 ---- <meta name="{METANAME}" content="{METADESCRIPTION}" /> <!-- END each_metatag --> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <style type="text/css" media="screen">@import "{ROOTDIR}/styles/{SKIN}.css";</style> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/bluerobot/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:20 -0000 1.2 *************** *** 13,17 **** </div> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <!-- BEGIN alsotext --> <!-- END alsotext --> --- 13,17 ---- </div> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <!-- BEGIN alsotext --> <!-- END alsotext --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/bluerobot/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:21 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:20 -0000 1.2 *************** *** 4,9 **** <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> <!-- END each_story --> --- 4,9 ---- <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> <!-- END each_story --> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:54
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/Quick Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:15 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:15 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:16 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:17 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,28 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 24,28 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Quick/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:18 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,33 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> --- 24,33 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:52
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/Cool Modified Files: pollList.tpl pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollList.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool/pollList.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollList.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollList.tpl 12 Mar 2003 16:29:14 -0000 1.2 *************** *** 10,14 **** <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php3?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> --- 10,14 ---- <!-- BEGIN row --> <li> ! <a href="{ROOTURL}/poll.php?submit=viewbooth&question_id={QUESTION_ID}">{QUESTION}</a> {POLLDATE} <!-- BEGIN admin --> <span class="pollAdminLinks"> *************** *** 24,28 **** </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php3?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> --- 24,28 ---- </ul> <!-- BEGIN morelink --> ! <span class="more"><a href="{ROOTURL}/poll.php?min={ID}">More Polls</a></span> <!-- END morelink --> </div> <!-- id="pollList" --> Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:14 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:15 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:15 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,28 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 24,28 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/Cool/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:15 -0000 1.2 *************** *** 18,22 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 18,22 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 24,33 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> --- 24,33 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:51
|
Update of /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins/include/templates/en/AHP Modified Files: pollResultPage.tpl slashHead.tpl story.tpl storyIndex.tpl Log Message: change php3 references to php Index: pollResultPage.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/pollResultPage.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pollResultPage.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- pollResultPage.tpl 12 Mar 2003 16:29:10 -0000 1.2 *************** *** 4,8 **** {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php3?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} --- 4,8 ---- {RESULT} ! <p>[ <a href="{ROOTURL}/comment.php?submit=post&story_id={QUESTION_ID}&parent_id=0">Post a Comment About this Poll</b></a> ]</p> {COMMENT} Index: slashHead.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/slashHead.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** slashHead.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- slashHead.tpl 12 Mar 2003 16:29:13 -0000 1.2 *************** *** 18,22 **** <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php3" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> --- 18,22 ---- <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ! <link rel="alternate" type="application/rss+xml" title="RSS" href="{ROOTDIR}/backend.php" /> <link rel="stylesheet" type="text/css" href="{ROOTDIR}/styles/{SKIN}.css" /> Index: story.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/story.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** story.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- story.tpl 12 Mar 2003 16:29:14 -0000 1.2 *************** *** 21,25 **** <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 21,25 ---- <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 27,31 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 27,31 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> Index: storyIndex.tpl =================================================================== RCS file: /cvsroot/phpslash/phpslash-skins/include/templates/en/AHP/storyIndex.tpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** storyIndex.tpl 12 Mar 2003 16:15:20 -0000 1.1.1.1 --- storyIndex.tpl 12 Mar 2003 16:29:14 -0000 1.2 *************** *** 19,29 **** </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php3?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php3?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> --- 19,29 ---- </div> <div id="storyFooter"> ! <a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{MORE}</a> ! [<a href="{ROOTDIR}/article.php?story_id={STORY_ID}">{COMMENT}]</a> </div> </td> <td> <div id="storyAdditional"> ! <a href="{ROOTDIR}/search.php?topic_id={TOPIC_ID}"> <img src="{IMAGEDIR}/topics/{TOPICIMAGE}" width="{TOPICWIDTH}" height="{TOPICHEIGHT}" border="0" alt="{ALTTEXT}" hspace="0" vspace="10" /></a><br /> <!-- BEGIN alsotext --> *************** *** 31,35 **** <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php3?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> --- 31,35 ---- <!-- END alsotext --> <!-- BEGIN row --> ! <a href="{ROOTDIR}/search.php?topic_id={LIST_TOPIC_ID}">{LIST_TOPIC_NAME}</a><br /> <!-- END row --> </div> <!-- id="storyAdditional" --> |
From: Joe S. <joe...@us...> - 2003-03-12 16:29:14
|
Update of /cvsroot/phpslash/phpslash-skins In directory sc8-pr-cvs1:/tmp/cvs-serv16040/phpslash-skins Added Files: CHANGES Log Message: change php3 references to php --- NEW FILE: CHANGES --- $Id: CHANGES,v 1.1 2003/03/12 16:29:09 joestewart Exp $ Changes Legend... B - Bugfix F - Feature Added E - Experimental T - Template changed D - Documentation S - Database Schema R - RELEASE W - General Work on something 9 - Removal of something (kill -9 :) 2003-March-12 10:30AM CST Joe Stewart <joe...@us...> [BT] - change file references from php3 to php. |
From: Joe S. <joe...@us...> - 2003-03-12 16:15:41
|
Update of /cvsroot/phpslash/phpslash-skins In directory sc8-pr-cvs1:/tmp/cvs-serv9506 Log Message: Initial import Status: Vendor Tag: jrandom Release Tags: start N phpslash-skins/public_html/styles/AHP.css N phpslash-skins/public_html/styles/Cool.css N phpslash-skins/public_html/styles/Quick.css N phpslash-skins/public_html/styles/mainsite.css N phpslash-skins/public_html/styles/clean.css N phpslash-skins/public_html/styles/muggles.css N phpslash-skins/public_html/styles/Smooth.css N phpslash-skins/public_html/styles/winxp.css N phpslash-skins/public_html/styles/bluerobot.css N phpslash-skins/public_html/styles/funkatronic.css N phpslash-skins/public_html/images/AHP/boxstyles/left.gif N phpslash-skins/public_html/images/AHP/boxstyles/right.gif N phpslash-skins/public_html/images/AHP/boxstyles/tile.gif N phpslash-skins/public_html/images/AHP/img/boxtile.gif N phpslash-skins/public_html/images/AHP/img/headleft.gif N phpslash-skins/public_html/images/AHP/img/headright.gif N phpslash-skins/public_html/images/AHP/img/headtile.gif N phpslash-skins/public_html/images/Cool/background.png N phpslash-skins/public_html/images/Cool/blue_bullet.png N phpslash-skins/public_html/images/Cool/blue_small_bullet.png N phpslash-skins/public_html/images/Cool/blue_tiny_bullet.png N phpslash-skins/public_html/images/Cool/gr_blue-white-ver.png N phpslash-skins/public_html/images/Cool/gradient_blue-white.png N phpslash-skins/public_html/images/Cool/gradient_blue-white_vertical.png N phpslash-skins/public_html/images/Cool/gradient_white-blue.png N phpslash-skins/public_html/images/Cool/grey_bullet.png N phpslash-skins/public_html/images/Cool/grey_small_bullet.png N phpslash-skins/public_html/images/Cool/grey_tiny_bullet.png N phpslash-skins/public_html/images/Cool/logo.png N phpslash-skins/public_html/images/Cool/logo.xcf N phpslash-skins/public_html/images/Cool/mail.png N phpslash-skins/public_html/images/Cool/mail_bulge.png N phpslash-skins/public_html/images/Cool/notes_icon.png N phpslash-skins/public_html/images/Cool/img/background.png N phpslash-skins/public_html/images/Cool/img/bottomBg.gif N phpslash-skins/public_html/images/Cool/img/bottomLeft.gif N phpslash-skins/public_html/images/Cool/img/bottomRight.gif N phpslash-skins/public_html/images/Cool/img/gradient_white-blue.png N phpslash-skins/public_html/images/Cool/img/gradient_white-blue2.png N phpslash-skins/public_html/images/Cool/img/leftBg.gif N phpslash-skins/public_html/images/Cool/img/rightBg.gif N phpslash-skins/public_html/images/Cool/img/topBg.gif N phpslash-skins/public_html/images/Cool/img/topLeft.gif N phpslash-skins/public_html/images/Cool/img/topRight.gif N phpslash-skins/public_html/images/Quick/bg.gif N phpslash-skins/public_html/images/Quick/logo.gif N phpslash-skins/public_html/images/Quick/images/logo.gif N phpslash-skins/public_html/images/Quick/images/bg.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_01.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_02.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_03.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_07.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_09.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_10.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_11.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/l_12.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/spanner.gif N phpslash-skins/public_html/images/Smooth/boxstyles/img/trans.gif N phpslash-skins/public_html/images/Smooth/images/logo.gif N phpslash-skins/public_html/images/Smooth/img/l_01.gif N phpslash-skins/public_html/images/Smooth/img/l_02.gif N phpslash-skins/public_html/images/Smooth/img/l_03.gif N phpslash-skins/public_html/images/Smooth/img/l_07.gif N phpslash-skins/public_html/images/Smooth/img/l_09.gif N phpslash-skins/public_html/images/Smooth/img/l_10.gif N phpslash-skins/public_html/images/Smooth/img/l_11.gif N phpslash-skins/public_html/images/Smooth/img/l_12.gif N phpslash-skins/public_html/images/Smooth/img/spanner.gif N phpslash-skins/public_html/images/Smooth/img/trans.gif N phpslash-skins/public_html/images/clean/boxstyles/img/bottomBg.gif N phpslash-skins/public_html/images/clean/boxstyles/img/bottomLeft.gif N phpslash-skins/public_html/images/clean/boxstyles/img/bottomRight.gif N phpslash-skins/public_html/images/clean/boxstyles/img/leftBg.gif N phpslash-skins/public_html/images/clean/boxstyles/img/rightBg.gif N phpslash-skins/public_html/images/clean/boxstyles/img/topBg.gif N phpslash-skins/public_html/images/clean/boxstyles/img/topLeft.gif N phpslash-skins/public_html/images/clean/boxstyles/img/topRight.gif N phpslash-skins/public_html/images/clean/images/poweredby.jpg N phpslash-skins/public_html/images/clean/img/logo.gif N phpslash-skins/public_html/images/clean/img/bar.gif N phpslash-skins/public_html/images/clean/img/bottomBg.gif N phpslash-skins/public_html/images/clean/img/bottomLeft.gif N phpslash-skins/public_html/images/clean/img/bottomRight.gif N phpslash-skins/public_html/images/clean/img/leftBg.gif N phpslash-skins/public_html/images/clean/img/rightBg.gif N phpslash-skins/public_html/images/clean/img/topBg.gif N phpslash-skins/public_html/images/clean/img/topLeft.gif N phpslash-skins/public_html/images/clean/img/topRight.gif N phpslash-skins/public_html/images/mainsite/images/article-top.gif N phpslash-skins/public_html/images/mainsite/images/bg.gif N phpslash-skins/public_html/images/mainsite/images/boxtop.gif N phpslash-skins/public_html/images/mainsite/images/btmleft.gif N phpslash-skins/public_html/images/mainsite/images/core_bground.gif N phpslash-skins/public_html/images/mainsite/images/fallout.gif N phpslash-skins/public_html/images/mainsite/images/l_01.gif N phpslash-skins/public_html/images/mainsite/images/l_02.gif N phpslash-skins/public_html/images/mainsite/images/l_03.gif N phpslash-skins/public_html/images/mainsite/images/l_04.gif N phpslash-skins/public_html/images/mainsite/images/l_05.gif N phpslash-skins/public_html/images/mainsite/images/l_06.gif N phpslash-skins/public_html/images/mainsite/images/l_07.gif N phpslash-skins/public_html/images/mainsite/images/l_08.gif N phpslash-skins/public_html/images/mainsite/images/l_09.gif N phpslash-skins/public_html/images/mainsite/images/l_10.gif N phpslash-skins/public_html/images/mainsite/images/l_11.gif N phpslash-skins/public_html/images/mainsite/images/l_12.gif N phpslash-skins/public_html/images/mainsite/images/phpwblogo.gif N phpslash-skins/public_html/images/mainsite/images/phpws_background.jpg N phpslash-skins/public_html/images/mainsite/images/pixel.gif N phpslash-skins/public_html/images/mainsite/images/pumkin.gif N phpslash-skins/public_html/images/mainsite/images/rightcorner.gif N phpslash-skins/public_html/images/mainsite/images/spanner.gif N phpslash-skins/public_html/images/mainsite/images/tile.gif N phpslash-skins/public_html/images/mainsite/images/trans.gif N phpslash-skins/public_html/images/mainsite/images/users/approve.gif N phpslash-skins/public_html/images/mainsite/images/users/boost.gif N phpslash-skins/public_html/images/mainsite/images/users/branch.gif N phpslash-skins/public_html/images/mainsite/images/users/comments.gif N phpslash-skins/public_html/images/mainsite/images/users/fatcat.gif N phpslash-skins/public_html/images/mainsite/images/users/help.gif N phpslash-skins/public_html/images/mainsite/images/users/language.gif N phpslash-skins/public_html/images/mainsite/images/users/layout.gif N phpslash-skins/public_html/images/mainsite/images/users/menu.gif N phpslash-skins/public_html/images/mainsite/images/users/modmaker.gif N phpslash-skins/public_html/images/mainsite/images/users/pagemaster.gif N phpslash-skins/public_html/images/mainsite/images/users/security.gif N phpslash-skins/public_html/images/mainsite/images/users/users.gif N phpslash-skins/public_html/images/muggles/blueblkline.gif N phpslash-skins/public_html/images/muggles/endcap.gif N phpslash-skins/public_html/images/muggles/mug_bullet.gif N phpslash-skins/public_html/images/muggles/pixel.gif N phpslash-skins/public_html/images/muggles/poweredby.jpg N phpslash-skins/public_html/images/muggles/roundcorner-bl.gif N phpslash-skins/public_html/images/muggles/roundcorner-br.gif N phpslash-skins/public_html/images/muggles/roundcorner-tl.gif N phpslash-skins/public_html/images/muggles/roundcorner-tr.gif N phpslash-skins/public_html/images/muggles/silver-h-line.gif N phpslash-skins/public_html/images/muggles/title.gif N phpslash-skins/public_html/images/muggles/titleU.gif N phpslash-skins/public_html/images/muggles/trans.gif N phpslash-skins/public_html/images/muggles/width.gif N phpslash-skins/public_html/images/muggles/boxstyles/muggles_img/blueblkline.gif N phpslash-skins/public_html/images/muggles/boxstyles/muggles_img/endcap.gif N phpslash-skins/public_html/images/muggles/boxstyles/muggles_img/pixel.gif N phpslash-skins/public_html/images/muggles/images/users/approve.gif N phpslash-skins/public_html/images/muggles/images/users/block.gif N phpslash-skins/public_html/images/muggles/images/users/boost.gif N phpslash-skins/public_html/images/muggles/images/users/branch.gif N phpslash-skins/public_html/images/muggles/images/users/bug.gif N phpslash-skins/public_html/images/muggles/images/users/comments.gif N phpslash-skins/public_html/images/muggles/images/users/fatcat.gif N phpslash-skins/public_html/images/muggles/images/users/help.gif N phpslash-skins/public_html/images/muggles/images/users/language.gif N phpslash-skins/public_html/images/muggles/images/users/layout.gif N phpslash-skins/public_html/images/muggles/images/users/menu.gif N phpslash-skins/public_html/images/muggles/images/users/modmaker.gif N phpslash-skins/public_html/images/muggles/images/users/notes.gif N phpslash-skins/public_html/images/muggles/images/users/pagemaster.gif N phpslash-skins/public_html/images/muggles/images/users/security.gif N phpslash-skins/public_html/images/muggles/images/users/users.gif N phpslash-skins/public_html/images/winxp/poweredby.jpg N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/sidebox-bar-left.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/sidebox-bar-px.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/sidebox-title-bg.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/sidebox-title-left.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/sidebox-title-right.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/storybox-bottom-bg.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/storybox-bottom-left.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/storybox-bottom-right.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/storybox-content-right-px.gif N phpslash-skins/public_html/images/winxp/boxstyles/winxp_img/storybox-content-right.gif N phpslash-skins/public_html/images/bluerobot/mainbar.gif N phpslash-skins/public_html/images/bluerobot/rightbar.gif N phpslash-skins/public_html/images/bluerobot/leftbar.gif N phpslash-skins/public_html/images/funkatronic/logo.gif N phpslash-skins/public_html/images/funkatronic/search.gif N phpslash-skins/public_html/images/funkatronic/topbg.gif N phpslash-skins/public_html/images/funkatronic/leftbar.gif N phpslash-skins/public_html/images/funkatronic/mainbar.gif N phpslash-skins/public_html/images/funkatronic/rightbar.gif N phpslash-skins/include/templates/en/AHP/about.tpl N phpslash-skins/include/templates/en/AHP/fancybox.tpl N phpslash-skins/include/templates/en/AHP/glossarySearch.tpl N phpslash-skins/include/templates/en/AHP/index2colright.tpl N phpslash-skins/include/templates/en/AHP/mailinglistForm.tpl N phpslash-skins/include/templates/en/AHP/pollList.tpl N phpslash-skins/include/templates/en/AHP/pollResultPage.tpl N phpslash-skins/include/templates/en/AHP/searchPage.tpl N phpslash-skins/include/templates/en/AHP/skin.ini N phpslash-skins/include/templates/en/AHP/slashFoot.tpl N phpslash-skins/include/templates/en/AHP/slashHead.tpl N phpslash-skins/include/templates/en/AHP/story.tpl N phpslash-skins/include/templates/en/AHP/storyIndex.tpl N phpslash-skins/include/templates/en/AHP/submissionForm.tpl N phpslash-skins/include/templates/en/AHP/titlebar.tpl N phpslash-skins/include/templates/en/Cool/about.tpl N phpslash-skins/include/templates/en/Cool/slashHead.tpl N phpslash-skins/include/templates/en/Cool/fancybox.tpl N phpslash-skins/include/templates/en/Cool/glossarySearch.tpl N phpslash-skins/include/templates/en/Cool/index2colright.tpl N phpslash-skins/include/templates/en/Cool/mailinglistForm.tpl N phpslash-skins/include/templates/en/Cool/pollList.tpl N phpslash-skins/include/templates/en/Cool/pollResultPage.tpl N phpslash-skins/include/templates/en/Cool/searchPage.tpl N phpslash-skins/include/templates/en/Cool/skin.ini N phpslash-skins/include/templates/en/Cool/slashFoot.tpl N phpslash-skins/include/templates/en/Cool/story.tpl N phpslash-skins/include/templates/en/Cool/storyIndex.tpl N phpslash-skins/include/templates/en/Cool/submissionForm.tpl N phpslash-skins/include/templates/en/Cool/titlebar.tpl N phpslash-skins/include/templates/en/Quick/skin.ini N phpslash-skins/include/templates/en/Quick/slashHead.tpl N phpslash-skins/include/templates/en/Quick/index2colright.tpl N phpslash-skins/include/templates/en/Quick/fancybox.tpl N phpslash-skins/include/templates/en/Quick/slashFoot.tpl N phpslash-skins/include/templates/en/Quick/storyIndex.tpl N phpslash-skins/include/templates/en/Quick/index2colleft.tpl N phpslash-skins/include/templates/en/Quick/titlebar.tpl N phpslash-skins/include/templates/en/Quick/story.tpl N phpslash-skins/include/templates/en/Quick/index3col.tpl N phpslash-skins/include/templates/en/Quick/submissionForm.tpl N phpslash-skins/include/templates/en/Quick/glossarySearch.tpl N phpslash-skins/include/templates/en/Quick/searchPage.tpl N phpslash-skins/include/templates/en/Quick/pollList.tpl N phpslash-skins/include/templates/en/Quick/pollResultPage.tpl N phpslash-skins/include/templates/en/Quick/mailinglistForm.tpl N phpslash-skins/include/templates/en/Quick/about.tpl N phpslash-skins/include/templates/en/Smooth/slashHead.tpl N phpslash-skins/include/templates/en/Smooth/titlebar.tpl N phpslash-skins/include/templates/en/Smooth/submissionForm.tpl N phpslash-skins/include/templates/en/Smooth/storyIndex.tpl N phpslash-skins/include/templates/en/Smooth/story.tpl N phpslash-skins/include/templates/en/Smooth/slashFoot.tpl N phpslash-skins/include/templates/en/Smooth/skin.ini N phpslash-skins/include/templates/en/Smooth/searchPage.tpl N phpslash-skins/include/templates/en/Smooth/pollResultPage.tpl N phpslash-skins/include/templates/en/Smooth/pollList.tpl N phpslash-skins/include/templates/en/Smooth/mailinglistForm.tpl N phpslash-skins/include/templates/en/Smooth/index2colright.tpl N phpslash-skins/include/templates/en/Smooth/glossarySearch.tpl N phpslash-skins/include/templates/en/Smooth/fancybox.tpl N phpslash-skins/include/templates/en/Smooth/navbar.tpl N phpslash-skins/include/templates/en/clean/slashHead.tpl N phpslash-skins/include/templates/en/clean/titlebar.tpl N phpslash-skins/include/templates/en/clean/about.tpl N phpslash-skins/include/templates/en/clean/fancybox.tpl N phpslash-skins/include/templates/en/clean/navbar.tpl N phpslash-skins/include/templates/en/clean/glossarySearch.tpl N phpslash-skins/include/templates/en/clean/index2colright.tpl N phpslash-skins/include/templates/en/clean/mailinglistForm.tpl N phpslash-skins/include/templates/en/clean/pollList.tpl N phpslash-skins/include/templates/en/clean/pollResultPage.tpl N phpslash-skins/include/templates/en/clean/searchPage.tpl N phpslash-skins/include/templates/en/clean/skin.ini N phpslash-skins/include/templates/en/clean/slashFoot.tpl N phpslash-skins/include/templates/en/clean/story.tpl N phpslash-skins/include/templates/en/clean/storyIndex.tpl N phpslash-skins/include/templates/en/clean/submissionForm.tpl N phpslash-skins/include/templates/en/clean/navbarBlockh.tpl N phpslash-skins/include/templates/en/mainsite/titlebar.tpl N phpslash-skins/include/templates/en/mainsite/about.tpl N phpslash-skins/include/templates/en/mainsite/fancybox.tpl N phpslash-skins/include/templates/en/mainsite/glossarySearch.tpl N phpslash-skins/include/templates/en/mainsite/index2colright.tpl N phpslash-skins/include/templates/en/mainsite/mailinglistForm.tpl N phpslash-skins/include/templates/en/mainsite/navbar.tpl N phpslash-skins/include/templates/en/mainsite/pollList.tpl N phpslash-skins/include/templates/en/mainsite/pollResultPage.tpl N phpslash-skins/include/templates/en/mainsite/searchPage.tpl N phpslash-skins/include/templates/en/mainsite/skin.ini N phpslash-skins/include/templates/en/mainsite/slashFoot.tpl N phpslash-skins/include/templates/en/mainsite/slashHead.tpl N phpslash-skins/include/templates/en/mainsite/story.tpl N phpslash-skins/include/templates/en/mainsite/storyIndex.tpl N phpslash-skins/include/templates/en/mainsite/submissionForm.tpl N phpslash-skins/include/templates/en/mainsite/commentSubmitForm.tpl N phpslash-skins/include/templates/en/muggles/titlebar.tpl N phpslash-skins/include/templates/en/muggles/submissionForm.tpl N phpslash-skins/include/templates/en/muggles/storyIndex.tpl N phpslash-skins/include/templates/en/muggles/story.tpl N phpslash-skins/include/templates/en/muggles/slashHead.tpl N phpslash-skins/include/templates/en/muggles/slashFoot.tpl N phpslash-skins/include/templates/en/muggles/skin.ini N phpslash-skins/include/templates/en/muggles/searchPage.tpl N phpslash-skins/include/templates/en/muggles/pollResultPage.tpl N phpslash-skins/include/templates/en/muggles/pollList.tpl N phpslash-skins/include/templates/en/muggles/mailinglistForm.tpl N phpslash-skins/include/templates/en/muggles/index2colright.tpl N phpslash-skins/include/templates/en/muggles/glossarySearch.tpl N phpslash-skins/include/templates/en/muggles/fancybox.tpl N phpslash-skins/include/templates/en/muggles/about.tpl N phpslash-skins/include/templates/en/muggles/navbar.tpl N phpslash-skins/include/templates/en/winxp/about.tpl N phpslash-skins/include/templates/en/winxp/fancybox.tpl N phpslash-skins/include/templates/en/winxp/slashHead.tpl N phpslash-skins/include/templates/en/winxp/storyIndex.tpl N phpslash-skins/include/templates/en/winxp/glossarySearch.tpl N phpslash-skins/include/templates/en/winxp/index2colright.tpl N phpslash-skins/include/templates/en/winxp/mailinglistForm.tpl N phpslash-skins/include/templates/en/winxp/navbar.tpl N phpslash-skins/include/templates/en/winxp/pollList.tpl N phpslash-skins/include/templates/en/winxp/pollResultPage.tpl N phpslash-skins/include/templates/en/winxp/searchPage.tpl N phpslash-skins/include/templates/en/winxp/slashFoot.tpl N phpslash-skins/include/templates/en/winxp/story.tpl N phpslash-skins/include/templates/en/winxp/submissionForm.tpl N phpslash-skins/include/templates/en/winxp/titlebar.tpl N phpslash-skins/include/templates/en/winxp/skin.ini N phpslash-skins/include/templates/en/winxp/commentSubmitForm.tpl N phpslash-skins/include/templates/en/bluerobot/skin.ini N phpslash-skins/include/templates/en/bluerobot/slashHead.tpl N phpslash-skins/include/templates/en/bluerobot/index3col.tpl N phpslash-skins/include/templates/en/bluerobot/index2colright.tpl N phpslash-skins/include/templates/en/bluerobot/index2colleft.tpl N phpslash-skins/include/templates/en/bluerobot/index1col.tpl N phpslash-skins/include/templates/en/bluerobot/navbar.tpl N phpslash-skins/include/templates/en/bluerobot/navbarFooter.tpl N phpslash-skins/include/templates/en/bluerobot/titlebar.tpl N phpslash-skins/include/templates/en/bluerobot/storyIndex.tpl N phpslash-skins/include/templates/en/bluerobot/story.tpl N phpslash-skins/include/templates/en/bluerobot/slashFoot.tpl N phpslash-skins/include/templates/en/bluerobot/fancybox.tpl N phpslash-skins/include/templates/en/bluerobot/pollShow.tpl N phpslash-skins/include/templates/en/funkatronic/titlebar.tpl N phpslash-skins/include/templates/en/funkatronic/slashHead.tpl N phpslash-skins/include/templates/en/funkatronic/fancybox.tpl N phpslash-skins/include/templates/en/funkatronic/skin.ini N phpslash-skins/include/templates/en/funkatronic/pollShow.tpl No conflicts created by this import ***** Bogus filespec: - Imported sources |
From: Joe S. <joe...@us...> - 2003-03-12 16:13:36
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1:/tmp/cvs-serv7975 Log Message: Initial import from phpslash-ft cvs Status: Vendor Tag: jrandom Release Tags: start N phpslash-dev/CHANGES N phpslash-dev/LICENSE N phpslash-dev/Makefile N phpslash-dev/README N phpslash-dev/VERSION N phpslash-dev/extchg.sh N phpslash-dev/contrib/locallib_udf.php N phpslash-dev/contrib/extchg.sh N phpslash-dev/contrib/iso3166.tab N phpslash-dev/contrib/tz_bench.php N phpslash-dev/contrib/tz_test_basic.php N phpslash-dev/contrib/tz_test_localtime.php N phpslash-dev/contrib/tz_test_mktime.php N phpslash-dev/contrib/tz_test_strftime.php N phpslash-dev/contrib/tz_test_strtotime.php N phpslash-dev/contrib/zone.tab N phpslash-dev/contrib/cronmail.php N phpslash-dev/doc/README.1st N phpslash-dev/doc/CREDITS N phpslash-dev/doc/changeHistory/CHANGES-05-061 N phpslash-dev/doc/changeHistory/CHANGES-062-065 N phpslash-dev/doc/html/Makefile N phpslash-dev/doc/html/phpslash.sgml N phpslash-dev/doc/html/psldeveloper.sgml N phpslash-dev/include/class/slashAuthCR.class N phpslash-dev/include/class/Comment.class N phpslash-dev/include/class/Infolog.class N phpslash-dev/include/class/NavBar.class N phpslash-dev/include/class/TopicBar.class N phpslash-dev/include/class/Variable.class N phpslash-dev/include/class/functions.inc N phpslash-dev/include/class/lib.resources.php N phpslash-dev/include/class/libtz.inc N phpslash-dev/include/class/slashAuth.class N phpslash-dev/include/class/slashDB.class N phpslash-dev/include/class/slashPerm.class N phpslash-dev/include/class/slashSess.class N phpslash-dev/include/class/slashTemplate.class N phpslash-dev/include/class/slash_sql.class N phpslash-dev/include/class/tz.class N phpslash-dev/include/class/tz_env.class N phpslash-dev/include/class/tz_file.class N phpslash-dev/include/class/tz_functions.inc N phpslash-dev/include/class/tz_nonnative.class N phpslash-dev/include/class/tz_posix.class N phpslash-dev/include/class/Group.class N phpslash-dev/include/class/jpcache/jpcache.php N phpslash-dev/include/class/jpcache/LICENSE N phpslash-dev/include/class/jpcache/jpcache-config.php N phpslash-dev/include/class/jpcache/jpcache-main.php N phpslash-dev/include/class/jpcache/readme N phpslash-dev/include/class/jpcache/script.sql N phpslash-dev/include/class/jpcache/type/file.php N phpslash-dev/include/class/jpcache/type/mysql.php N phpslash-dev/include/class/jpcache/type/phplib.php N phpslash-dev/include/locale/en.php N phpslash-dev/include/locale/es.php N phpslash-dev/include/locale/en_GB.LC_TIME.php N phpslash-dev/include/locale/en_US.LC_TIME.php N phpslash-dev/include/locale/fr.php N phpslash-dev/include/locale/fr.LC_TIME.php N phpslash-dev/include/locale/nl.php N phpslash-dev/include/locale/fr_FR.LC_TIME.php N phpslash-dev/include/locale/no.php N phpslash-dev/include/locale/no_NO.LC_TIME.php N phpslash-dev/include/locale/de.php N phpslash-dev/include/templates/en/basic/about.tpl N phpslash-dev/include/templates/en/basic/article-pf.tpl N phpslash-dev/include/templates/en/basic/article-wml.tpl N phpslash-dev/include/templates/en/basic/article-xhtmlb.tpl N phpslash-dev/include/templates/en/basic/article.tpl N phpslash-dev/include/templates/en/basic/articleEmailForm.tpl N phpslash-dev/include/templates/en/basic/articleEmailSent.tpl N phpslash-dev/include/templates/en/basic/authorEmailLostPW.tpl N phpslash-dev/include/templates/en/basic/authorList.tpl N phpslash-dev/include/templates/en/basic/authorNew.tpl N phpslash-dev/include/templates/en/basic/authorProfile.tpl N phpslash-dev/include/templates/en/basic/backendAV.tpl N phpslash-dev/include/templates/en/basic/backendBlock.tpl N phpslash-dev/include/templates/en/basic/backendHTML.tpl N phpslash-dev/include/templates/en/basic/backendJS.tpl N phpslash-dev/include/templates/en/basic/backendJSData.tpl N phpslash-dev/include/templates/en/basic/backendMozilla.tpl N phpslash-dev/include/templates/en/basic/backendOpml.tpl N phpslash-dev/include/templates/en/basic/backendRSS1.tpl N phpslash-dev/include/templates/en/basic/backendRSS91.tpl N phpslash-dev/include/templates/en/basic/backendRSS92.tpl N phpslash-dev/include/templates/en/basic/backendTxt.tpl N phpslash-dev/include/templates/en/basic/backendWml.tpl N phpslash-dev/include/templates/en/basic/backendXHTMLb.tpl N phpslash-dev/include/templates/en/basic/blockEdit.tpl N phpslash-dev/include/templates/en/basic/blockList.tpl N phpslash-dev/include/templates/en/basic/blocktypeList.tpl N phpslash-dev/include/templates/en/basic/borderedbox.tpl N phpslash-dev/include/templates/en/basic/breadcrumb.tpl N phpslash-dev/include/templates/en/basic/calendar.tpl N phpslash-dev/include/templates/en/basic/comment.tpl N phpslash-dev/include/templates/en/basic/commentDisplay.tpl N phpslash-dev/include/templates/en/basic/commentFlat.tpl N phpslash-dev/include/templates/en/basic/commentIndex.tpl N phpslash-dev/include/templates/en/basic/commentNest.tpl N phpslash-dev/include/templates/en/basic/commentSubmitForm.tpl N phpslash-dev/include/templates/en/basic/commentblock.tpl N phpslash-dev/include/templates/en/basic/emailNotifyComment.tpl N phpslash-dev/include/templates/en/basic/emailNotifySubmission.tpl N phpslash-dev/include/templates/en/basic/emailStory.tpl N phpslash-dev/include/templates/en/basic/error.tpl N phpslash-dev/include/templates/en/basic/fancybox.tpl N phpslash-dev/include/templates/en/basic/framedbox.tpl N phpslash-dev/include/templates/en/basic/glossaryList.tpl N phpslash-dev/include/templates/en/basic/glossaryNew.tpl N phpslash-dev/include/templates/en/basic/glossarySearch.tpl N phpslash-dev/include/templates/en/basic/groupList.tpl N phpslash-dev/include/templates/en/basic/groupNew.tpl N phpslash-dev/include/templates/en/basic/index1col.tpl N phpslash-dev/include/templates/en/basic/index2colleft.tpl N phpslash-dev/include/templates/en/basic/index2colright.tpl N phpslash-dev/include/templates/en/basic/index3col.tpl N phpslash-dev/include/templates/en/basic/infolog.tpl N phpslash-dev/include/templates/en/basic/loginblock.tpl N phpslash-dev/include/templates/en/basic/loginform.tpl N phpslash-dev/include/templates/en/basic/loginformCR.tpl N phpslash-dev/include/templates/en/basic/mailinglistAdmin.tpl N phpslash-dev/include/templates/en/basic/mailinglistForm.tpl N phpslash-dev/include/templates/en/basic/mailinglistList.tpl N phpslash-dev/include/templates/en/basic/mailinglistMessage.tpl N phpslash-dev/include/templates/en/basic/mailinglistMessageBody.tpl N phpslash-dev/include/templates/en/basic/mailinglistMessageForm.tpl N phpslash-dev/include/templates/en/basic/mailinglistSubscribe.tpl N phpslash-dev/include/templates/en/basic/mailinglistUnsubscribe.tpl N phpslash-dev/include/templates/en/basic/message.tpl N phpslash-dev/include/templates/en/basic/messageStrike.tpl N phpslash-dev/include/templates/en/basic/navbar.tpl N phpslash-dev/include/templates/en/basic/navbarBlock.tpl N phpslash-dev/include/templates/en/basic/navbarBlockh.tpl N phpslash-dev/include/templates/en/basic/navbarFooter.tpl N phpslash-dev/include/templates/en/basic/notfound.tpl N phpslash-dev/include/templates/en/basic/openbox.tpl N phpslash-dev/include/templates/en/basic/permissionList.tpl N phpslash-dev/include/templates/en/basic/permissionNew.tpl N phpslash-dev/include/templates/en/basic/pollAdminLink.tpl N phpslash-dev/include/templates/en/basic/pollDisplay.tpl N phpslash-dev/include/templates/en/basic/pollEdit.tpl N phpslash-dev/include/templates/en/basic/pollEditLink.tpl N phpslash-dev/include/templates/en/basic/pollList.tpl N phpslash-dev/include/templates/en/basic/pollMoreLink.tpl N phpslash-dev/include/templates/en/basic/pollNewButton.tpl N phpslash-dev/include/templates/en/basic/pollResultPage.tpl N phpslash-dev/include/templates/en/basic/pollShow.tpl N phpslash-dev/include/templates/en/basic/queryblock.tpl N phpslash-dev/include/templates/en/basic/quoteblock.tpl N phpslash-dev/include/templates/en/basic/registerform.tpl N phpslash-dev/include/templates/en/basic/rssblock.tpl N phpslash-dev/include/templates/en/basic/searchPage.tpl N phpslash-dev/include/templates/en/basic/sectionList.tpl N phpslash-dev/include/templates/en/basic/sectionNew.tpl N phpslash-dev/include/templates/en/basic/sectionsblock.tpl N phpslash-dev/include/templates/en/basic/skinsblock.tpl N phpslash-dev/include/templates/en/basic/slashFoot.tpl N phpslash-dev/include/templates/en/basic/slashHead.tpl N phpslash-dev/include/templates/en/basic/story.tpl N phpslash-dev/include/templates/en/basic/storyIndex.tpl N phpslash-dev/include/templates/en/basic/storyList.tpl N phpslash-dev/include/templates/en/basic/storyNew.tpl N phpslash-dev/include/templates/en/basic/storyRelated.tpl N phpslash-dev/include/templates/en/basic/submission.tpl N phpslash-dev/include/templates/en/basic/submissionForm.tpl N phpslash-dev/include/templates/en/basic/submissionList.tpl N phpslash-dev/include/templates/en/basic/submissionNew.tpl N phpslash-dev/include/templates/en/basic/titlebar.tpl N phpslash-dev/include/templates/en/basic/topicBar.tpl N phpslash-dev/include/templates/en/basic/topicList.tpl N phpslash-dev/include/templates/en/basic/topicNew.tpl N phpslash-dev/include/templates/en/basic/topicsDisplay.tpl N phpslash-dev/include/templates/en/basic/topicsblock.tpl N phpslash-dev/include/templates/en/basic/tz_bench.tpl N phpslash-dev/include/templates/en/basic/tz_form_confirm.tpl N phpslash-dev/include/templates/en/basic/tz_form_native.tpl N phpslash-dev/include/templates/en/basic/tz_form_posix.tpl N phpslash-dev/include/templates/en/basic/tz_show.tpl N phpslash-dev/include/templates/en/basic/variableList.tpl N phpslash-dev/include/templates/en/basic/variableNew.tpl N phpslash-dev/include/templates/en/basic/skinsblockNC.tpl N phpslash-dev/include/templates/en/basiccurves/articleEmailForm.tpl N phpslash-dev/include/templates/en/basiccurves/articleEmailSent.tpl N phpslash-dev/include/templates/en/basiccurves/backendHTML.tpl N phpslash-dev/include/templates/en/basiccurves/fancybox.tpl N phpslash-dev/include/templates/en/basiccurves/skin.ini N phpslash-dev/include/templates/en/basiccurves/slashHead.tpl N phpslash-dev/include/templates/en/basiccurves/titlebar.tpl N phpslash-dev/include/templates/en/default/about.tpl N phpslash-dev/include/templates/en/default/article-pf.tpl N phpslash-dev/include/templates/en/default/article-wml.tpl N phpslash-dev/include/templates/en/default/article-xhtmlb.tpl N phpslash-dev/include/templates/en/default/article.tpl N phpslash-dev/include/templates/en/default/articleEmailForm.tpl N phpslash-dev/include/templates/en/default/articleEmailSent.tpl N phpslash-dev/include/templates/en/default/authorEmailLostPW.tpl N phpslash-dev/include/templates/en/default/authorList.tpl N phpslash-dev/include/templates/en/default/authorNew.tpl N phpslash-dev/include/templates/en/default/authorProfile.tpl N phpslash-dev/include/templates/en/default/backendAV.tpl N phpslash-dev/include/templates/en/default/backendBlock.tpl N phpslash-dev/include/templates/en/default/backendHTML.tpl N phpslash-dev/include/templates/en/default/backendJS.tpl N phpslash-dev/include/templates/en/default/backendJSData.tpl N phpslash-dev/include/templates/en/default/backendMozilla.tpl N phpslash-dev/include/templates/en/default/backendOpml.tpl N phpslash-dev/include/templates/en/default/backendRSS1.tpl N phpslash-dev/include/templates/en/default/backendRSS91.tpl N phpslash-dev/include/templates/en/default/backendRSS92.tpl N phpslash-dev/include/templates/en/default/backendTxt.tpl N phpslash-dev/include/templates/en/default/backendWml.tpl N phpslash-dev/include/templates/en/default/backendXHTMLb.tpl N phpslash-dev/include/templates/en/default/blockEdit.tpl N phpslash-dev/include/templates/en/default/blockList.tpl N phpslash-dev/include/templates/en/default/blocktypeList.tpl N phpslash-dev/include/templates/en/default/breadcrumb.tpl N phpslash-dev/include/templates/en/default/calendar.tpl N phpslash-dev/include/templates/en/default/comment.tpl N phpslash-dev/include/templates/en/default/commentDisplay.tpl N phpslash-dev/include/templates/en/default/commentFlat.tpl N phpslash-dev/include/templates/en/default/commentIndex.tpl N phpslash-dev/include/templates/en/default/commentNest.tpl N phpslash-dev/include/templates/en/default/commentSubmitForm.tpl N phpslash-dev/include/templates/en/default/commentblock.tpl N phpslash-dev/include/templates/en/default/emailNotifyComment.tpl N phpslash-dev/include/templates/en/default/emailNotifySubmission.tpl N phpslash-dev/include/templates/en/default/emailStory.tpl N phpslash-dev/include/templates/en/default/error.tpl N phpslash-dev/include/templates/en/default/fancybox.tpl N phpslash-dev/include/templates/en/default/framedbox.tpl N phpslash-dev/include/templates/en/default/glossaryList.tpl N phpslash-dev/include/templates/en/default/glossaryNew.tpl N phpslash-dev/include/templates/en/default/glossarySearch.tpl N phpslash-dev/include/templates/en/default/groupList.tpl N phpslash-dev/include/templates/en/default/groupNew.tpl N phpslash-dev/include/templates/en/default/index1col.tpl N phpslash-dev/include/templates/en/default/index2colleft.tpl N phpslash-dev/include/templates/en/default/index2colright.tpl N phpslash-dev/include/templates/en/default/index3col.tpl N phpslash-dev/include/templates/en/default/infolog.tpl N phpslash-dev/include/templates/en/default/loginblock.tpl N phpslash-dev/include/templates/en/default/loginform.tpl N phpslash-dev/include/templates/en/default/loginformCR.tpl N phpslash-dev/include/templates/en/default/mailinglistAdmin.tpl N phpslash-dev/include/templates/en/default/mailinglistForm.tpl N phpslash-dev/include/templates/en/default/mailinglistList.tpl N phpslash-dev/include/templates/en/default/mailinglistMessage.tpl N phpslash-dev/include/templates/en/default/mailinglistMessageBody.tpl N phpslash-dev/include/templates/en/default/mailinglistMessageForm.tpl N phpslash-dev/include/templates/en/default/mailinglistSubscribe.tpl N phpslash-dev/include/templates/en/default/mailinglistUnsubscribe.tpl N phpslash-dev/include/templates/en/default/message.tpl N phpslash-dev/include/templates/en/default/messageStrike.tpl N phpslash-dev/include/templates/en/default/navbar.tpl N phpslash-dev/include/templates/en/default/navbarBlock.tpl N phpslash-dev/include/templates/en/default/navbarBlockh.tpl N phpslash-dev/include/templates/en/default/navbarFooter.tpl N phpslash-dev/include/templates/en/default/notfound.tpl N phpslash-dev/include/templates/en/default/openbox.tpl N phpslash-dev/include/templates/en/default/permissionList.tpl N phpslash-dev/include/templates/en/default/permissionNew.tpl N phpslash-dev/include/templates/en/default/pollAdminLink.tpl N phpslash-dev/include/templates/en/default/pollDisplay.tpl N phpslash-dev/include/templates/en/default/pollEdit.tpl N phpslash-dev/include/templates/en/default/pollEditLink.tpl N phpslash-dev/include/templates/en/default/pollList.tpl N phpslash-dev/include/templates/en/default/pollMoreLink.tpl N phpslash-dev/include/templates/en/default/pollNewButton.tpl N phpslash-dev/include/templates/en/default/pollResultPage.tpl N phpslash-dev/include/templates/en/default/pollShow.tpl N phpslash-dev/include/templates/en/default/queryblock.tpl N phpslash-dev/include/templates/en/default/quoteblock.tpl N phpslash-dev/include/templates/en/default/registerform.tpl N phpslash-dev/include/templates/en/default/rssblock.tpl N phpslash-dev/include/templates/en/default/searchPage.tpl N phpslash-dev/include/templates/en/default/sectionList.tpl N phpslash-dev/include/templates/en/default/sectionNew.tpl N phpslash-dev/include/templates/en/default/sectionsblock.tpl N phpslash-dev/include/templates/en/default/skinsblock.tpl N phpslash-dev/include/templates/en/default/slashFoot.tpl N phpslash-dev/include/templates/en/default/slashHead.tpl N phpslash-dev/include/templates/en/default/story.tpl N phpslash-dev/include/templates/en/default/storyIndex.tpl N phpslash-dev/include/templates/en/default/storyList.tpl N phpslash-dev/include/templates/en/default/storyNew.tpl N phpslash-dev/include/templates/en/default/storyRelated.tpl N phpslash-dev/include/templates/en/default/submission.tpl N phpslash-dev/include/templates/en/default/submissionForm.tpl N phpslash-dev/include/templates/en/default/submissionList.tpl N phpslash-dev/include/templates/en/default/submissionNew.tpl N phpslash-dev/include/templates/en/default/titlebar.tpl N phpslash-dev/include/templates/en/default/topicBar.tpl N phpslash-dev/include/templates/en/default/topicList.tpl N phpslash-dev/include/templates/en/default/topicNew.tpl N phpslash-dev/include/templates/en/default/topicsDisplay.tpl N phpslash-dev/include/templates/en/default/topicsblock.tpl N phpslash-dev/include/templates/en/default/tz_bench.tpl N phpslash-dev/include/templates/en/default/tz_form_confirm.tpl N phpslash-dev/include/templates/en/default/tz_form_native.tpl N phpslash-dev/include/templates/en/default/tz_form_posix.tpl N phpslash-dev/include/templates/en/default/tz_show.tpl N phpslash-dev/include/templates/en/default/variableList.tpl N phpslash-dev/include/templates/en/default/variableNew.tpl N phpslash-dev/include/modules/poll/index.php N phpslash-dev/include/modules/poll/admin.php N phpslash-dev/include/modules/poll/Poll.class N phpslash-dev/include/modules/poll/poll.php N phpslash-dev/include/modules/story/article.php N phpslash-dev/include/modules/story/Story.class N phpslash-dev/include/modules/story/Story_admin.class N phpslash-dev/include/modules/story/Story_base.class N phpslash-dev/include/modules/story/admin.php N phpslash-dev/include/modules/story/index.php N phpslash-dev/include/modules/phpinfo/index.php N phpslash-dev/include/modules/about/index.php N phpslash-dev/include/modules/about/about.php N phpslash-dev/include/modules/mailinglist/MailingList.class N phpslash-dev/include/modules/mailinglist/admin.php N phpslash-dev/include/modules/mailinglist/index.php N phpslash-dev/include/modules/search/index.php N phpslash-dev/include/modules/glossary/admin.php N phpslash-dev/include/modules/glossary/Glossary.class N phpslash-dev/include/modules/glossary/index.php N phpslash-dev/include/modules/submission/admin.php N phpslash-dev/include/modules/submission/Submission.class N phpslash-dev/include/modules/submission/index.php N phpslash-dev/include/modules/block/index.php N phpslash-dev/include/modules/block/Block.class N phpslash-dev/include/modules/block/Block_i.class N phpslash-dev/include/modules/block/Block_render_i.class N phpslash-dev/include/modules/block/Block_admin.class N phpslash-dev/include/modules/block/admin.php N phpslash-dev/include/modules/block/blocktypes/Block_render_cal.class N phpslash-dev/include/modules/block/blocktypes/Block_render_comments.class N phpslash-dev/include/modules/block/blocktypes/Block_render_fmsearch.class N phpslash-dev/include/modules/block/blocktypes/Block_render_html.class N phpslash-dev/include/modules/block/blocktypes/Block_render_login.class N phpslash-dev/include/modules/block/blocktypes/Block_render_navbar.class N phpslash-dev/include/modules/block/blocktypes/Block_render_poll.class N phpslash-dev/include/modules/block/blocktypes/Block_render_query.class N phpslash-dev/include/modules/block/blocktypes/Block_render_quote.class N phpslash-dev/include/modules/block/blocktypes/Block_render_rss.class N phpslash-dev/include/modules/block/blocktypes/Block_render_section.class N phpslash-dev/include/modules/block/blocktypes/Block_render_skin.class N phpslash-dev/include/modules/block/blocktypes/Block_render_submission.class N phpslash-dev/include/modules/block/blocktypes/Block_render_topic.class N phpslash-dev/include/modules/block/blocktypes/Block_render_url.class N phpslash-dev/include/modules/author/index.php N phpslash-dev/include/modules/author/Author.class N phpslash-dev/include/modules/author/admin.php N phpslash-dev/include/modules/section/Section.class N phpslash-dev/include/modules/section/admin.php N phpslash-dev/include/modules/group/Group.class N phpslash-dev/include/modules/group/admin.php N phpslash-dev/include/modules/topic/Topic.class N phpslash-dev/include/modules/topic/admin.php N phpslash-dev/include/modules/test/index.php N phpslash-dev/public_html/admin.php N phpslash-dev/public_html/article.php N phpslash-dev/public_html/backend.php N phpslash-dev/public_html/comment.php N phpslash-dev/public_html/profile.php N phpslash-dev/public_html/config-dist.php N phpslash-dev/public_html/censor.php N phpslash-dev/public_html/errordocument.php N phpslash-dev/public_html/glossary.php N phpslash-dev/public_html/about.php N phpslash-dev/public_html/index.php N phpslash-dev/public_html/login.php N phpslash-dev/public_html/mailinglist.php N phpslash-dev/public_html/poll.php N phpslash-dev/public_html/search.php N phpslash-dev/public_html/test.php N phpslash-dev/public_html/md5.js N phpslash-dev/public_html/submission.php N phpslash-dev/public_html/tz_select.php N phpslash-dev/public_html/external.php N phpslash-dev/public_html/config-dist.ini.php N phpslash-dev/public_html/admin/blockAdmin.php N phpslash-dev/public_html/admin/commentAdmin.php N phpslash-dev/public_html/admin/config.php N phpslash-dev/public_html/admin/glossaryAdmin.php N phpslash-dev/public_html/admin/groupAdmin.php N phpslash-dev/public_html/admin/index.php N phpslash-dev/public_html/admin/infologAdmin.php N phpslash-dev/public_html/admin/mailinglistAdmin.php N phpslash-dev/public_html/admin/pollAdmin.php N phpslash-dev/public_html/admin/sectionAdmin.php N phpslash-dev/public_html/admin/storyAdmin.php N phpslash-dev/public_html/admin/submissionAdmin.php N phpslash-dev/public_html/admin/topicAdmin.php N phpslash-dev/public_html/admin/variableAdmin.php N phpslash-dev/public_html/admin/authorAdmin.php N phpslash-dev/public_html/images/dancing_tux.gif N phpslash-dev/public_html/images/dot.gif N phpslash-dev/public_html/images/k_squidster.gif N phpslash-dev/public_html/images/leftbar.gif N phpslash-dev/public_html/images/mainbar.gif N phpslash-dev/public_html/images/new-logo.gif N phpslash-dev/public_html/images/phpslash.gif N phpslash-dev/public_html/images/rightbar.gif N phpslash-dev/public_html/images/slashdot.gif N phpslash-dev/public_html/images/layout/blank.gif N phpslash-dev/public_html/images/layout/slc.gif N phpslash-dev/public_html/images/topics/quicklinks.gif N phpslash-dev/public_html/images/topics/topicamd.gif N phpslash-dev/public_html/images/topics/topicamiga.gif N phpslash-dev/public_html/images/topics/topicaol.jpg N phpslash-dev/public_html/images/topics/topicapple.gif N phpslash-dev/public_html/images/topics/topicbe.gif N phpslash-dev/public_html/images/topics/topicbug.jpg N phpslash-dev/public_html/images/topics/topiccaldera.gif N phpslash-dev/public_html/images/topics/topiccda.jpg N phpslash-dev/public_html/images/topics/topiccomdex.gif N phpslash-dev/public_html/images/topics/topiccompaq.gif N phpslash-dev/public_html/images/topics/topiccorel.gif N phpslash-dev/public_html/images/topics/topicdebian.gif N phpslash-dev/public_html/images/topics/topicdigital.gif N phpslash-dev/public_html/images/topics/topicdoj.jpg N phpslash-dev/public_html/images/topics/topiced.gif N phpslash-dev/public_html/images/topics/topicencryption.gif N phpslash-dev/public_html/images/topics/topicenlightenment.gif N phpslash-dev/public_html/images/topics/topiceplus.jpg N phpslash-dev/public_html/images/topics/topicfreebsd.gif N phpslash-dev/public_html/images/topics/topicgames.jpg N phpslash-dev/public_html/images/topics/topicgimp.gif N phpslash-dev/public_html/images/topics/topicgnome.gif N phpslash-dev/public_html/images/topics/topicgnu.jpg N phpslash-dev/public_html/images/topics/topicgnustep.gif N phpslash-dev/public_html/images/topics/topichardware.gif N phpslash-dev/public_html/images/topics/topichumor.gif N phpslash-dev/public_html/images/topics/topicibm.gif N phpslash-dev/public_html/images/topics/topicie.jpg N phpslash-dev/public_html/images/topics/topicintel.gif N phpslash-dev/public_html/images/topics/topicinternet.jpg N phpslash-dev/public_html/images/topics/topicjava.jpg N phpslash-dev/public_html/images/topics/topickde.gif N phpslash-dev/public_html/images/topics/topiclinux.gif N phpslash-dev/public_html/images/topics/topicmoney.gif N phpslash-dev/public_html/images/topics/topicmovies.gif N phpslash-dev/public_html/images/topics/topicms.gif N phpslash-dev/public_html/images/topics/topicmusic.gif N phpslash-dev/public_html/images/topics/topicnetscape.gif N phpslash-dev/public_html/images/topics/topicnews.gif N phpslash-dev/public_html/images/topics/topicperl.gif N phpslash-dev/public_html/images/topics/topicphpslash.gif N phpslash-dev/public_html/images/topics/topicpilot.gif N phpslash-dev/public_html/images/topics/topicquake.gif N phpslash-dev/public_html/images/topics/topicquickies.gif N phpslash-dev/public_html/images/topics/topicredhat.gif N phpslash-dev/public_html/images/topics/topicscience.gif N phpslash-dev/public_html/images/topics/topicsgi.gif N phpslash-dev/public_html/images/topics/topicslashdot.gif N phpslash-dev/public_html/images/topics/topicspam.jpg N phpslash-dev/public_html/images/topics/topicstarwars.gif N phpslash-dev/public_html/images/topics/topicsun.gif N phpslash-dev/public_html/images/topics/topicsuse.gif N phpslash-dev/public_html/images/topics/topictech2.jpg N phpslash-dev/public_html/images/topics/topictv.jpg N phpslash-dev/public_html/images/topics/topicunix.jpg N phpslash-dev/public_html/images/topics/topicus.gif N phpslash-dev/public_html/images/topics/topicwine.gif N phpslash-dev/public_html/images/topics/topicx.jpg N phpslash-dev/public_html/images/topics/topicxmas.jpg N phpslash-dev/public_html/styles/basic.css N phpslash-dev/public_html/styles/xhtmlb.css N phpslash-dev/scripts/db_xfer.php3.disabled N phpslash-dev/scripts/url_test.php N phpslash-dev/tables/0.7/65_to_7.sql N phpslash-dev/tables/0.7/slash-all.sql No conflicts created by this import ***** Bogus filespec: - Imported sources |