--- loncom/auth/lonlogin.pm 2003/11/12 16:55:40 1.55 +++ loncom/auth/lonlogin.pm 2005/08/30 21:14:20 1.68 @@ -1,7 +1,7 @@ # The LearningOnline Network # Login Screen # -# $Id: lonlogin.pm,v 1.55 2003/11/12 16:55:40 www Exp $ +# $Id: lonlogin.pm,v 1.68 2005/08/30 21:14:20 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -32,7 +32,7 @@ use strict; use Apache::Constants qw(:common); use CGI::Cookie(); use Apache::File (); -use Apache::lonnet(); +use Apache::lonnet; use Apache::loncommon(); use Apache::lonauth(); use Apache::lonlocal; @@ -68,7 +68,6 @@ sub handler {
Please either continue the current session or
@@ -85,23 +84,23 @@ ENDFAILED
# ---------------------------------------------------- No valid token, continue
&Apache::loncommon::get_unprocessed_cgi
- ($ENV{'QUERY_STRING'}.'&'.$ENV{'request.querystring'},
+ ($ENV{'QUERY_STRING'}.'&'.$env{'request.querystring'},
['interface','username','domain','firsturl','localpath','localres']);
# ----------------------------------------------------------- Process Interface
- $ENV{'form.interface'}=~s/\W//g;
+ $env{'form.interface'}=~s/\W//g;
my $textbrowsers=$r->dir_config('lonTextBrowsers');
my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
foreach (split(/\:/,$textbrowsers)) {
if ($httpbrowser=~/$_/i) {
- $ENV{'form.interface'}='textual';
+ $env{'form.interface'}='textual';
}
}
- my $fullgraph=($ENV{'form.interface'} ne 'textual');
+ my $fullgraph=($env{'form.interface'} ne 'textual');
my $port_to_use=$r->dir_config('lonhttpdPort');
if (!defined($port_to_use)) {
$port_to_use='8080';
@@ -109,9 +108,13 @@ ENDFAILED
my $iconpath= 'http://'.$ENV{'HTTP_HOST'}.':'.$port_to_use.
$r->dir_config('lonIconsURL');
my $domain = $r->dir_config('lonDefDomain');
- if (($ENV{'form.domain'}) &&
- ($Apache::lonnet::domaindescription{$ENV{'form.domain'}})) {
- $domain=$ENV{'form.domain'};
+ my $testdomain=(split(/\./,$ENV{'HTTP_HOST'}))[0];
+ foreach my $posdom (&Apache::lonnet::current_machine_domains()) {
+ if ($posdom eq $testdomain) { $domain=$testdomain; }
+ }
+ if (($env{'form.domain'}) &&
+ ($Apache::lonnet::domaindescription{$env{'form.domain'}})) {
+ $domain=$env{'form.domain'};
}
my $role = $r->dir_config('lonRole');
my $loadlim = $r->dir_config('lonLoadLim');
@@ -125,8 +128,8 @@ ENDFAILED
# --------------------------------------------- Default values for login fields
- my $authusername=($ENV{'form.username'}?$ENV{'form.username'}:'');
- my $authdomain=($ENV{'form.domain'}?$ENV{'form.domain'}:$domain);
+ my $authusername=($env{'form.username'}?$env{'form.username'}:'');
+ my $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
# ---------------------------------------------------------- Determine own load
my $loadavg;
@@ -135,13 +138,13 @@ ENDFAILED
$loadavg=<$loadfile>;
}
$loadavg =~ s/\s.*//g;
- my $loadpercent=100*$loadavg/$loadlim;
+ my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
my $userloadpercent=&Apache::lonnet::userload();
# ------------------------------------------------------- Do the load balancing
my $otherserver='http://'.$ENV{'SERVER_NAME'};
my $firsturl=
- ($ENV{'request.firsturl'}?$ENV{'request.firsturl'}:$ENV{'form.firsturl'});
+ ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
# ---------------------------------------- Are we access server and overloaded?
if (($role eq 'access') &&
(($userloadpercent>100.0)||($loadpercent>100.0))) {
@@ -180,15 +183,36 @@ ENDFAILED
if ($logtoken eq 'con_lost') {
my $spares='';
- foreach (keys %Apache::lonnet::hostname) {
- if ($_ ne $lonhost) {
- $spares.=' If you have accessibility needs that are not addressed by this interface,
please
contact the system administrator at $sysadm.
'.
- $Apache::lonnet::hostname{$_}.'';
- if ($Apache::lonnet::spareid{$_}) {
- $spares.=' (preferred)';
- }
- }
+ my $last;
+ foreach my $hostid (sort
+ {
+ $Apache::lonnet::hostname{$a} cmp
+ $Apache::lonnet::hostname{$b};
+ }
+ keys(%Apache::lonnet::spareid)) {
+ next if ($hostid eq $lonhost);
+ next if ($last eq $Apache::lonnet::hostname{$hostid});
+ $spares.='
'.
+ $Apache::lonnet::hostname{$hostid}.''.
+ ' (preferred)'.$/;
+ $last=$Apache::lonnet::hostname{$hostid};
+ }
+ $spares.= '
';
+ foreach my $hostid (sort
+ {
+ $Apache::lonnet::hostname{$a} cmp
+ $Apache::lonnet::hostname{$b};
+ }
+ keys(%Apache::lonnet::hostname)) {
+ next if ($hostid eq $lonhost || $Apache::lonnet::spareid{$hostid});
+ next if ($last eq $Apache::lonnet::hostname{$hostid});
+ $spares.='
'.
+ $Apache::lonnet::hostname{$hostid}.'';
+ $last=$Apache::lonnet::hostname{$hostid};
}
$r->print(<
- Suppress Java applets
- Suppress rendering of embedded multimedia
- Increase font size
- Switch to black and white mode
+
+
+
+
+
@@ -423,7 +457,7 @@ ENDNOOPT
$lt{'pw'}:
-
+
$lt{'dom'}:
@@ -441,6 +475,8 @@ ENDNOOPT
ENDLOGIN
if ($fullgraph) {
+ my $helpdeskscript;
+ my $contactblock = &contactdisplay(\%lt,$sysadm,$servadm,$version,$authdomain,\$helpdeskscript);
$r->print(<
-
- $lt{'sysadm'}:
- $sysadm
- $lt{'servadm'}:
- $servadm
- $version
-
+ $contactblock
@@ -529,16 +559,59 @@ $domainlogo
-
+$helpdeskscript
ENDDOCUMENT
}
$r->print('