--- loncom/interface/lonhtmlcommon.pm 2005/04/07 06:56:23 1.104
+++ loncom/interface/lonhtmlcommon.pm 2005/06/18 17:23:25 1.109
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common html routines
#
-# $Id: lonhtmlcommon.pm,v 1.104 2005/04/07 06:56:23 albertel Exp $
+# $Id: lonhtmlcommon.pm,v 1.109 2005/06/18 17:23:25 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -258,7 +258,8 @@ The method used to restrict user input w
##############################################
sub date_setter {
my ($formname,$dname,$currentvalue,$special,$includeempty,$state,
- $no_hh_mm_ss) = @_;
+ $no_hh_mm_ss,$defhour,$defmin,$defsec) = @_;
+ my $wasdefined=1;
if (! defined($state) || $state ne 'disabled') {
$state = '';
}
@@ -268,6 +269,7 @@ sub date_setter {
if (! defined($currentvalue) || $currentvalue eq 'now') {
unless ($includeempty) {
$currentvalue = time;
+ $wasdefined=0;
} else {
$currentvalue = 0;
}
@@ -279,6 +281,11 @@ sub date_setter {
localtime($currentvalue);
$year += 1900;
}
+ unless ($wasdefined) {
+ $sec=($defsec?$defsec:0);
+ $min=($defmin?$defmin:0);
+ $hour=($defhour?$defhour:0);
+ }
my $result = "\n\n";
$result .= <
@@ -506,11 +513,13 @@ parameter setting wizard.
##############################################
sub pjump_javascript_definition {
my $Str = <
//