--- loncom/interface/loncommon.pm 2003/11/10 01:58:29 1.146
+++ loncom/interface/loncommon.pm 2003/11/10 20:19:37 1.150
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.146 2003/11/10 01:58:29 www Exp $
+# $Id: loncommon.pm,v 1.150 2003/11/10 20:19:37 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2007,7 +2007,7 @@ sub domainlogo {
my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
return '
';
+ '/adm/lonDomLogos/'.$domain.'.gif" alt="'.$domain.'" />';
} elsif(exists($Apache::lonnet::domaindescription{$domain})) {
return $Apache::lonnet::domaindescription{$domain};
} else {
@@ -2139,7 +2139,7 @@ sub bodytag {
# construct main body tag
my $bodytag = <
-h1, h2, h3, th, a { font-family: Arial, Helvetica, sans-serif }
+h1, h2, h3, th { font-family: Arial, Helvetica, sans-serif }
a:hover { color: black; background: yellow }
a:focus { color: red; background: yellow }
@@ -2147,7 +2147,7 @@ a:focus { color: red; background: yellow
style="border-color: $tabbg; border-width: 4px; border-style: solid; padding: 4px;$addstyle" $addentries>
END
my $upperleft='
';
+ $lonhttpdPort.$img.'" alt="'.$function.'" />';
if ($bodyonly) {
return $bodytag;
} elsif ($ENV{'browser.interface'} eq 'textual') {
@@ -2189,7 +2189,7 @@ $upperleft
$role
-$realm |
+$realm |
ENDBODY
}
@@ -2366,6 +2366,32 @@ sub add_to_env {
=pod
+=item * get_env_multiple($name)
+
+gets $name from the %ENV hash, it seemlessly handles the cases where multiple
+values may be defined and end up as an array ref.
+
+returns an array of values
+
+=cut
+
+sub get_env_multiple {
+ my ($name) = @_;
+ my @values;
+ if (defined($ENV{$name})) {
+ # exists is it an array
+ if (ref($ENV{$name})) {
+ @values=@{ $ENV{$name} };
+ } else {
+ $values[0]=$ENV{$name};
+ }
+ }
+ return(@values);
+}
+
+
+=pod
+
=back
=head1 CSV Upload/Handling functions