2003-04-27 06:41:53 +00:00
|
|
|
<form method="post" action="config.php" name="form">
|
2002-09-19 12:01:55 +00:00
|
|
|
|
2004-09-12 00:21:21 +00:00
|
|
|
<table cellpadding="9" cellspacing="0" >
|
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">lang:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php choose_from_menu (get_list_of_languages(), "lang", $config->lang, "", "", ""); ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configlang") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">langmenu:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-05-03 06:50:29 +00:00
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "langmenu", $config->langmenu, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configlangmenu") ?>
|
2003-05-03 06:50:29 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">langlist:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="langlist" type="text" size="40" value="<?php p($config->langlist) ?>" alt="langlist" />
|
2003-05-03 06:50:29 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configlanglist") ?>
|
2003-05-03 06:50:29 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">locale:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="locale" type="text" size="10" value="<?php p($config->locale) ?>" alt="locale" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configlocale") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">timezone:</td>
|
2004-02-12 06:08:06 +00:00
|
|
|
<td><?php
|
|
|
|
if (abs($config->timezone) > 13) {
|
|
|
|
$config->timezone = 99;
|
|
|
|
}
|
|
|
|
$timenow = time();
|
2004-08-25 08:52:14 +00:00
|
|
|
$timeformat = get_string('strftimedaytime');
|
2004-02-12 06:08:06 +00:00
|
|
|
|
|
|
|
for ($tz = -26; $tz <= 26; $tz++) {
|
|
|
|
$zone = (float)$tz/2.0;
|
|
|
|
$usertime = $timenow + ($tz * 1800);
|
|
|
|
if ($tz == 0) {
|
2004-08-25 08:52:14 +00:00
|
|
|
$timezones["$zone"] = gmstrftime($timeformat, $usertime)." (GMT)";
|
2004-02-12 06:08:06 +00:00
|
|
|
} else if ($tz < 0) {
|
2004-08-25 08:52:14 +00:00
|
|
|
$timezones["$zone"] = gmstrftime($timeformat, $usertime)." (GMT$zone)";
|
2004-02-12 06:08:06 +00:00
|
|
|
} else {
|
2004-08-25 08:52:14 +00:00
|
|
|
$timezones["$zone"] = gmstrftime($timeformat, $usertime)." (GMT+$zone)";
|
2004-02-12 06:08:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
choose_from_menu ($timezones, "timezone", $config->timezone, get_string("serverlocaltime"), "", "99");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configtimezone") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">country:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td><?php choose_from_menu (get_list_of_countries(), "country", $config->country, get_string("selectacountry"), "") ?>
|
|
|
|
</td>
|
2003-04-27 06:41:53 +00:00
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configcountry") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">smtphosts:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="smtphosts" type="text" size="30" value="<?php p($config->smtphosts)?>" alt="smtphosts" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configsmtphosts") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">smtpuser:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="smtpuser" type="text" size="10" value="<?php p($config->smtpuser)?>" alt="smtpuser" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
2004-09-12 00:21:21 +00:00
|
|
|
<td rowspan="2">
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configsmtpuser") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">smtppass:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="smtppass" type="text" size="10" value="<?php p($config->smtppass)?>" alt="smtppass" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">noreplyaddress:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="noreplyaddress" type="text" size="30" value="<?php p($config->noreplyaddress)?>" alt="noreplyaddress" />
|
2004-06-06 12:49:55 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("confignoreplyaddress") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">gdversion:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2002-10-11 02:31:37 +00:00
|
|
|
$options[0] = get_string("gdnot");
|
2002-09-19 12:01:55 +00:00
|
|
|
$options[1] = get_string("gd1");
|
|
|
|
$options[2] = get_string("gd2");
|
|
|
|
|
|
|
|
$installed = check_gd_version();
|
|
|
|
|
|
|
|
choose_from_menu ($options, "gdversion", $installed, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configgdversion") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">maxeditingtime:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-01-20 06:43:44 +00:00
|
|
|
$options[3600] = get_string("numminutes", "", 60);
|
2002-09-19 12:01:55 +00:00
|
|
|
$options[2700] = get_string("numminutes", "", 45);
|
|
|
|
$options[1800] = get_string("numminutes", "", 30);
|
|
|
|
$options[900] = get_string("numminutes", "", 15);
|
|
|
|
$options[300] = get_string("numminutes", "", 5);
|
2002-09-21 08:44:08 +00:00
|
|
|
$options[60] = get_string("numminutes", "", 1);
|
2002-09-19 12:01:55 +00:00
|
|
|
|
|
|
|
choose_from_menu ($options, "maxeditingtime", $config->maxeditingtime, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configmaxeditingtime") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">longtimenosee:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-01-20 06:43:44 +00:00
|
|
|
$options[1000] = get_string("numdays", "", 1000);
|
2002-09-19 12:01:55 +00:00
|
|
|
$options[365] = get_string("numdays", "", 365);
|
2002-09-21 06:45:26 +00:00
|
|
|
$options[180] = get_string("numdays", "", 180);
|
|
|
|
$options[150] = get_string("numdays", "", 150);
|
|
|
|
$options[120] = get_string("numdays", "", 120);
|
|
|
|
$options[90] = get_string("numdays", "", 90);
|
|
|
|
$options[60] = get_string("numdays", "", 60);
|
|
|
|
$options[30] = get_string("numdays", "", 30);
|
2003-03-16 02:35:03 +00:00
|
|
|
$options[21] = get_string("numdays", "", 21);
|
|
|
|
$options[14] = get_string("numdays", "", 14);
|
2002-09-21 06:45:26 +00:00
|
|
|
$options[7] = get_string("numdays", "", 7);
|
2002-09-19 12:01:55 +00:00
|
|
|
|
|
|
|
choose_from_menu ($options, "longtimenosee", $config->longtimenosee, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configlongtimenosee") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">deleteunconfirmed:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-03-16 10:59:42 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("never");
|
|
|
|
$options[168] = get_string("numdays", "", 7);
|
|
|
|
$options[144] = get_string("numdays", "", 6);
|
|
|
|
$options[120] = get_string("numdays", "", 5);
|
|
|
|
$options[96] = get_string("numdays", "", 4);
|
|
|
|
$options[72] = get_string("numdays", "", 3);
|
|
|
|
$options[48] = get_string("numdays", "", 2);
|
|
|
|
$options[24] = get_string("numdays", "", 1);
|
|
|
|
$options[12] = get_string("numhours", "", 12);
|
|
|
|
$options[6] = get_string("numhours", "", 6);
|
|
|
|
$options[1] = get_string("numhours", "", 1);
|
|
|
|
|
|
|
|
choose_from_menu ($options, "deleteunconfirmed", $config->deleteunconfirmed, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configdeleteunconfirmed") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">loglifetime:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-04-27 06:50:19 +00:00
|
|
|
$options[0] = get_string("neverdeletelogs");
|
2003-04-27 06:41:53 +00:00
|
|
|
$options[1000] = get_string("numdays", "", 1000);
|
|
|
|
$options[365] = get_string("numdays", "", 365);
|
|
|
|
$options[180] = get_string("numdays", "", 180);
|
|
|
|
$options[150] = get_string("numdays", "", 150);
|
|
|
|
$options[120] = get_string("numdays", "", 120);
|
|
|
|
$options[90] = get_string("numdays", "", 90);
|
|
|
|
$options[60] = get_string("numdays", "", 60);
|
|
|
|
$options[30] = get_string("numdays", "", 30);
|
|
|
|
|
|
|
|
choose_from_menu ($options, "loglifetime", $config->loglifetime, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configloglifetime") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-07-25 14:14:56 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">displayloginfailures:</td>
|
2004-07-25 14:14:56 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[''] = get_string('nobody');
|
|
|
|
$options['admin'] = get_string('administrators');
|
|
|
|
$options['teacher'] = get_string('administratorsandteachers');
|
|
|
|
$options['everybody'] = get_string('everybody');
|
|
|
|
choose_from_menu($options, "displayloginfailures",$config->displayloginfailures,"","","");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configdisplayloginfailures") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">notifyloginfailures:</td>
|
2004-07-25 14:14:56 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[''] = get_string('nobody');
|
|
|
|
$options['mainadmin'] = get_string('administrator');
|
|
|
|
$options['alladmins'] = get_string('administratorsall');
|
|
|
|
choose_from_menu($options,"notifyloginfailures",$config->notifyloginfailures,"","","");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string('confignotifyloginfailures') ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">notifyloginthreshold:</td>
|
2004-07-25 14:14:56 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
for ($i=1; $i<=100; $i++) {
|
|
|
|
$options[$i] = "$i";
|
|
|
|
}
|
2004-07-25 14:39:19 +00:00
|
|
|
choose_from_menu($options,"notifyloginthreshold",$config->notifyloginthreshold,"","","");
|
2004-07-25 14:14:56 +00:00
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2004-07-25 14:39:19 +00:00
|
|
|
<?php print_string('confignotifyloginthreshold') ?>
|
2004-07-25 14:14:56 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-30 08:04:56 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">dbsessions:</td>
|
2004-09-30 08:04:56 +00:00
|
|
|
<td>
|
|
|
|
<?php unset($options);
|
|
|
|
$options[0] = get_string('no');
|
|
|
|
$options[1] = get_string('yes');
|
|
|
|
|
|
|
|
choose_from_menu ($options, "dbsessions", $config->dbsessions, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configdbsessions") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">sessiontimeout:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-01-24 04:31:58 +00:00
|
|
|
$options[14400] = get_string("numhours", "", 4);
|
|
|
|
$options[10800] = get_string("numhours", "", 3);
|
|
|
|
$options[7200] = get_string("numhours", "", 2);
|
|
|
|
$options[5400] = get_string("numhours", "", "1.5");
|
|
|
|
$options[3600] = get_string("numminutes", "", 60);
|
|
|
|
$options[2700] = get_string("numminutes", "", 45);
|
|
|
|
$options[1800] = get_string("numminutes", "", 30);
|
|
|
|
$options[900] = get_string("numminutes", "", 15);
|
|
|
|
$options[300] = get_string("numminutes", "", 5);
|
|
|
|
|
|
|
|
choose_from_menu ($options, "sessiontimeout", $config->sessiontimeout, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configsessiontimeout") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">sessioncookie:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="sessioncookie" type="text" size="10" value="<?php p($config->sessioncookie)?>" alt="sessioncookie" />
|
2003-10-16 13:19:10 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configsessioncookie") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">zip:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="zip" type="text" size="30" value="<?php p($config->zip) ?>" alt="zip" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configzip") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">unzip:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="unzip" type="text" size="30" value="<?php p($config->unzip) ?>" alt="unzip" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configunzip") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">slasharguments:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php unset($options);
|
2003-01-20 06:43:44 +00:00
|
|
|
$options[0] = "file.php?file=/pic.jpg";
|
2002-09-19 12:01:55 +00:00
|
|
|
$options[1] = "file.php/pic.jpg";
|
|
|
|
|
|
|
|
choose_from_menu ($options, "slasharguments", $config->slasharguments, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configslasharguments") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">proxyhost:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="proxyhost" type="text" size="30" value="<?php p($config->proxyhost) ?>" alt="proxyhost" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
2004-09-12 00:21:21 +00:00
|
|
|
<td rowspan="2">
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configproxyhost") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
2004-09-12 00:21:21 +00:00
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">proxyport:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="proxyport" type="text" size="5" value="<?php p($config->proxyport) ?>" alt="proxyport" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">debug:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
unset($options);
|
2003-01-20 06:43:44 +00:00
|
|
|
$options[7] = get_string("no");
|
2002-12-30 05:13:43 +00:00
|
|
|
$options[15] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "debug", $config->debug, "", "", "");
|
|
|
|
?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configdebug") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">framename:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-10 09:29:53 +00:00
|
|
|
if (empty($config->framename)) {
|
2003-03-12 07:36:22 +00:00
|
|
|
$config->framename = "_top";
|
|
|
|
}
|
|
|
|
?>
|
2004-10-15 08:30:30 +00:00
|
|
|
<input name="framename" type="text" size="15" value="<?php p($config->framename)?>" alt="framename" />
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2003-05-10 09:29:53 +00:00
|
|
|
<?php print_string("configframename") ?>
|
2003-04-27 06:41:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">secureforms:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-05-15 15:59:52 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "secureforms", $config->secureforms, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configsecureforms") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-08-31 08:41:26 +00:00
|
|
|
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">loginhttps:</td>
|
2004-08-31 08:41:26 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "loginhttps", $config->loginhttps, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configloginhttps") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">teacherassignteachers:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-08-26 15:52:22 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "teacherassignteachers", $config->teacherassignteachers, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configteacherassignteachers") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">allusersaresitestudents:</td>
|
2004-08-30 13:23:09 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "allusersaresitestudents", $config->allusersaresitestudents, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configallusersaresitestudents") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">showsiteparticipantslist:</td>
|
2004-08-31 08:41:26 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("siteteachers");
|
|
|
|
$options[1] = get_string("allteachers");
|
|
|
|
$options[2] = get_string("studentsandteachers");
|
|
|
|
choose_from_menu ($options, "showsiteparticipantslist", $config->showsiteparticipantslist, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configshowsiteparticipantslist") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">allowunenroll:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-10-12 18:03:50 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "allowunenroll", $config->allowunenroll, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configallowunenroll") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-11-29 05:30:36 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">sitepolicy:</td>
|
|
|
|
<td><input type="text" name="sitepolicy" size="30" value="<?php echo $config->sitepolicy ?>" alt="sitepolicy" /></td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configsitepolicy") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">maxbytes:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-10-06 18:02:35 +00:00
|
|
|
$options = get_max_upload_sizes();
|
|
|
|
choose_from_menu ($options, "maxbytes", $config->maxbytes, "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configmaxbytes") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-10-15 08:30:30 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">runclamonupload:</td>
|
Centralised file upload code, integration with clam AV, integration with some modules: assignment, exercise, forum, glossaryt, resource, scorm (more to come soon).
These patches are maintained in an publicly accessible Arch repository, see: http://lists.eduforge.org/cgi-bin/archzoom.cgi/arch-eduforge@catalyst.net.nz--2004-MIRROR/moodle--eduforge--1.3.3
Index of arch patches in this commit:
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Virus scanning on upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
refactor to filter out invalid lines in input to handlevirus
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
modified assignment to use hande_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
bug fix for handle_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Small fix for non thinking brain doing something silly
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
small fix to switch order of items in drop down to allow sensible defaults
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
small changes to strings file
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
taken stuff out of moodlelib to put in upload class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
new upload class -in a changeset by itself just in case - not quite finished
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
upload class integration with assignment module, bug fix, slight tweak
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
small changes to uploadlib, integration with assessment and assignment
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
tweaks for assessment and assignment for uploading
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
integration with exercise module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
integration of virus stuff with forum module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
integration of upload class and glossary module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
virus scanning for imports for glossary
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
relog entries when moving files attached to forum posts
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
resource module integration with virus scanning
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
scorm integration with upload/virus class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
fix for handlevirus.php since upload class changes
Full logs:
Revision: moodle--eduforge--1.3.3--patch-15
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 1 17:28:13 NZST 2004
Standard-date: 2004-09-01 05:28:13 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/sears.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
Summary: final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
Keywords:
Revision: moodle--eduforge--1.3.3--patch-18
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 15:49:54 NZST 2004
Standard-date: 2004-09-02 03:49:54 GMT
Modified-files: admin/config.html lang/en/moodle.php
lib/moodlelib.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Summary: Virus scanning on upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-19
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 17:06:14 NZST 2004
Standard-date: 2004-09-02 05:06:14 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
Summary: made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
Keywords:
Revision: moodle--eduforge--1.3.3--patch-20
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 3 16:06:05 NZST 2004
Standard-date: 2004-09-03 04:06:05 GMT
New-files: admin/.arch-ids/handlevirus.php.id
admin/handlevirus.php
Modified-files: lang/en/moodle.php lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
Summary: handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
Keywords:
Revision: moodle--eduforge--1.3.3--patch-21
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 11:37:31 NZST 2004
Standard-date: 2004-09-05 23:37:31 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
Summary: refactor to filter out invalid lines in input to handlevirus
Keywords:
Revision: moodle--eduforge--1.3.3--patch-22
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 13:07:48 NZST 2004
Standard-date: 2004-09-06 01:07:48 GMT
Modified-files: mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
Summary: modified assignment to use hande_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-25
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:32:11 NZST 2004
Standard-date: 2004-09-06 04:32:11 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
Summary: bug fix for handle_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-26
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:51:50 NZST 2004
Standard-date: 2004-09-06 04:51:50 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Summary: Small fix for non thinking brain doing something silly
Keywords:
Revision: moodle--eduforge--1.3.3--patch-35
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:09:53 NZST 2004
Standard-date: 2004-09-09 22:09:53 GMT
Modified-files: admin/config.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
Summary: small fix to switch order of items in drop down to allow sensible defaults
Keywords:
Revision: moodle--eduforge--1.3.3--patch-36
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:11:29 NZST 2004
Standard-date: 2004-09-09 22:11:29 GMT
Modified-files: lang/en/moodle.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
Summary: small changes to strings file
Keywords:
Revision: moodle--eduforge--1.3.3--patch-38
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:17:24 NZST 2004
Standard-date: 2004-09-09 22:17:24 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
Summary: taken stuff out of moodlelib to put in upload class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-39
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:21:21 NZST 2004
Standard-date: 2004-09-09 22:21:21 GMT
New-files: lib/.arch-ids/uploadlib.php.id lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
Summary: new upload class -in a changeset by itself just in case - not quite finished
Keywords:
Revision: moodle--eduforge--1.3.3--patch-40
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 11:58:24 NZST 2004
Standard-date: 2004-09-09 23:58:24 GMT
Modified-files: lang/en/moodle.php lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
Summary: tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
Keywords:
Revision: moodle--eduforge--1.3.3--patch-41
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 12:38:02 NZST 2004
Standard-date: 2004-09-10 00:38:02 GMT
Modified-files: lib/uploadlib.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
Summary: upload class integration with assignment module, bug fix, slight tweak
Keywords:
Revision: moodle--eduforge--1.3.3--patch-42
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 15:30:20 NZST 2004
Standard-date: 2004-09-10 03:30:20 GMT
Modified-files: lib/uploadlib.php mod/assessment/upload.php
mod/assessment/view.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
Summary: small changes to uploadlib, integration with assessment and assignment
Keywords:
Revision: moodle--eduforge--1.3.3--patch-44
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 16:54:40 NZST 2004
Standard-date: 2004-09-10 04:54:40 GMT
Modified-files: mod/assessment/lib.php
mod/assignment/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
Summary: tweaks for assessment and assignment for uploading
Keywords:
Revision: moodle--eduforge--1.3.3--patch-48
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 09:57:03 NZST 2004
Standard-date: 2004-09-12 21:57:03 GMT
Modified-files: lang/en/moodle.php
mod/exercise/locallib.php mod/exercise/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
Summary: integration with exercise module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-49
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 11:35:46 NZST 2004
Standard-date: 2004-09-12 23:35:46 GMT
Modified-files: mod/forum/lib.php mod/forum/post.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
Summary: integration of virus stuff with forum module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-50
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 14:00:29 NZST 2004
Standard-date: 2004-09-13 02:00:29 GMT
Modified-files: lang/en/glossary.php mod/glossary/edit.html
mod/glossary/edit.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
Summary: integration of upload class and glossary module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-51
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:13:02 NZST 2004
Standard-date: 2004-09-13 03:13:02 GMT
Modified-files: lib/uploadlib.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
Summary: just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-52
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:26:56 NZST 2004
Standard-date: 2004-09-13 03:26:56 GMT
Modified-files: mod/glossary/import.html
mod/glossary/import.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
Summary: virus scanning for imports for glossary
Keywords:
Revision: moodle--eduforge--1.3.3--patch-53
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:02:22 NZST 2004
Standard-date: 2004-09-13 04:02:22 GMT
Modified-files: mod/forum/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
Summary: relog entries when moving files attached to forum posts
Keywords:
Revision: moodle--eduforge--1.3.3--patch-54
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:58:37 NZST 2004
Standard-date: 2004-09-13 04:58:37 GMT
Modified-files: mod/resource/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
Summary: resource module integration with virus scanning
Keywords:
Revision: moodle--eduforge--1.3.3--patch-55
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Tue Sep 14 16:15:47 NZST 2004
Standard-date: 2004-09-14 04:15:47 GMT
Modified-files: mod/scorm/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
Summary: scorm integration with upload/virus class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-56
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 15 10:33:23 NZST 2004
Standard-date: 2004-09-14 22:33:23 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
Summary: fix for handlevirus.php since upload class changes
Keywords:
2004-09-14 22:58:13 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu($options,"runclamonupload",$config->runclamonupload,"","","");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td><?php print_string("configrunclamonupload") ?></td>
|
|
|
|
</tr>
|
2004-10-15 08:30:30 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">pathtoclam:</td>
|
|
|
|
<td><input type="text" name="pathtoclam" size="30" value="<?php echo $config->pathtoclam ?>" alt="pathtoclam" /></td>
|
Centralised file upload code, integration with clam AV, integration with some modules: assignment, exercise, forum, glossaryt, resource, scorm (more to come soon).
These patches are maintained in an publicly accessible Arch repository, see: http://lists.eduforge.org/cgi-bin/archzoom.cgi/arch-eduforge@catalyst.net.nz--2004-MIRROR/moodle--eduforge--1.3.3
Index of arch patches in this commit:
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Virus scanning on upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
refactor to filter out invalid lines in input to handlevirus
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
modified assignment to use hande_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
bug fix for handle_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Small fix for non thinking brain doing something silly
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
small fix to switch order of items in drop down to allow sensible defaults
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
small changes to strings file
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
taken stuff out of moodlelib to put in upload class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
new upload class -in a changeset by itself just in case - not quite finished
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
upload class integration with assignment module, bug fix, slight tweak
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
small changes to uploadlib, integration with assessment and assignment
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
tweaks for assessment and assignment for uploading
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
integration with exercise module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
integration of virus stuff with forum module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
integration of upload class and glossary module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
virus scanning for imports for glossary
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
relog entries when moving files attached to forum posts
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
resource module integration with virus scanning
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
scorm integration with upload/virus class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
fix for handlevirus.php since upload class changes
Full logs:
Revision: moodle--eduforge--1.3.3--patch-15
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 1 17:28:13 NZST 2004
Standard-date: 2004-09-01 05:28:13 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/sears.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
Summary: final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
Keywords:
Revision: moodle--eduforge--1.3.3--patch-18
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 15:49:54 NZST 2004
Standard-date: 2004-09-02 03:49:54 GMT
Modified-files: admin/config.html lang/en/moodle.php
lib/moodlelib.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Summary: Virus scanning on upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-19
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 17:06:14 NZST 2004
Standard-date: 2004-09-02 05:06:14 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
Summary: made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
Keywords:
Revision: moodle--eduforge--1.3.3--patch-20
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 3 16:06:05 NZST 2004
Standard-date: 2004-09-03 04:06:05 GMT
New-files: admin/.arch-ids/handlevirus.php.id
admin/handlevirus.php
Modified-files: lang/en/moodle.php lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
Summary: handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
Keywords:
Revision: moodle--eduforge--1.3.3--patch-21
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 11:37:31 NZST 2004
Standard-date: 2004-09-05 23:37:31 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
Summary: refactor to filter out invalid lines in input to handlevirus
Keywords:
Revision: moodle--eduforge--1.3.3--patch-22
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 13:07:48 NZST 2004
Standard-date: 2004-09-06 01:07:48 GMT
Modified-files: mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
Summary: modified assignment to use hande_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-25
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:32:11 NZST 2004
Standard-date: 2004-09-06 04:32:11 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
Summary: bug fix for handle_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-26
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:51:50 NZST 2004
Standard-date: 2004-09-06 04:51:50 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Summary: Small fix for non thinking brain doing something silly
Keywords:
Revision: moodle--eduforge--1.3.3--patch-35
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:09:53 NZST 2004
Standard-date: 2004-09-09 22:09:53 GMT
Modified-files: admin/config.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
Summary: small fix to switch order of items in drop down to allow sensible defaults
Keywords:
Revision: moodle--eduforge--1.3.3--patch-36
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:11:29 NZST 2004
Standard-date: 2004-09-09 22:11:29 GMT
Modified-files: lang/en/moodle.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
Summary: small changes to strings file
Keywords:
Revision: moodle--eduforge--1.3.3--patch-38
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:17:24 NZST 2004
Standard-date: 2004-09-09 22:17:24 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
Summary: taken stuff out of moodlelib to put in upload class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-39
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:21:21 NZST 2004
Standard-date: 2004-09-09 22:21:21 GMT
New-files: lib/.arch-ids/uploadlib.php.id lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
Summary: new upload class -in a changeset by itself just in case - not quite finished
Keywords:
Revision: moodle--eduforge--1.3.3--patch-40
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 11:58:24 NZST 2004
Standard-date: 2004-09-09 23:58:24 GMT
Modified-files: lang/en/moodle.php lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
Summary: tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
Keywords:
Revision: moodle--eduforge--1.3.3--patch-41
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 12:38:02 NZST 2004
Standard-date: 2004-09-10 00:38:02 GMT
Modified-files: lib/uploadlib.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
Summary: upload class integration with assignment module, bug fix, slight tweak
Keywords:
Revision: moodle--eduforge--1.3.3--patch-42
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 15:30:20 NZST 2004
Standard-date: 2004-09-10 03:30:20 GMT
Modified-files: lib/uploadlib.php mod/assessment/upload.php
mod/assessment/view.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
Summary: small changes to uploadlib, integration with assessment and assignment
Keywords:
Revision: moodle--eduforge--1.3.3--patch-44
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 16:54:40 NZST 2004
Standard-date: 2004-09-10 04:54:40 GMT
Modified-files: mod/assessment/lib.php
mod/assignment/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
Summary: tweaks for assessment and assignment for uploading
Keywords:
Revision: moodle--eduforge--1.3.3--patch-48
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 09:57:03 NZST 2004
Standard-date: 2004-09-12 21:57:03 GMT
Modified-files: lang/en/moodle.php
mod/exercise/locallib.php mod/exercise/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
Summary: integration with exercise module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-49
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 11:35:46 NZST 2004
Standard-date: 2004-09-12 23:35:46 GMT
Modified-files: mod/forum/lib.php mod/forum/post.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
Summary: integration of virus stuff with forum module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-50
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 14:00:29 NZST 2004
Standard-date: 2004-09-13 02:00:29 GMT
Modified-files: lang/en/glossary.php mod/glossary/edit.html
mod/glossary/edit.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
Summary: integration of upload class and glossary module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-51
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:13:02 NZST 2004
Standard-date: 2004-09-13 03:13:02 GMT
Modified-files: lib/uploadlib.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
Summary: just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-52
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:26:56 NZST 2004
Standard-date: 2004-09-13 03:26:56 GMT
Modified-files: mod/glossary/import.html
mod/glossary/import.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
Summary: virus scanning for imports for glossary
Keywords:
Revision: moodle--eduforge--1.3.3--patch-53
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:02:22 NZST 2004
Standard-date: 2004-09-13 04:02:22 GMT
Modified-files: mod/forum/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
Summary: relog entries when moving files attached to forum posts
Keywords:
Revision: moodle--eduforge--1.3.3--patch-54
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:58:37 NZST 2004
Standard-date: 2004-09-13 04:58:37 GMT
Modified-files: mod/resource/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
Summary: resource module integration with virus scanning
Keywords:
Revision: moodle--eduforge--1.3.3--patch-55
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Tue Sep 14 16:15:47 NZST 2004
Standard-date: 2004-09-14 04:15:47 GMT
Modified-files: mod/scorm/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
Summary: scorm integration with upload/virus class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-56
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 15 10:33:23 NZST 2004
Standard-date: 2004-09-14 22:33:23 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
Summary: fix for handlevirus.php since upload class changes
Keywords:
2004-09-14 22:58:13 +00:00
|
|
|
<td><?php print_string("configpathtoclam") ?></td>
|
|
|
|
</tr>
|
2004-10-15 08:30:30 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">quarantinedir:</td>
|
|
|
|
<td><input type="text" name="quarantinedir" size="30" value="<?php echo $config->quarantinedir ?>" alt="quarantinedir" /></td>
|
Centralised file upload code, integration with clam AV, integration with some modules: assignment, exercise, forum, glossaryt, resource, scorm (more to come soon).
These patches are maintained in an publicly accessible Arch repository, see: http://lists.eduforge.org/cgi-bin/archzoom.cgi/arch-eduforge@catalyst.net.nz--2004-MIRROR/moodle--eduforge--1.3.3
Index of arch patches in this commit:
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Virus scanning on upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
refactor to filter out invalid lines in input to handlevirus
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
modified assignment to use hande_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
bug fix for handle_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Small fix for non thinking brain doing something silly
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
small fix to switch order of items in drop down to allow sensible defaults
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
small changes to strings file
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
taken stuff out of moodlelib to put in upload class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
new upload class -in a changeset by itself just in case - not quite finished
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
upload class integration with assignment module, bug fix, slight tweak
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
small changes to uploadlib, integration with assessment and assignment
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
tweaks for assessment and assignment for uploading
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
integration with exercise module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
integration of virus stuff with forum module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
integration of upload class and glossary module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
virus scanning for imports for glossary
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
relog entries when moving files attached to forum posts
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
resource module integration with virus scanning
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
scorm integration with upload/virus class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
fix for handlevirus.php since upload class changes
Full logs:
Revision: moodle--eduforge--1.3.3--patch-15
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 1 17:28:13 NZST 2004
Standard-date: 2004-09-01 05:28:13 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/sears.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
Summary: final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
Keywords:
Revision: moodle--eduforge--1.3.3--patch-18
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 15:49:54 NZST 2004
Standard-date: 2004-09-02 03:49:54 GMT
Modified-files: admin/config.html lang/en/moodle.php
lib/moodlelib.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Summary: Virus scanning on upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-19
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 17:06:14 NZST 2004
Standard-date: 2004-09-02 05:06:14 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
Summary: made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
Keywords:
Revision: moodle--eduforge--1.3.3--patch-20
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 3 16:06:05 NZST 2004
Standard-date: 2004-09-03 04:06:05 GMT
New-files: admin/.arch-ids/handlevirus.php.id
admin/handlevirus.php
Modified-files: lang/en/moodle.php lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
Summary: handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
Keywords:
Revision: moodle--eduforge--1.3.3--patch-21
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 11:37:31 NZST 2004
Standard-date: 2004-09-05 23:37:31 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
Summary: refactor to filter out invalid lines in input to handlevirus
Keywords:
Revision: moodle--eduforge--1.3.3--patch-22
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 13:07:48 NZST 2004
Standard-date: 2004-09-06 01:07:48 GMT
Modified-files: mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
Summary: modified assignment to use hande_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-25
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:32:11 NZST 2004
Standard-date: 2004-09-06 04:32:11 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
Summary: bug fix for handle_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-26
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:51:50 NZST 2004
Standard-date: 2004-09-06 04:51:50 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Summary: Small fix for non thinking brain doing something silly
Keywords:
Revision: moodle--eduforge--1.3.3--patch-35
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:09:53 NZST 2004
Standard-date: 2004-09-09 22:09:53 GMT
Modified-files: admin/config.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
Summary: small fix to switch order of items in drop down to allow sensible defaults
Keywords:
Revision: moodle--eduforge--1.3.3--patch-36
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:11:29 NZST 2004
Standard-date: 2004-09-09 22:11:29 GMT
Modified-files: lang/en/moodle.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
Summary: small changes to strings file
Keywords:
Revision: moodle--eduforge--1.3.3--patch-38
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:17:24 NZST 2004
Standard-date: 2004-09-09 22:17:24 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
Summary: taken stuff out of moodlelib to put in upload class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-39
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:21:21 NZST 2004
Standard-date: 2004-09-09 22:21:21 GMT
New-files: lib/.arch-ids/uploadlib.php.id lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
Summary: new upload class -in a changeset by itself just in case - not quite finished
Keywords:
Revision: moodle--eduforge--1.3.3--patch-40
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 11:58:24 NZST 2004
Standard-date: 2004-09-09 23:58:24 GMT
Modified-files: lang/en/moodle.php lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
Summary: tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
Keywords:
Revision: moodle--eduforge--1.3.3--patch-41
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 12:38:02 NZST 2004
Standard-date: 2004-09-10 00:38:02 GMT
Modified-files: lib/uploadlib.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
Summary: upload class integration with assignment module, bug fix, slight tweak
Keywords:
Revision: moodle--eduforge--1.3.3--patch-42
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 15:30:20 NZST 2004
Standard-date: 2004-09-10 03:30:20 GMT
Modified-files: lib/uploadlib.php mod/assessment/upload.php
mod/assessment/view.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
Summary: small changes to uploadlib, integration with assessment and assignment
Keywords:
Revision: moodle--eduforge--1.3.3--patch-44
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 16:54:40 NZST 2004
Standard-date: 2004-09-10 04:54:40 GMT
Modified-files: mod/assessment/lib.php
mod/assignment/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
Summary: tweaks for assessment and assignment for uploading
Keywords:
Revision: moodle--eduforge--1.3.3--patch-48
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 09:57:03 NZST 2004
Standard-date: 2004-09-12 21:57:03 GMT
Modified-files: lang/en/moodle.php
mod/exercise/locallib.php mod/exercise/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
Summary: integration with exercise module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-49
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 11:35:46 NZST 2004
Standard-date: 2004-09-12 23:35:46 GMT
Modified-files: mod/forum/lib.php mod/forum/post.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
Summary: integration of virus stuff with forum module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-50
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 14:00:29 NZST 2004
Standard-date: 2004-09-13 02:00:29 GMT
Modified-files: lang/en/glossary.php mod/glossary/edit.html
mod/glossary/edit.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
Summary: integration of upload class and glossary module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-51
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:13:02 NZST 2004
Standard-date: 2004-09-13 03:13:02 GMT
Modified-files: lib/uploadlib.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
Summary: just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-52
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:26:56 NZST 2004
Standard-date: 2004-09-13 03:26:56 GMT
Modified-files: mod/glossary/import.html
mod/glossary/import.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
Summary: virus scanning for imports for glossary
Keywords:
Revision: moodle--eduforge--1.3.3--patch-53
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:02:22 NZST 2004
Standard-date: 2004-09-13 04:02:22 GMT
Modified-files: mod/forum/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
Summary: relog entries when moving files attached to forum posts
Keywords:
Revision: moodle--eduforge--1.3.3--patch-54
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:58:37 NZST 2004
Standard-date: 2004-09-13 04:58:37 GMT
Modified-files: mod/resource/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
Summary: resource module integration with virus scanning
Keywords:
Revision: moodle--eduforge--1.3.3--patch-55
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Tue Sep 14 16:15:47 NZST 2004
Standard-date: 2004-09-14 04:15:47 GMT
Modified-files: mod/scorm/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
Summary: scorm integration with upload/virus class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-56
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 15 10:33:23 NZST 2004
Standard-date: 2004-09-14 22:33:23 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
Summary: fix for handlevirus.php since upload class changes
Keywords:
2004-09-14 22:58:13 +00:00
|
|
|
<td><?php print_string("configquarantinedir") ?></td>
|
|
|
|
</tr>
|
2004-10-15 08:30:30 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">clamfailureonupload</td>
|
Centralised file upload code, integration with clam AV, integration with some modules: assignment, exercise, forum, glossaryt, resource, scorm (more to come soon).
These patches are maintained in an publicly accessible Arch repository, see: http://lists.eduforge.org/cgi-bin/archzoom.cgi/arch-eduforge@catalyst.net.nz--2004-MIRROR/moodle--eduforge--1.3.3
Index of arch patches in this commit:
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Virus scanning on upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
refactor to filter out invalid lines in input to handlevirus
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
modified assignment to use hande_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
bug fix for handle_file_upload
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Small fix for non thinking brain doing something silly
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
small fix to switch order of items in drop down to allow sensible defaults
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
small changes to strings file
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
taken stuff out of moodlelib to put in upload class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
new upload class -in a changeset by itself just in case - not quite finished
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
upload class integration with assignment module, bug fix, slight tweak
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
small changes to uploadlib, integration with assessment and assignment
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
tweaks for assessment and assignment for uploading
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
integration with exercise module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
integration of virus stuff with forum module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
integration of upload class and glossary module
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
virus scanning for imports for glossary
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
relog entries when moving files attached to forum posts
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
resource module integration with virus scanning
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
scorm integration with upload/virus class
arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
fix for handlevirus.php since upload class changes
Full logs:
Revision: moodle--eduforge--1.3.3--patch-15
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 1 17:28:13 NZST 2004
Standard-date: 2004-09-01 05:28:13 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/sears.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-15
Summary: final touches to sears stuff until testing can begin, beginning of magical uploadey wrappery function goodness
Keywords:
Revision: moodle--eduforge--1.3.3--patch-18
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 15:49:54 NZST 2004
Standard-date: 2004-09-02 03:49:54 GMT
Modified-files: admin/config.html lang/en/moodle.php
lib/moodlelib.php mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-18
Summary: Virus scanning on upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-19
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Thu Sep 2 17:06:14 NZST 2004
Standard-date: 2004-09-02 05:06:14 GMT
Modified-files: lang/en/moodle.php lib/moodlelib.php
mod/assessment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-19
Summary: made emacs use spaces instead of tabs and fixed lib/moodlelib.php where it was bad in the new functions; few wording changes, added in support for clamdscan
Keywords:
Revision: moodle--eduforge--1.3.3--patch-20
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 3 16:06:05 NZST 2004
Standard-date: 2004-09-03 04:06:05 GMT
New-files: admin/.arch-ids/handlevirus.php.id
admin/handlevirus.php
Modified-files: lang/en/moodle.php lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-20
Summary: handlevirus.php = new script to handle output of clamscan (designed for cron clamscan), changes to strings for emailing out virus notifications, changes to moodlelib - slightly different notice reporting in handle_infected_file and new function for replacing file with message
Keywords:
Revision: moodle--eduforge--1.3.3--patch-21
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 11:37:31 NZST 2004
Standard-date: 2004-09-05 23:37:31 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-21
Summary: refactor to filter out invalid lines in input to handlevirus
Keywords:
Revision: moodle--eduforge--1.3.3--patch-22
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 13:07:48 NZST 2004
Standard-date: 2004-09-06 01:07:48 GMT
Modified-files: mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-22
Summary: modified assignment to use hande_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-25
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:32:11 NZST 2004
Standard-date: 2004-09-06 04:32:11 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-25
Summary: bug fix for handle_file_upload
Keywords:
Revision: moodle--eduforge--1.3.3--patch-26
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 6 16:51:50 NZST 2004
Standard-date: 2004-09-06 04:51:50 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-26
Summary: Small fix for non thinking brain doing something silly
Keywords:
Revision: moodle--eduforge--1.3.3--patch-35
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:09:53 NZST 2004
Standard-date: 2004-09-09 22:09:53 GMT
Modified-files: admin/config.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-35
Summary: small fix to switch order of items in drop down to allow sensible defaults
Keywords:
Revision: moodle--eduforge--1.3.3--patch-36
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:11:29 NZST 2004
Standard-date: 2004-09-09 22:11:29 GMT
Modified-files: lang/en/moodle.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-36
Summary: small changes to strings file
Keywords:
Revision: moodle--eduforge--1.3.3--patch-38
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:17:24 NZST 2004
Standard-date: 2004-09-09 22:17:24 GMT
Modified-files: lib/moodlelib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-38
Summary: taken stuff out of moodlelib to put in upload class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-39
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 10:21:21 NZST 2004
Standard-date: 2004-09-09 22:21:21 GMT
New-files: lib/.arch-ids/uploadlib.php.id lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-39
Summary: new upload class -in a changeset by itself just in case - not quite finished
Keywords:
Revision: moodle--eduforge--1.3.3--patch-40
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 11:58:24 NZST 2004
Standard-date: 2004-09-09 23:58:24 GMT
Modified-files: lang/en/moodle.php lib/uploadlib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-40
Summary: tweaks to upload class - clam_scan_file can now take a path as an argument, not just an entry from _FILES, there is better handling of failure and notification, more allowance for module writers to keep control in general. Also slightly nicer strings entries for a few things
Keywords:
Revision: moodle--eduforge--1.3.3--patch-41
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 12:38:02 NZST 2004
Standard-date: 2004-09-10 00:38:02 GMT
Modified-files: lib/uploadlib.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-41
Summary: upload class integration with assignment module, bug fix, slight tweak
Keywords:
Revision: moodle--eduforge--1.3.3--patch-42
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 15:30:20 NZST 2004
Standard-date: 2004-09-10 03:30:20 GMT
Modified-files: lib/uploadlib.php mod/assessment/upload.php
mod/assessment/view.php mod/assignment/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-42
Summary: small changes to uploadlib, integration with assessment and assignment
Keywords:
Revision: moodle--eduforge--1.3.3--patch-44
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Fri Sep 10 16:54:40 NZST 2004
Standard-date: 2004-09-10 04:54:40 GMT
Modified-files: mod/assessment/lib.php
mod/assignment/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-44
Summary: tweaks for assessment and assignment for uploading
Keywords:
Revision: moodle--eduforge--1.3.3--patch-48
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 09:57:03 NZST 2004
Standard-date: 2004-09-12 21:57:03 GMT
Modified-files: lang/en/moodle.php
mod/exercise/locallib.php mod/exercise/upload.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-48
Summary: integration with exercise module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-49
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 11:35:46 NZST 2004
Standard-date: 2004-09-12 23:35:46 GMT
Modified-files: mod/forum/lib.php mod/forum/post.html
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-49
Summary: integration of virus stuff with forum module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-50
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 14:00:29 NZST 2004
Standard-date: 2004-09-13 02:00:29 GMT
Modified-files: lang/en/glossary.php mod/glossary/edit.html
mod/glossary/edit.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-50
Summary: integration of upload class and glossary module
Keywords:
Revision: moodle--eduforge--1.3.3--patch-51
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:13:02 NZST 2004
Standard-date: 2004-09-13 03:13:02 GMT
Modified-files: lib/uploadlib.php mod/glossary/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-51
Summary: just in case glossary_move_attachments is ever used, we change the log entries before we move the files. also moved clam_log_upload out of the class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-52
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 15:26:56 NZST 2004
Standard-date: 2004-09-13 03:26:56 GMT
Modified-files: mod/glossary/import.html
mod/glossary/import.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-52
Summary: virus scanning for imports for glossary
Keywords:
Revision: moodle--eduforge--1.3.3--patch-53
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:02:22 NZST 2004
Standard-date: 2004-09-13 04:02:22 GMT
Modified-files: mod/forum/lib.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-53
Summary: relog entries when moving files attached to forum posts
Keywords:
Revision: moodle--eduforge--1.3.3--patch-54
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Mon Sep 13 16:58:37 NZST 2004
Standard-date: 2004-09-13 04:58:37 GMT
Modified-files: mod/resource/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-54
Summary: resource module integration with virus scanning
Keywords:
Revision: moodle--eduforge--1.3.3--patch-55
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Tue Sep 14 16:15:47 NZST 2004
Standard-date: 2004-09-14 04:15:47 GMT
Modified-files: mod/scorm/coursefiles.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-55
Summary: scorm integration with upload/virus class
Keywords:
Revision: moodle--eduforge--1.3.3--patch-56
Archive: arch-eduforge@catalyst.net.nz--2004
Creator: Penny Leach <penny@catalyst.net.nz>
Date: Wed Sep 15 10:33:23 NZST 2004
Standard-date: 2004-09-14 22:33:23 GMT
Modified-files: admin/handlevirus.php
New-patches: arch-eduforge@catalyst.net.nz--2004/moodle--eduforge--1.3.3--patch-56
Summary: fix for handlevirus.php since upload class changes
Keywords:
2004-09-14 22:58:13 +00:00
|
|
|
<td><?php
|
|
|
|
unset($options);
|
|
|
|
$options['donothing'] = get_string('configclamdonothing');
|
|
|
|
$options['actlikevirus'] = get_string('configclamactlikevirus');
|
|
|
|
|
|
|
|
choose_from_menu($options,"clamfailureonupload",$config->clamfailureonupload,"","","");
|
|
|
|
?></td>
|
|
|
|
<td><?php print_string("configclamfailureonupload"); ?></td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">fullnamedisplay:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2003-11-30 14:02:01 +00:00
|
|
|
unset($options);
|
|
|
|
$options['language'] = get_string('language');
|
|
|
|
$options['firstname lastname'] = get_string('firstname') . ' + ' . get_string('lastname');
|
|
|
|
$options['lastname firstname'] = get_string('lastname') . ' + ' . get_string('firstname');
|
|
|
|
$options['firstname'] = get_string('firstname');
|
|
|
|
|
|
|
|
choose_from_menu ($options, "fullnamedisplay", $config->fullnamedisplay, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configfullnamedisplay") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">extendedusernamechars:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-05-24 07:39:54 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "extendedusernamechars", $config->extendedusernamechars, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configextendedusernamechars") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">autologinguests:</td>
|
2004-06-30 12:09:29 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string('no');
|
|
|
|
$options[1] = get_string('yes');
|
|
|
|
|
|
|
|
choose_from_menu ($options, "autologinguests", $config->autologinguests, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configautologinguests") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">forcelogin:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-01-14 08:27:18 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string('no');
|
|
|
|
$options[1] = get_string('yes');
|
|
|
|
|
|
|
|
choose_from_menu ($options, "forcelogin", $config->forcelogin, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configforcelogin") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">forceloginforprofiles:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-05-24 07:39:54 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string('no');
|
|
|
|
$options[1] = get_string('yes');
|
|
|
|
|
|
|
|
choose_from_menu ($options, "forceloginforprofiles", $config->forceloginforprofiles, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configforceloginforprofiles") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">opentogoogle:</td>
|
2004-06-06 12:49:55 +00:00
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-02-10 05:05:28 +00:00
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "opentogoogle", $config->opentogoogle, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configopentogoogle") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2002-09-19 12:01:55 +00:00
|
|
|
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">enablerssfeeds:</td>
|
2004-05-02 23:08:19 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "enablerssfeeds", $config->enablerssfeeds, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<?php
|
2004-05-20 16:05:29 +00:00
|
|
|
print_string("configenablerssfeeds");
|
|
|
|
//Check for required functions...
|
|
|
|
if(!function_exists('utf8_encode')) {
|
|
|
|
echo "<font color=\"red\"> You need to add XML support to your PHP installation.</font>";
|
2004-06-01 07:51:47 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2004-09-12 00:21:21 +00:00
|
|
|
<tr valign="top">
|
2004-10-15 08:30:30 +00:00
|
|
|
<td align="right">digestmailtime:</td>
|
2004-06-01 07:51:47 +00:00
|
|
|
<td>
|
|
|
|
<?php
|
2004-06-06 12:49:55 +00:00
|
|
|
$hours = array();
|
|
|
|
for ($i=0; $i<=23; $i++) {
|
|
|
|
$hours[$i] = sprintf("%02d",$i);
|
|
|
|
}
|
2004-06-01 07:51:47 +00:00
|
|
|
choose_from_menu($hours, 'digestmailtime', $config->digestmailtime, "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
print_string('configdigestmailtime');
|
2004-05-20 16:05:29 +00:00
|
|
|
?>
|
2004-05-02 23:08:19 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2005-01-31 07:11:42 +00:00
|
|
|
<tr valign="top">
|
|
|
|
<td align="right">messaging:</td>
|
|
|
|
<td>
|
|
|
|
<?php
|
|
|
|
unset($options);
|
|
|
|
$options[0] = get_string("no");
|
|
|
|
$options[1] = get_string("yes");
|
|
|
|
|
|
|
|
choose_from_menu ($options, "messaging", $config->messaging, "", "", "");
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php print_string("configmessaging") ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2003-04-27 06:41:53 +00:00
|
|
|
<tr>
|
2004-09-12 00:21:21 +00:00
|
|
|
<td colspan="3" align="center">
|
2004-10-04 13:50:37 +00:00
|
|
|
<input type="hidden" name="sesskey" value="<?php p($sesskey) ?>" />
|
|
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" /></td>
|
2003-04-27 06:41:53 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2002-09-19 12:01:55 +00:00
|
|
|
|
2003-04-27 06:41:53 +00:00
|
|
|
</form>
|