--- loncom/interface/lonhtmlcommon.pm 2004/10/12 23:26:48 1.93
+++ loncom/interface/lonhtmlcommon.pm 2004/11/11 18:19:41 1.95
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common html routines
#
-# $Id: lonhtmlcommon.pm,v 1.93 2004/10/12 23:26:48 albertel Exp $
+# $Id: lonhtmlcommon.pm,v 1.95 2004/11/11 18:19:41 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -131,7 +131,8 @@ sub select_recent {
">\n";
foreach (sort keys %recent) {
unless ($_=~/^error\:/) {
- $return.="\n';
}
@@ -286,7 +287,7 @@ sub date_setter {
document.$formname.$dname\_day.value = 30;
}
}
-
+
function $dname\_disable() {
document.$formname.$dname\_month.disabled=true;
document.$formname.$dname\_day.disabled=true;
@@ -318,64 +319,62 @@ document.$formname.$dname\_year.value,
}
ENDJS
- $result .= " ';
# Day
- $result .= " \n";
+ my $dayselector = qq{};
# Year
- $result .= " \n";
- $result .= " ";
- if (! $no_hh_mm_ss) {
- # Hours
- $result .= " \n";
- if ($includeempty) { $result.=""; }
- for (my $h = 0;$h<24;$h++) {
- $result .= " \n";
- $result .= " m\n";
- $result .= " s\n";
+ my $yearselector = qq{};
+ #
+ my $hourselector = qq{};
+ if ($includeempty) {
+ $hourselector.=qq{};
+ }
+ for (my $h = 0;$h<24;$h++) {
+ $hourselector .= qq{\n";
+ my $minuteselector = qq{};
+ my $secondselector= qq{};
+ my $cal_link = qq{};
+ #
+ if ($no_hh_mm_ss) {
+ $result .= &mt('[_1] [_2] [_3] [_4]Select Date[_5]',
+ $monthselector,$dayselector,$yearselector,
+ $cal_link,'');
+ } else {
+ $result .= &mt('[_1] [_2] [_3] [_4] [_5]m [_6]s [_7]Select Date[_8]',
+ $monthselector,$dayselector,$yearselector,
+ $hourselector,$minuteselector,$secondselector,
+ $cal_link,'');
}
- $result .= "".
- &mt('Select Date')."\n\n";
+ $result .= "\n\n";
return $result;
}
@@ -887,9 +886,12 @@ sub crumbs {
unless ($path eq $uri) { $path.='/'; }
my $linkpath=$path;
if ($form) {
- $linkpath="javascript:$form.action='$path';$form.submit();";
+ my $escaped_path = &Apache::loncommon::escape_single($path);
+ $linkpath="javascript:$form.action='$escaped_path';$form.submit();";
}
- $output.=''.$_.'/';
+ my $escaped_linkpath = &Apache::loncommon::escape_single($linkpath);
+ my $escaped_target = &Apache::loncommon::escape_single($target);
+ $output.=''.$_.'/';
}
} else {
$output.=$uri;