--- loncom/auth/lonlogin.pm 2001/11/29 19:12:44 1.11 +++ loncom/auth/lonlogin.pm 2002/05/25 22:15:03 1.18 @@ -1,7 +1,7 @@ # The LearningOnline Network # Login Screen # -# $Id: lonlogin.pm,v 1.11 2001/11/29 19:12:44 www Exp $ +# $Id: lonlogin.pm,v 1.18 2002/05/25 22:15:03 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -29,19 +29,31 @@ # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9, # 1/17/01 Gerd Kortemeyer # +# 2/7/02,2/8,2/12,2/14,2/15,2/19 Josh Brunskole + package Apache::lonlogin; use strict; use Apache::Constants qw(:common); use Apache::File (); use Apache::lonnet(); +use Apache::loncommon(); sub handler { my $r = shift; $r->content_type('text/html'); + &Apache::loncommon::no_cache($r); $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'); @@ -82,7 +94,11 @@ 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); @@ -100,14 +116,14 @@ ENDHEADER $r->print(<$jsh>); } # ---------------------------------------------------------- Serve rest of page - $r->print(< + $r->print(< + - function send() { + +ENDSCRIPT - + if ($fullgraph) { + $r->print( + ''); + } -Accessibility Options -   -About LON-CAPA

-

- - -
- -User Authentication

- -

- - - - - -
- -
- - - - - - + $r->print(< + + + + + + + +ENDSERVERFORM + if ($fullgraph) { $r->print(< + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Username:
Password:
Domain:
 
+ +
+ +
+
+ +
+
+ENDTOP +} + $r->print(< + + + + + + + + + + + + + + + + + + + + + +

   User Name:

   Password:
   Domain:
+
+ +
+ + +ENDLOGIN + if ($fullgraph) { + $r->print(< + + +
+
+ + + + + + + + + + + + + +
+    Domain:  + +  $domain +
+    Server:  + +  $lonhost ($role) +
+    Load:  + +  $loadpercent percent +
+
+ +    System Administration:
+       $sysadm
+    Server Administration:
+       $servadm +
+
 
- - - - -
- - - - - - - - -
Domain:$domainSystem Administration:
- $sysadm
- Server Administration:
- $servadm
Server:$lonhost ($role)
Load:$loadpercent percent
-
- -Laboratory for
-Instructional
-Technology in
-Education
-
- - + ENDDOCUMENT +} + $r->print(''); return OK; }