--- loncom/auth/lonlogin.pm 2002/03/13 19:32:55 1.14 +++ loncom/auth/lonlogin.pm 2002/08/26 12:47:28 1.20 @@ -1,7 +1,7 @@ # The LearningOnline Network # Login Screen # -# $Id: lonlogin.pm,v 1.14 2002/03/13 19:32:55 albertel Exp $ +# $Id: lonlogin.pm,v 1.20 2002/08/26 12:47:28 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -30,6 +30,8 @@ # 1/17/01 Gerd Kortemeyer # # 2/7/02,2/8,2/12,2/14,2/15,2/19 Josh Brunskole +# +# 7/10/02 Jeremy Bowers package Apache::lonlogin; @@ -46,6 +48,14 @@ sub handler { $r->send_http_header; return OK if $r->header_only; + + &Apache::loncommon::get_unprocessed_cgi + ($ENV{'QUERY_STRING'},['interface']); + + $ENV{'form.interface'}=~s/\W//g; + + my $fullgraph=($ENV{'form.interface'} ne 'textual'); + my $iconpath= $r->dir_config('lonIconsURL'); my $domain = $r->dir_config('lonDefDomain'); my $role = $r->dir_config('lonRole'); @@ -86,11 +96,15 @@ sub handler { } my $lextkey=hex($lkey); + if ($lextkey>2147483647) { $lextkey-=4294967296; } + my $uextkey=hex($ukey); + if ($uextkey>2147483647) { $uextkey-=4294967296; } + my $logtoken=Apache::lonnet::reply( 'tmpput:'.$ukey.$lkey.'&'.$firsturl, $lonhost); - + my $domainlogo=&Apache::loncommon::domainlogo(); # --------------------------------------------------- Print login screen header $r->print(< @@ -104,7 +118,7 @@ ENDHEADER $r->print(<$jsh>); } # ---------------------------------------------------------- Serve rest of page - $r->print(<print(< @@ -126,25 +140,32 @@ ENDHEADER =crypted(this.document.client.elements.upass.value); this.document.server.submit(); + return false; } +ENDSCRIPT - - + if ($fullgraph) { + $r->print( + '
'); + } + $r->print(< + - +ENDSERVERFORM + if ($fullgraph) { $r->print(< - + @@ -154,51 +175,54 @@ ENDHEADER - + - + - + - + - + + - + @@ -265,18 +291,20 @@ ENDHEADER    System Administration:
      $sysadm
   Server Administration:
-       $servadm +       $servadm
 
- + - + - + @@ -284,19 +312,19 @@ ENDHEADER - + - + - +
The Learning Online Network with CAPA
 
- + Accessibility Options
- + About LON-CAPA
- +
-
+ENDTOP +} + $r->print(< - + @@ -214,20 +238,22 @@ ENDHEADER
User Authentication

   User Name:


- +
- +ENDLOGIN + if ($fullgraph) { + $r->print(< -
+$domainlogo +
 
- - ENDDOCUMENT +} + $r->print(''); return OK; }