You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(183) |
Dec
(82) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(16) |
Feb
(3) |
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Matt M. <pro...@us...> - 2004-11-06 19:09:59
|
Update of /cvsroot/webschool/webschool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442 Modified Files: admin.php Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: admin.php =================================================================== RCS file: /cvsroot/webschool/webschool/admin.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** admin.php 5 Nov 2004 02:53:15 -0000 1.28 --- admin.php 6 Nov 2004 19:09:19 -0000 1.29 *************** *** 25,35 **** $smarty->assign("lang", $lang); ! //guest are not allowed! let them log on, though if( GetUser() == 1 && ( $_GET['action'] != "login" && $_GET['action'] != "lostpass" && $_GET['action'] != "resetpass") ) { ! $smarty->display("adminlogin.tpl"); ! include("lib/footer.php"); die(); } //recovering lost password --- 25,44 ---- $smarty->assign("lang", $lang); ! ! ! //guest are not allowed! let them log on, though. allow certian actions, even ! //though they are guests. if( GetUser() == 1 && ( $_GET['action'] != "login" && $_GET['action'] != "lostpass" && $_GET['action'] != "resetpass") ) { ! ! $smarty->display("adminlogin.tpl"); ! include("lib/footer.php"); ! die(); } + //User Requests Logout + if($_GET['action'] == "logout") { + Logout(); + } //recovering lost password *************** *** 37,41 **** if( !isset( $_POST['username'] ) ){ $smarty->display("admin.lostpass.tpl"); - die(); } else { $newpasscode = rand(1, 9999999999999); --- 46,49 ---- *************** *** 47,54 **** $smarty->assign("recoveredusername", $_POST['username']); $smarty->display("admin.lostpass.tpl"); ! die(); } } ! if( $_GET['action'] == "resetpass" ) { --- 55,68 ---- $smarty->assign("recoveredusername", $_POST['username']); $smarty->display("admin.lostpass.tpl"); ! ! db(__FILE__,__LINE__, "SELECT email FROM {_USERS_} WHERE id=2"); ! $adminemail = dbr(); ! mail($adminemail['email'], "Password reset request from {$_POST['username']}", "They have requested a password reset"); ! } + include("lib/footer.php"); + die(); } ! //resetting lost password if( $_GET['action'] == "resetpass" ) { *************** *** 63,67 **** $smarty->display("admin.resetpass.tpl"); } else { ! dbn(__FILE__,__LINE__,"UPDATE "._USERS_." SET password='".md5($_POST['newpass'])."' WHERE username='".$_POST['username']."'"); } include("lib/footer.php"); --- 77,81 ---- $smarty->display("admin.resetpass.tpl"); } else { ! dbn(__FILE__,__LINE__,"UPDATE "._USERS_." SET password='".sha1($_POST['newpass'])."', newpasscode='' WHERE username='".$_REQUEST['username']."'"); } include("lib/footer.php"); *************** *** 74,78 **** //User Requests Login if( $_GET['action'] == "login" ) { ! $return = Login($_POST['username'], $_POST['pass']); switch($return) { case 1: --- 88,94 ---- //User Requests Login if( $_GET['action'] == "login" ) { ! ! $return = Login($_POST['username'], $_POST['pass']); ! switch($return) { case 1: *************** *** 92,95 **** --- 108,112 ---- break; } + include("lib/footer.php"); die(); } *************** *** 129,133 **** db(__FILE__,__LINE__,"SELECT filename FROM "._AMODS_." WHERE name='".$_REQUEST['amod']."'"); $filename = dbr(); - $smarty->assign("load", true); $smarty->display("admin.tpl"); include("admin/".$filename['filename']); --- 146,149 ---- *************** *** 136,143 **** } - //User Requests Logout - if($_GET['action'] == "logout") { - Logout(); - } include("lib/footer.php"); --- 152,155 ---- |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:42
|
Update of /cvsroot/webschool/webschool/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/lib Modified Files: auth.php Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: auth.php =================================================================== RCS file: /cvsroot/webschool/webschool/lib/auth.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** auth.php 30 Oct 2004 22:34:43 -0000 1.4 --- auth.php 6 Nov 2004 19:09:21 -0000 1.5 *************** *** 17,21 **** */ - //we don't want unwanted veiwing! if(eregi("auth.php", $_SERVER['PHP_SELF'])) { --- 17,20 ---- *************** *** 168,172 **** return 1; } ! $Upass = md5($Upass); //passwords match? if($result['password'] != $Upass){ --- 167,171 ---- return 1; } ! $Upass = sha1($Upass); //passwords match? if($result['password'] != $Upass){ |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:42
|
Update of /cvsroot/webschool/webschool/lang/english/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/lang/english/admin Modified Files: user.lang.php Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: user.lang.php =================================================================== RCS file: /cvsroot/webschool/webschool/lang/english/admin/user.lang.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** user.lang.php 30 Oct 2004 02:59:35 -0000 1.5 --- user.lang.php 6 Nov 2004 19:09:21 -0000 1.6 *************** *** 7,12 **** $lang['users']['permissions_symbol'] = "Change"; $lang['users']['lock'] = "Lock"; - $lang['users']['lock_unlock'] = "[*]"; - $lang['users']['lock_lock'] = "*"; $lang['users']['delete'] = "Delete?"; $lang['users']['delete_symbol'] = "X"; --- 7,10 ---- |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:33
|
Update of /cvsroot/webschool/webschool/theme/templates/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/theme/templates/admin Modified Files: users.tpl Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: users.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin/users.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** users.tpl 30 Oct 2004 22:34:44 -0000 1.4 --- users.tpl 6 Nov 2004 19:09:22 -0000 1.5 *************** *** 17,21 **** <td>{$lang.users.role}</td> {/if} ! <td>{$lang.users.profile}</td> </tr> --- 17,21 ---- <td>{$lang.users.role}</td> {/if} ! <td>Profile</td> </tr> *************** *** 30,40 **** <td> <center> ! <a href="{$AMOD}&op=lock&id={$users[x].id}"> ! {if $users[x].locked == 1} ! {$lang.users.lock_lock} ! {else} ! {$lang.users.lock_unlock} ! {/if} ! </a> </center> </td> --- 30,34 ---- <td> <center> ! <input type="checkbox" {if $users[x].locked == 1} checked="true" {/if} name="{$users[x].id}_lock" id="{$users[x].id}_lock" ONCHANGE="location = '{$AMOD}&op=lock&id={$users[x].id}'"> </center> </td> *************** *** 58,62 **** <option value="student" selected="selected">{$lang.users.roles.student}</option> {else} ! <option value="student">{$lang.users.roles.student}t</option> {/if} {if $users[x].role == "" || $users[x].role == "none"} --- 52,56 ---- <option value="student" selected="selected">{$lang.users.roles.student}</option> {else} ! <option value="student">{$lang.users.roles.student}</option> {/if} {if $users[x].role == "" || $users[x].role == "none"} *************** *** 72,84 **** ! {if $users.profileid != ''} <td><a href="{$AMOD}&op=profile&id={$users[x].id}">{$lang.users.profile_symbol}</a></td> ! {else} ! {if $perm.users >= 2} ! <td><a href="{$AMOD}&op=profilecreate&id={$users[x].id}">{$lang.users.profile_create}</a></td> ! {else} ! <td>None</td> ! {/if} ! {/if} </tr> {/section} --- 66,72 ---- ! <td><a href="{$AMOD}&op=profile&id={$users[x].id}">{$lang.users.profile_symbol}</a></td> ! </tr> {/section} |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:33
|
Update of /cvsroot/webschool/webschool/theme/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/theme/templates Modified Files: admin.tpl Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: admin.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin.tpl 5 Nov 2004 02:53:16 -0000 1.2 --- admin.tpl 6 Nov 2004 19:09:22 -0000 1.3 *************** *** 11,24 **** {include file="tablehead.tpl" tbtitle="Admin Control Panel"} ! {assign var="x" value=0} <table width="100%"> ! <tr><td colspan="5"><i>Welcome</i><b> {$user.fname}</b></td><td><div align="right"><a href="admin.php?action=logout">Logout</a></div></td></tr> <tr> {foreach from=$CPItems item=curr_item} ! <td width=60><center><a href="admin.php?amod={$curr_item.name}"><img src="admin/images/{$curr_item.name}.panel.jpeg" width="40" height="40"><br>{$curr_item.name}</a></center></td> {assign var="x" value="`$x+1`"} ! {if $x > 4} <td></td></tr><tr> {assign var="x" value="0"} {/if} {/foreach} </tr></table> --- 11,31 ---- {include file="tablehead.tpl" tbtitle="Admin Control Panel"} ! {assign var="x" value=0} <table width="100%"> ! <tr> ! <td colspan="5"> ! <i>Welcome</i><b> {$user.fname}</b> ! </td> ! <td> ! <div align="right"><a href="admin.php?action=logout">Logout</a></div> ! </td> ! </tr> <tr> {foreach from=$CPItems item=curr_item} ! <td><center><a href="admin.php?amod={$curr_item.name}"><img src="admin/images/{$curr_item.name}.panel.jpeg" width="40" height="40"><br>{$curr_item.name}</a></center></td> {assign var="x" value="`$x+1`"} ! {if $x > 5} <td></td></tr><tr> {assign var="x" value="0"} {/if} {/foreach} </tr></table> |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:33
|
Update of /cvsroot/webschool/webschool/mysql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/mysql Modified Files: webschool.sql Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: webschool.sql =================================================================== RCS file: /cvsroot/webschool/webschool/mysql/webschool.sql,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** webschool.sql 5 Nov 2004 02:09:58 -0000 1.40 --- webschool.sql 6 Nov 2004 19:09:21 -0000 1.41 *************** *** 34,52 **** `name` varchar(35) NOT NULL default '', `value` varchar(35) NOT NULL default '', `description` varchar(255) NOT NULL default '' ) TYPE=MyISAM; ! INSERT INTO `table_config` VALUES ('sotm_pic_width', '50', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_height', '100', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_allowedtypes', '', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_maxsize', '250000', ''); ! INSERT INTO `table_config` VALUES ('pic_maxsize', '250000', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_maxres', '', ''); ! INSERT INTO `table_config` VALUES ('pic_maxres', '', ''); ! INSERT INTO `table_config` VALUES ('school_name', '', ''); ! INSERT INTO `table_config` VALUES ('lang', 'english', ''); ! INSERT INTO `table_config` VALUES ('recentarticles', '5', ''); ! INSERT INTO `table_config` VALUES ('recentpages', '5', ''); ! INSERT INTO `table_config` VALUES ('recentnews', '5', ''); --- 34,54 ---- `name` varchar(35) NOT NULL default '', `value` varchar(35) NOT NULL default '', + `type` varchar(12) NOT NULL default 'int', `description` varchar(255) NOT NULL default '' ) TYPE=MyISAM; ! INSERT INTO `table_config` VALUES ('sotm_pic_width', '50', 'int', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_height', '100', 'int', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_allowedtypes', '', 'str', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_maxsize', '250000', 'int', ''); ! INSERT INTO `table_config` VALUES ('pic_maxsize', '250000', 'int', ''); ! INSERT INTO `table_config` VALUES ('sotm_pic_maxres', '', 'str', ''); ! INSERT INTO `table_config` VALUES ('pic_maxres', '', 'str', ''); ! INSERT INTO `table_config` VALUES ('school_name', '', 'str', ''); ! INSERT INTO `table_config` VALUES ('lang', 'english', 'lang', ''); ! INSERT INTO `table_config` VALUES ('recentarticles', '5', 'int', ''); ! INSERT INTO `table_config` VALUES ('recentpages', '5', 'int', ''); ! INSERT INTO `table_config` VALUES ('recentnews', '5', 'int', ''); ! *************** *** 144,158 **** - - DROP TABLE IF EXISTS `table_profiles`; - CREATE TABLE `table_profiles` ( - `id` int(11) NOT NULL auto_increment, - `owner` int(11) NOT NULL default '', - `prettyname` varchar(100) NOT NULL default '', - PRIMARY KEY (`id`) - ) TYPE=MyISAM AUTO_INCREMENT=1 ; - - - DROP TABLE IF EXISTS `table_sotm`; CREATE TABLE `table_sotm` ( --- 146,149 ---- *************** *** 187,191 **** `email` varchar(100) NOT NULL default '', `role` enum('administrator','instructor','student','none') NOT NULL default 'none', - `profileid` int(11) NOT NULL default '0', `password` varchar(100) NOT NULL default '', `newpasscode` varchar(100) NOT NULL default '', --- 178,181 ---- *************** *** 194,201 **** ) TYPE=MyISAM AUTO_INCREMENT=5 ; ! INSERT INTO `table_users` VALUES (1, 'Guest', 'Annoymous', '','', '', 0, '', "none", 0, 'd41d8cd98f00b204e9800998ecf8427e', ""); ! INSERT INTO `table_users` VALUES (3, 'Student', 'Matt', 'Student','1092779726', '127.0.0.1', 0, '', "student", 0, 'd41d8cd98f00b204e9800998ecf8427e', ""); ! INSERT INTO `table_users` VALUES (2, 'Administrator', 'Tom', 'Jinger', '1096745372', '127.0.0.1', 0, '', "administrator", 0, 'd41d8cd98f00b204e9800998ecf8427e', ""); ! INSERT INTO `table_users` VALUES (4, 'Teacher', 'Mr. John', 'Smith','1092779726', '127.0.0.1', 0, '', "instructor", 0, 'd41d8cd98f00b204e9800998ecf8427e', ""); --- 184,191 ---- ) TYPE=MyISAM AUTO_INCREMENT=5 ; ! INSERT INTO `table_users` VALUES (1, 'Guest', 'Annoymous', '','', '', 0, '', "none", 0, 'da39a3ee5e6b4b0d3255bfef95601890afd80709', ""); ! INSERT INTO `table_users` VALUES (3, 'Student', 'Matt', 'Student','', '', 0, '', "student", 0, 'da39a3ee5e6b4b0d3255bfef95601890afd80709', ""); ! INSERT INTO `table_users` VALUES (2, 'Administrator', 'Tom', 'Jinger', '', '', 0, '', "administrator", 0, 'da39a3ee5e6b4b0d3255bfef95601890afd80709', ""); ! INSERT INTO `table_users` VALUES (4, 'Teacher', 'Mr. John', 'Smith','', '', 0, '', "instructor", 0, 'da39a3ee5e6b4b0d3255bfef95601890afd80709', ""); |
From: Matt M. <pro...@us...> - 2004-11-06 19:09:30
|
Update of /cvsroot/webschool/webschool/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21442/admin Modified Files: sports.php users.php Log Message: Um, some edits to admin.php Made sports comply with other amods changed locking system in users deleted profiles, use `user` table instead updated security to sha1 Index: users.php =================================================================== RCS file: /cvsroot/webschool/webschool/admin/users.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** users.php 31 Oct 2004 04:21:46 -0000 1.5 --- users.php 6 Nov 2004 19:09:20 -0000 1.6 *************** *** 41,45 **** $users['locked'] = $row['locked']; $users['id'] = $row['id']; - $users['profileid'] = $row['profileid']; $smarty->append("users", $users); } --- 41,44 ---- *************** *** 100,104 **** }elseif( $_REQUEST['op'] == "lock" ) { ! db(__FILE__,__LINE__,"SELECT * FROM users WHERE id=".$_GET['id'].""); $res = dbr(); if( $perm['users'] >= 3 ) { --- 99,103 ---- }elseif( $_REQUEST['op'] == "lock" ) { ! db(__FILE__,__LINE__,"SELECT * FROM "._USERS_." WHERE id=".$_GET['id'].""); $res = dbr(); if( $perm['users'] >= 3 ) { *************** *** 167,176 **** } - } elseif ( $_REQUEST['op']== "profilecreate" ){ - if ($perm['user'] >= 2){ - //TODO: Profile creation - } - } elseif ( $_REQUEST['op'] == "profile" ){ - //TODO: Profile editing } } --- 166,169 ---- Index: sports.php =================================================================== RCS file: /cvsroot/webschool/webschool/admin/sports.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sports.php 31 Oct 2004 04:21:46 -0000 1.2 --- sports.php 6 Nov 2004 19:09:20 -0000 1.3 *************** *** 17,31 **** (license.txt) */ - define("_AMOD_", "admin.php?amod=Sports"); //self refernce - define("_AMODNAME_", "Sports");//self reference name. not really used... - define("_TBTITLE_", "Sports"); //table title - - // globalize these vars - global $perm, $user, $config; - if( !defined("_AUTHLOADED_") ){ ! die(); } //what? you shouldn't see this page! if($perm['sports'] > 0){ --- 17,31 ---- (license.txt) */ if( !defined("_AUTHLOADED_") ){ ! die(); } + define("_AMOD_", "admin.php?amod=Sports"); + $smarty->assign("AMOD", "admin.php?amod=Sports"); + + //assign language file + include(_fileroot_."/lang/".$config['lang']."/admin/sports.lang.php"); + $smarty->assign("lang", $lang); + //what? you shouldn't see this page! if($perm['sports'] > 0){ |
From: Matt M. <pro...@us...> - 2004-11-06 02:41:56
|
Update of /cvsroot/webschool/webschool/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7819/admin Modified Files: sotm.php Log Message: I don't believe the progess i am making tonight!! Moved config file to lib/ folder Fixed versioning Roughly finished sotm! (Except for editing) Index: sotm.php =================================================================== RCS file: /cvsroot/webschool/webschool/admin/sotm.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sotm.php 28 Oct 2004 16:34:34 -0000 1.2 --- sotm.php 6 Nov 2004 02:41:39 -0000 1.3 *************** *** 29,44 **** //Only our frined the a3 can do stuff with the SOTM! ! if ($per['sotm'] >= 3) { if( !isset($_REQUEST['year']) || !isset($_REQUEST['month']) ) { ! db(__FILE__,__LINE__, "SELECT date FROM "._SOTM_); while( $temprecords = dbr() ) { $records[] = $temprecords['date']; } ! sort($records); ! $smarty->assign("records", $records ); $smarty->display("admin/sotm.tpl"); ! } else{ if( !isset( $_POST['add'] )){ --- 29,47 ---- //Only our frined the a3 can do stuff with the SOTM! ! if ($perm['sotm'] >= 3) { if( !isset($_REQUEST['year']) || !isset($_REQUEST['month']) ) { ! db(__FILE__,__LINE__, "SELECT date FROM "._SOTM_); while( $temprecords = dbr() ) { $records[] = $temprecords['date']; } ! ! if( count($records) > 0){ ! sort($records); ! } ! $smarty->assign("records", $records ); $smarty->display("admin/sotm.tpl"); ! } else{ if( !isset( $_POST['add'] )){ *************** *** 46,84 **** }else{ //doesn't work???? ! //if ( $_FILES['sepic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['sepic']['size'] > 0 && $_FILES['jpic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['jpic']['size'] > 0 && $_FILES['soppic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['soppic']['size'] > 0 && $_FILES['fpic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['fpic']['size'] > 0) { ! ! $thedate = mktime(0,0,0,$_REQUEST['month'],1,$_REQUEST['year']); ! //get rid of any dates that match what we are putting in ! //overwrite oldrecord. ! dbn(__FILE__,__LINE__, "DELETE FROM "._SOTM_." WHERE date=".$thedate); ! ! //do freshmen ! $ffilename = "SOTM-F-".$thedate; ! copy($_FILES['fpic']['tmp_name'], _fileroot_."images/sotm/$ffilename"); ! //do sophmores ! $sopfilename = "SOTM-SOP-".$thedate; ! copy($_FILES['soppic']['tmp_name'], _fileroot_."images/sotm/$sopfilename"); ! //do juniors ! $jfilename = "SOTM-J-".$thedate; ! copy($_FILES['jpic']['tmp_name'], _fileroot_."images/sotm/$jfilename"); ! //do seniors ! $sefilename = "SOTM-SE-".$thedate; ! copy($_FILES['sepic']['tmp_name'], _fileroot_."images/sotm/$sefilename"); ! ! dbn(__FILE__,__LINE__,"INSERT INTO "._SOTM_." SET date='".$thedate."', ". ! "ftype='".$_FILES['fpic']['type']."', fpic='".$ffilename."', fname='".$_POST['fname']."', ". ! "soptype='".$_FILES['soppic']['type']."', soppic='".$sopfilename."', sopname='".$_POST['sopname']."', ". // soname='".$_POST['soname']."', ! "jtype='".$_FILES['jpic']['type']."', jpic='".$jfilename."', jname='".$_POST['jname']."', ". ! "setype='".$_FILES['sepic']['type']."', sepic='".$sefilename."', sename='".$_POST['sename']."' "); ! ! //redirect ! //Header("Location: "._AMOD_."&op=success"); ! ! //} else { ! // $smarty->display("admin/sotm.failed.tpl"); ! //} } } } ! $smarty->display("admin/sotm.tpl"); ?> \ No newline at end of file --- 49,87 ---- }else{ //doesn't work???? ! echo $_FILES['sepic']['size']."---".$config['sotm_pic_maxsize']; ! if ( $_FILES['sepic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['sepic']['size'] > 0 && $_FILES['jpic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['jpic']['size'] > 0 && $_FILES['soppic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['soppic']['size'] > 0 && $_FILES['fpic']['size'] <= $config['sotm_pic_maxsize'] && $_FILES['fpic']['size'] > 0) { ! ! $thedate = mktime(0,0,0,$_REQUEST['month'],1,$_REQUEST['year']); ! //get rid of any dates that match what we are putting in ! //overwrite oldrecord. ! dbn(__FILE__,__LINE__, "DELETE FROM "._SOTM_." WHERE date=".$thedate); ! ! //do freshmen ! $ffilename = "SOTM-F-".$thedate; ! copy($_FILES['fpic']['tmp_name'], _fileroot_."images/sotm/$ffilename"); ! //do sophmores ! $sopfilename = "SOTM-SOP-".$thedate; ! copy($_FILES['soppic']['tmp_name'], _fileroot_."images/sotm/$sopfilename"); ! //do juniors ! $jfilename = "SOTM-J-".$thedate; ! copy($_FILES['jpic']['tmp_name'], _fileroot_."images/sotm/$jfilename"); ! //do seniors ! $sefilename = "SOTM-SE-".$thedate; ! copy($_FILES['sepic']['tmp_name'], _fileroot_."images/sotm/$sefilename"); ! ! dbn(__FILE__,__LINE__,"INSERT INTO "._SOTM_." SET date='".$thedate."', ". ! "ftype='".$_FILES['fpic']['type']."', fpic='".$ffilename."', fname='".$_POST['fname']."', ". ! "soptype='".$_FILES['soppic']['type']."', soppic='".$sopfilename."', sopname='".$_POST['sopname']."', ". // soname='".$_POST['soname']."', ! "jtype='".$_FILES['jpic']['type']."', jpic='".$jfilename."', jname='".$_POST['jname']."', ". ! "setype='".$_FILES['sepic']['type']."', sepic='".$sefilename."', sename='".$_POST['sename']."' "); ! ! //redirect ! Header("Location: "._AMOD_); ! } } } + } else { + error(__FILE__,__LINE__, "No Access given.", "accessdenied", true); } ! ?> \ No newline at end of file |
From: Matt M. <pro...@us...> - 2004-11-06 02:41:55
|
Update of /cvsroot/webschool/webschool/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7819/lib Modified Files: mainfile.php Log Message: I don't believe the progess i am making tonight!! Moved config file to lib/ folder Fixed versioning Roughly finished sotm! (Except for editing) Index: mainfile.php =================================================================== RCS file: /cvsroot/webschool/webschool/lib/mainfile.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mainfile.php 28 Oct 2004 16:35:11 -0000 1.4 --- mainfile.php 6 Nov 2004 02:41:41 -0000 1.5 *************** *** 28,32 **** //if config doesn't exist... not installed ! if( !file_exists("config.php") ){ header("Location: install/install.php"); } --- 28,32 ---- //if config doesn't exist... not installed ! if( !file_exists("lib/config.php") ){ header("Location: install/install.php"); } *************** *** 35,39 **** include("config.php"); //make sure it is installed and configured for the 0.0.3 version (future upgrade stuff) ! if( !_installed_ || _webschoolversion_ != "0.0.5" ) { header("Location: install/install.php"); } --- 35,39 ---- include("config.php"); //make sure it is installed and configured for the 0.0.3 version (future upgrade stuff) ! if( !_installed_ || _webschoolversion_ != "0.0.6a" ) { header("Location: install/install.php"); } |
From: Matt M. <pro...@us...> - 2004-11-06 02:41:55
|
Update of /cvsroot/webschool/webschool/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7819/install Modified Files: step3.php step4.php Log Message: I don't believe the progess i am making tonight!! Moved config file to lib/ folder Fixed versioning Roughly finished sotm! (Except for editing) Index: step4.php =================================================================== RCS file: /cvsroot/webschool/webschool/install/step4.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** step4.php 29 Oct 2004 23:08:33 -0000 1.6 --- step4.php 6 Nov 2004 02:41:39 -0000 1.7 *************** *** 26,30 **** } else { if ( $_POST['pass'] == $_POST['rpass'] ) { ! include("../config.php"); include("../lib/db.php"); $db = db_connect(_db_server_, _db_user_, _db_pass_, _db_, _db_type_, _db_perfmon_, _db_persistent_, _db_debug_) or die();; --- 26,30 ---- } else { if ( $_POST['pass'] == $_POST['rpass'] ) { ! include("../lib/config.php"); include("../lib/db.php"); $db = db_connect(_db_server_, _db_user_, _db_pass_, _db_, _db_type_, _db_perfmon_, _db_persistent_, _db_debug_) or die();; Index: step3.php =================================================================== RCS file: /cvsroot/webschool/webschool/install/step3.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** step3.php 2 Nov 2004 01:53:46 -0000 1.21 --- step3.php 6 Nov 2004 02:41:39 -0000 1.22 *************** *** 18,21 **** --- 18,23 ---- //this is the new installation part + DEFINE("_WEBSCHOOLVERSION_", "0.0.6a"); + if( _InInstall_ && $_REQUEST['installtype'] == "install"){ $content .= "<center><h2>Installation<h3></center><br>" *************** *** 27,31 **** ////////////////////////////////////////////////////////////////////////////////////////////// ."<tr><td>Finding config.php</td><td>"; ! if( file_exists("../config.php") ){ $content .= "<font color=green>Success</font>"; $configexists = true; //it exists --- 29,33 ---- ////////////////////////////////////////////////////////////////////////////////////////////// ."<tr><td>Finding config.php</td><td>"; ! if( file_exists("../lib/config.php") ){ $content .= "<font color=green>Success</font>"; $configexists = true; //it exists *************** *** 38,42 **** if( $configexists ) { $content .= "<tr><td>Config found... Checking Write access</td><td>"; ! if( is_writable("../config.php") ) { $content .= "<font color=green>Success</font>"; $configwritable = true; --- 40,44 ---- if( $configexists ) { $content .= "<tr><td>Config found... Checking Write access</td><td>"; ! if( is_writable("../lib/config.php") ) { $content .= "<font color=green>Success</font>"; $configwritable = true; *************** *** 47,51 **** $content .= "</td></tr>"; } else { ! if (!$handle = fopen("../config.php", 'w')) { $content .= "<tr><td>Config not found and cannot be created... Please manually put it in place. (FILEROOT\config.php)</td><td>" ."<form action=\"step3.php\" method=\"post\"><input type=hidden name=dbtype value=".$_REQUEST['dbtype'].">" --- 49,53 ---- $content .= "</td></tr>"; } else { ! if (!$handle = fopen("../lib/config.php", 'w')) { $content .= "<tr><td>Config not found and cannot be created... Please manually put it in place. (FILEROOT\config.php)</td><td>" ."<form action=\"step3.php\" method=\"post\"><input type=hidden name=dbtype value=".$_REQUEST['dbtype'].">" *************** *** 64,68 **** if( !$configwritable ) { $content .= "<tr><td>Config is NOT Writable... Attempting to CHMOD</td><td>"; ! if( chmod("../config.php", 0777) ){ $content .= "<font color=green>Success</font>"; $configwritable = true; --- 66,70 ---- if( !$configwritable ) { $content .= "<tr><td>Config is NOT Writable... Attempting to CHMOD</td><td>"; ! if( chmod("../lib/config.php", 0777) ){ $content .= "<font color=green>Success</font>"; $configwritable = true; *************** *** 77,81 **** $content .= "<tr><td>Config IS Writable... Writing Configuration to file...</td><td>"; //write config data to file ! $handle = fopen("../config.php", "w"); //config file info --- 79,83 ---- $content .= "<tr><td>Config IS Writable... Writing Configuration to file...</td><td>"; //write config data to file ! $handle = fopen("../lib/config.php", "w"); //config file info *************** *** 94,98 **** $configfile .= "define(\"_fileroot_\", \"".ereg_replace("\\\\","/",stripslashes($_REQUEST['fileroot']) )."/\");\n"; $configfile .= "define(\"_installed_\", \"true\");\n"; ! $configfile .= "define(\"_webschoolversion_\", \"0.0.5\");\n"; $configfile .= "?>"; --- 96,100 ---- $configfile .= "define(\"_fileroot_\", \"".ereg_replace("\\\\","/",stripslashes($_REQUEST['fileroot']) )."/\");\n"; $configfile .= "define(\"_installed_\", \"true\");\n"; ! $configfile .= "define(\"_webschoolversion_\", \""._WEBSCHOOLVERSION_."\");\n"; $configfile .= "?>"; *************** *** 128,132 **** $content .= "<tr><td colspan=2>Starting SQL Engine:</td></tr>"; ! include("../config.php"); include("../lib/db.php"); $db = db_connect(_db_server_, _db_user_, _db_pass_, _db_, _db_type_, _db_perfmon_, _db_persistent_, _db_debug_) or die();; --- 130,134 ---- $content .= "<tr><td colspan=2>Starting SQL Engine:</td></tr>"; ! include("../lib/config.php"); include("../lib/db.php"); $db = db_connect(_db_server_, _db_user_, _db_pass_, _db_, _db_type_, _db_perfmon_, _db_persistent_, _db_debug_) or die();; *************** *** 222,226 **** echo "define(\"_fileroot_\", \"".ereg_replace("\\\\","/",stripslashes($_REQUEST['fileroot']) )."/\");\n"; echo "define(\"_installed_\", \"true\");\n"; ! echo "define(\"_webschoolversion_\", \"0.0.5\");\n"; echo "?>"; } --- 224,228 ---- echo "define(\"_fileroot_\", \"".ereg_replace("\\\\","/",stripslashes($_REQUEST['fileroot']) )."/\");\n"; echo "define(\"_installed_\", \"true\");\n"; ! echo "define(\"_webschoolversion_\", \""._WEBSCHOOLVERSION_."\");\n"; echo "?>"; } |
From: Matt M. <pro...@us...> - 2004-11-06 02:41:55
|
Update of /cvsroot/webschool/webschool/theme/templates/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7819/theme/templates/admin Modified Files: sotm.add.tpl sotm.tpl Removed Files: sotm.failed.tpl sotm.success.tpl Log Message: I don't believe the progess i am making tonight!! Moved config file to lib/ folder Fixed versioning Roughly finished sotm! (Except for editing) Index: sotm.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin/sotm.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sotm.tpl 30 Oct 2004 17:49:56 -0000 1.2 --- sotm.tpl 6 Nov 2004 02:41:41 -0000 1.3 *************** *** 1,12 **** {include file=tablehead.tpl tbtitle=$lang.sotm.tbtitle} - - {if $perm.articles == 0 || $denied === false} - {$lang.auth_denied} - {else} - Obosoleting code: <br /> - <a href="{$AMOD}&op=add">{$lang.sotm.op_add}</a> <br /> - <a href="{$AMOD}&op=edit">{$lang.sotm.op_edit}</a> <br /> - New Code: <br /> <center> <form action="{$AMOD}" method="post" > --- 1,4 ---- *************** *** 26,38 **** </select> <input type="Text" name="year" id="year" maxlength="4" size="4"" value="{$smarty.now|date_format:"%Y"}" /> ! <button type="submit">Add</button> </form> <br /><br /> ! <p class="over-title">Current SOTMs</p> {foreach from=$records item=v} <a href="{$AMOD}&op=edit&month={$v|date_format:"%m"}&year={$v|date_format:"%Y"}">{$v|date_format:"%B %Y"}<br /> {/foreach} </center> ! {/if} {include file=tablefoot.tpl} --- 18,30 ---- </select> <input type="Text" name="year" id="year" maxlength="4" size="4"" value="{$smarty.now|date_format:"%Y"}" /> ! <button type="submit">{$lang.sotm.add}</button> </form> <br /><br /> ! <p class="over-title">{$lang.sotm.current_sotms}</p> {foreach from=$records item=v} <a href="{$AMOD}&op=edit&month={$v|date_format:"%m"}&year={$v|date_format:"%Y"}">{$v|date_format:"%B %Y"}<br /> {/foreach} </center> ! {include file=tablefoot.tpl} Index: sotm.add.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin/sotm.add.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sotm.add.tpl 27 Oct 2004 00:56:44 -0000 1.1 --- sotm.add.tpl 6 Nov 2004 02:41:41 -0000 1.2 *************** *** 6,19 **** Month: {$smarty.request.month} <INPUT type="hidden" name="month" value="{$smarty.request.month}"> Year: {$smarty.request.year}<INPUT type="hidden" name="year" value="{$smarty.request.year}"> ! <br><br> ! <b>Freshman SOTM:</b> <br> ! <table><tr><td>Name: </td><td><input type="text" name="fname" /></td></tr> <br> <tr><td>Picture: </td><td><input type="file" name="fpic" /></td></tr></table><br> ! <b>Sophmore SOTM:</b> <br> ! <table><tr><td>Name: </td><td><input type="text" name="sopname" /></td></tr> <br> <tr><td>Picture: </td><td><input type="file" name="soppic" /></td></tr></table><br> ! <b>Junior SOTM:</b> <br> ! <table><tr><td>Name: </td><td><input type="text" name="jname" /></td></tr> <br> <tr><td>Picture: </td><td><input type="file" name="jpic" /></td></tr></table><br> ! <b>Senior SOTM:</b> <br> ! <table><tr><td>Name: </td><td><input type="text" name="sename" /></td></tr> <br> <tr><td>Picture: </td><td><input type="file" name="sepic" /></td></tr></table><br> ! <button type="submit">Add</button> {include file="tablefoot.tpl"} \ No newline at end of file --- 6,19 ---- Month: {$smarty.request.month} <INPUT type="hidden" name="month" value="{$smarty.request.month}"> Year: {$smarty.request.year}<INPUT type="hidden" name="year" value="{$smarty.request.year}"> ! <br /><br /> ! <b>{$lang.sotm.freshman} {$lang.sotm.sotm}:</b> <br /> ! <table><tr><td>{$lang.sotm.name}: </td><td><input type="text" name="fname" /></td></tr> <br> <tr><td>{$lang.sotm.picture}: </td><td><input type="file" name="fpic" /></td></tr></table><br> ! <b>{$lang.sotm.sophmore} {$lang.sotm.sotm}:</b> <br /> ! <table><tr><td>{$lang.sotm.name}: </td><td><input type="text" name="sopname" /></td></tr> <br> <tr><td>{$lang.sotm.picture}: </td><td><input type="file" name="soppic" /></td></tr></table><br> ! <b>{$lang.sotm.junior} {$lang.sotm.sotm}:</b> <br /> ! <table><tr><td>{$lang.sotm.name}: </td><td><input type="text" name="jname" /></td></tr> <br> <tr><td>{$lang.sotm.picture}: </td><td><input type="file" name="jpic" /></td></tr></table><br> ! <b>{$lang.sotm.senior} {$lang.sotm.sotm}:</b> <br /> ! <table><tr><td>{$lang.sotm.name}: </td><td><input type="text" name="sename" /></td></tr> <br> <tr><td>{$lang.sotm.picture}: </td><td><input type="file" name="sepic" /></td></tr></table><br> ! <button type="submit">{$lang.sotm.add}</button> {include file="tablefoot.tpl"} \ No newline at end of file --- sotm.failed.tpl DELETED --- --- sotm.success.tpl DELETED --- |
From: Matt M. <pro...@us...> - 2004-11-06 02:41:55
|
Update of /cvsroot/webschool/webschool/lang/english/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7819/lang/english/admin Modified Files: sotm.lang.php Log Message: I don't believe the progess i am making tonight!! Moved config file to lib/ folder Fixed versioning Roughly finished sotm! (Except for editing) Index: sotm.lang.php =================================================================== RCS file: /cvsroot/webschool/webschool/lang/english/admin/sotm.lang.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sotm.lang.php 24 Sep 2004 21:44:36 -0000 1.1 --- sotm.lang.php 6 Nov 2004 02:41:39 -0000 1.2 *************** *** 2,8 **** $lang['sotm']['tbtitle'] = "Student of the Month"; ! $lang['sotm']['op_edit'] = "Edit"; ! $lang['sotm']['op_add'] = "Add"; ! $lang['sotm'][''] = ""; ?> \ No newline at end of file --- 2,16 ---- $lang['sotm']['tbtitle'] = "Student of the Month"; ! $lang['sotm']['edit'] = "Edit"; ! $lang['sotm']['add'] = "Add"; ! $lang['sotm']['current_sotms'] = "Current SOTMs"; ! $lang['sotm']['sotm'] = "SOTM"; + $lang['sotm']['freshman'] = "Freshman"; + $lang['sotm']['sophmore'] = "Sophmore"; + $lang['sotm']['junior'] = "Junior"; + $lang['sotm']['Senior'] = "Senior"; + + $lang['sotm']['name'] = "Name"; + $lang['sotm']['picture'] = "Picture"; ?> \ No newline at end of file |
From: Matt M. <pro...@us...> - 2004-11-06 02:01:41
|
Update of /cvsroot/webschool/webschool/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32739/lib Added Files: .cvsignore Log Message: cvsignore for config files --- NEW FILE: .cvsignore --- config.* |
From: Matt M. <pro...@us...> - 2004-11-06 01:17:19
|
Update of /cvsroot/webschool/webschool/theme/templates/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/theme/templates/admin Modified Files: news.modify.tpl news.tpl Added Files: index.html Log Message: News is getting there. Added a bunch of index.html Index: news.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin/news.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** news.tpl 30 Oct 2004 17:49:56 -0000 1.3 --- news.tpl 6 Nov 2004 01:16:36 -0000 1.4 *************** *** 12,16 **** <td>{$lang.news.title}</td> {if $perm.news >= 2} ! <td><{$lang.news.owner}</td> {/if} <td>{$lang.news.published}</td> --- 12,16 ---- <td>{$lang.news.title}</td> {if $perm.news >= 2} ! <td>{$lang.news.owner}</td> {/if} <td>{$lang.news.published}</td> Index: news.modify.tpl =================================================================== RCS file: /cvsroot/webschool/webschool/theme/templates/admin/news.modify.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** news.modify.tpl 27 Oct 2004 00:56:44 -0000 1.1 --- news.modify.tpl 6 Nov 2004 01:16:20 -0000 1.2 *************** *** 1,10 **** {include file="tablehead.tpl"} ! <center>Modify an Article</center><hr> <form name="modarticle" action="{$AMOD}&op=modify&id={$modify.id}" method="post"> ! Title: <input type="text" name="title" value="{$modify.prettytitle}"><input type=hidden name=add value=1><br> <textarea id="ta" name="ta" style="width:100%" rows="20" cols="100"> {$modify.content} </textarea> ! <button type="submit">Submit</button> </form> {include file="tablefoot.tpl"} \ No newline at end of file --- 1,10 ---- {include file="tablehead.tpl"} ! <center>Modify an Article</center><hr /> <form name="modarticle" action="{$AMOD}&op=modify&id={$modify.id}" method="post"> ! Title: <input type="text" name="title" value="{$modify.prettytitle}" /><input type="hidden" name="add" value="1" /><br /> <textarea id="ta" name="ta" style="width:100%" rows="20" cols="100"> {$modify.content} </textarea> ! <button type="submit">{$lang.news.submit}</button> </form> {include file="tablefoot.tpl"} \ No newline at end of file --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:17:02
|
Update of /cvsroot/webschool/webschool/lang/english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/lang/english Modified Files: index.html Log Message: News is getting there. Added a bunch of index.html Index: index.html =================================================================== RCS file: /cvsroot/webschool/webschool/lang/english/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.html 27 Aug 2004 13:46:54 -0000 1.1 --- index.html 6 Nov 2004 01:16:20 -0000 1.2 *************** *** 1 **** ! <html> \ No newline at end of file --- 1 ---- ! <html><head></head><body></body></html> \ No newline at end of file |
From: Matt M. <pro...@us...> - 2004-11-06 01:17:02
|
Update of /cvsroot/webschool/webschool/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/admin Modified Files: news.php Added Files: index.html Log Message: News is getting there. Added a bunch of index.html Index: news.php =================================================================== RCS file: /cvsroot/webschool/webschool/admin/news.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** news.php 28 Oct 2004 16:34:34 -0000 1.2 --- news.php 6 Nov 2004 01:16:19 -0000 1.3 *************** *** 36,40 **** while( $row = dbr2() ){ $active['title'] = $row['prettytitle']; ! $active['owner'] = ResolveUserID($row['owner'], true); $active['published'] = date("m/d/y", $row['published']); $active['lastupdated'] = date("m/d/y",$row['lastupdate']); --- 36,40 ---- while( $row = dbr2() ){ $active['title'] = $row['prettytitle']; ! $active['owner'] = ResolveUserID($row['owner'], false); $active['published'] = date("m/d/y", $row['published']); $active['lastupdated'] = date("m/d/y",$row['lastupdate']); *************** *** 51,55 **** while( $row = dbr() ){ $pending['title'] = $row['prettytitle']; ! $pending['owner'] = ResolveUserID($row['owner'], true); $pending['submitted'] = date("m/d/y", $row['submitted']); $pending['lastupdated'] = date("m/d/y",$row['lastupdate']); --- 51,55 ---- while( $row = dbr() ){ $pending['title'] = $row['prettytitle']; ! $pending['owner'] = ResolveUserID($row['owner'], false); $pending['submitted'] = date("m/d/y", $row['submitted']); $pending['lastupdated'] = date("m/d/y",$row['lastupdate']); *************** *** 66,70 **** while( $row = dbr3() ){ $progress['title'] = $row['prettytitle']; ! $progress['owner'] = ResolveUserID($row['owner'], true); $progress['published'] = date("m/d/y", $row['published']); $progress['lastupdated'] = date("m/d/y",$row['lastupdate']); --- 66,70 ---- while( $row = dbr3() ){ $progress['title'] = $row['prettytitle']; ! $progress['owner'] = ResolveUserID($row['owner'], false); $progress['published'] = date("m/d/y", $row['published']); $progress['lastupdated'] = date("m/d/y",$row['lastupdate']); --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:17:02
|
Update of /cvsroot/webschool/webschool/lang/english/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/lang/english/admin Modified Files: news.lang.php Added Files: index.html Log Message: News is getting there. Added a bunch of index.html Index: news.lang.php =================================================================== RCS file: /cvsroot/webschool/webschool/lang/english/admin/news.lang.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** news.lang.php 17 Oct 2004 21:38:03 -0000 1.4 --- news.lang.php 6 Nov 2004 01:16:20 -0000 1.5 *************** *** 1,6 **** <? - $lang['news']['dateformat'] = "m/d/y"; - $lang['news']['activenews'] = "Active News"; $lang['news']['newsprogress'] = "News-In-Progress"; --- 1,4 ---- --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:58
|
Update of /cvsroot/webschool/webschool/theme/templates/mods In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/theme/templates/mods Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:58
|
Update of /cvsroot/webschool/webschool/theme/templates_c In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/theme/templates_c Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:58
|
Update of /cvsroot/webschool/webschool/theme/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/theme/templates Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:56
|
Update of /cvsroot/webschool/webschool/theme/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/theme/images Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:48
|
Update of /cvsroot/webschool/webschool/images/sotm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/images/sotm Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:48
|
Update of /cvsroot/webschool/webschool/mysql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/mysql Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:48
|
Update of /cvsroot/webschool/webschool/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/lib Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |
From: Matt M. <pro...@us...> - 2004-11-06 01:16:48
|
Update of /cvsroot/webschool/webschool/mods In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23966/mods Added Files: index.html Log Message: News is getting there. Added a bunch of index.html --- NEW FILE: index.html --- <html><head></head><body></body></html> |