--- loncom/interface/lonhtmlcommon.pm 2003/12/22 19:30:25 1.34
+++ loncom/interface/lonhtmlcommon.pm 2004/01/15 20:22:47 1.40
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common html routines
#
-# $Id: lonhtmlcommon.pm,v 1.34 2003/12/22 19:30:25 www Exp $
+# $Id: lonhtmlcommon.pm,v 1.40 2004/01/15 20:22:47 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -65,6 +65,33 @@ use strict;
=pod
+=item authorbombs
+
+=cut
+
+##############################################
+##############################################
+
+sub authorbombs {
+ my $url=shift;
+ $url=&Apache::lonnet::declutter($url);
+ my ($udom,$uname)=($url=~/^(\w+)\/(\w+)\//);
+ my %bombs=&Apache::lonmsg::all_url_author_res_msg($uname,$udom);
+ foreach (keys %bombs) {
+ if ($_=~/^$udom\/$uname\//) {
+ return '
'.
+ &Apache::loncommon::help_open_topic('About_Bombs');
+ }
+ }
+ return '';
+}
+
+##############################################
+##############################################
+
+=pod
+
=item textbox
=cut
@@ -91,8 +118,9 @@ sub textbox {
##############################################
##############################################
sub checkbox {
- my ($name) = @_;
- my $Str = '';
+ my ($name,$value) = @_;
+ my $Str = '';
return $Str;
}
@@ -141,14 +169,21 @@ The method used to restrict user input w
##############################################
##############################################
sub date_setter {
- my ($formname,$dname,$currentvalue,$special) = @_;
+ my ($formname,$dname,$currentvalue,$special,$includeempty) = @_;
if (! defined($currentvalue) || $currentvalue eq 'now') {
- $currentvalue = time;
+ unless ($includeempty) {
+ $currentvalue = time;
+ } else {
+ $currentvalue = 0;
+ }
}
# other potentially useful values: wkday,yrday,is_daylight_savings
- my ($sec,$min,$hour,$mday,$month,$year,undef,undef,undef) =
- localtime($currentvalue);
- $year += 1900;
+ my ($sec,$min,$hour,$mday,$month,$year)=('','','','','','');
+ if ($currentvalue) {
+ ($sec,$min,$hour,$mday,$month,$year,undef,undef,undef) =
+ localtime($currentvalue);
+ $year += 1900;
+ }
my $result = "\n\n";
$result .= <
@@ -200,9 +235,10 @@ ENDJS
July August September October November December/;
# Pad @Months with a bogus value to make indexing easier
unshift(@Months,'If you can read this an error occurred');
+ if ($includeempty) { $result.=""; }
for(my $m = 1;$m <=$#Months;$m++) {
$result .= " '."\n";
$Str .= ''.
- 'Previously Enrolled'."\n";
+ &mt('Previously Enrolled').''."\n";
$Str .= ''.
- 'Any Enrollment Status'."\n";
+ &mt('Any Enrollment Status').''."\n";
$Str .= ''."\n";
}
@@ -841,12 +878,17 @@ sub Close_PrgWin {
sub crumbs {
my ($uri,$target,$prefix)=@_;
my $output='
'.$prefix.'/';
- my $path=$prefix.'/';
- foreach (split('/',$uri)) {
- unless ($_) { next; }
- $path.=$_.'/';
- $output.=''.$_.'/';
+ if ($ENV{'user.adv'}) {
+ my $path=$prefix;
+ foreach (split('/',$uri)) {
+ unless ($_) { next; }
+ $path.='/'.$_;
+ $output.=''.$_.'/';
+ }
+ } else {
+ $output.=$uri;
}
+ unless ($uri=~/\/$/) { $output=~s/\/$//; }
return $output.'
';
}