Annotation of loncom/auth/lonlogin.pm, revision 1.88
1.1 albertel 1: # The LearningOnline Network
2: # Login Screen
1.11 www 3: #
1.88 ! albertel 4: # $Id: lonlogin.pm,v 1.87 2007/01/14 02:00:04 raeburn Exp $
1.11 www 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.14 albertel 28:
1.1 albertel 29: package Apache::lonlogin;
30:
31: use strict;
32: use Apache::Constants qw(:common);
1.55 www 33: use CGI::Cookie();
1.1 albertel 34: use Apache::File ();
1.63 albertel 35: use Apache::lonnet;
1.12 albertel 36: use Apache::loncommon();
1.49 www 37: use Apache::lonauth();
1.50 www 38: use Apache::lonlocal;
1.71 albertel 39: use Apache::migrateuser();
1.75 www 40: use lib '/home/httpd/lib/perl/';
41: use LONCAPA;
42:
1.1 albertel 43: sub handler {
44: my $r = shift;
1.71 albertel 45:
46: &Apache::loncommon::get_unprocessed_cgi
1.79 albertel 47: (join('&',$ENV{'QUERY_STRING'},$env{'request.querystring'},
48: $ENV{'REDIRECT_QUERY_STRING'}),
1.71 albertel 49: ['interface','username','domain','firsturl','localpath','localres',
50: 'token']);
51:
52: # -- check if they are a migrating user
53: if (defined($env{'form.token'})) {
54: return &Apache::migrateuser::handler($r);
55: }
56:
1.53 www 57: &Apache::loncommon::no_cache($r);
58: &Apache::lonlocal::get_language_handle($r);
1.54 www 59: &Apache::loncommon::content_type($r,'text/html');
1.1 albertel 60: $r->send_http_header;
61: return OK if $r->header_only;
62:
1.49 www 63:
64: # Are we re-routing?
65: if (-e '/home/httpd/html/lon-status/reroute.txt') {
66: &Apache::lonauth::reroute($r);
67: return OK;
68: }
1.55 www 69:
1.71 albertel 70:
1.55 www 71: # -------------------------------- Prevent users from attempting to login twice
72: my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
73: my $lonid=$cookies{'lonID'};
74: my $cookie;
75: if ($lonid) {
1.85 albertel 76: my $handle=&LONCAPA::clean_handle($lonid->value);
1.55 www 77: my $lonidsdir=$r->dir_config('lonIDsDir');
1.70 www 78: if (-e "$lonidsdir/$handle.id") {
79: # Is there an existing token file?
80: if ($handle=~/^publicuser\_/) {
81: # For "public user" - remove it, we apparently really want to login
82: unlink("$lonidsdir/$handle.id");
83: } elsif ($handle ne '') {
1.55 www 84: # Indeed, a valid token is found
1.74 albertel 85: my $start_page =
86: &Apache::loncommon::start_page('Already logged in');
87: my $end_page =
88: &Apache::loncommon::end_page();
1.70 www 89: $r->print(<<ENDFAILED);
1.74 albertel 90: $start_page
1.55 www 91: <h1>You are already logged in</h1>
92: <p>Please either <a href="/adm/roles">continue the current session</a> or
93: <a href="/adm/logout">logout</a>.</p>
94: <p>
95: <a href="/adm/loginproblems.html">Problems?</a></p>
1.74 albertel 96: $end_page
1.55 www 97: ENDFAILED
1.70 www 98: return OK;
99: }
1.55 www 100: }
101: }
102:
103: # ---------------------------------------------------- No valid token, continue
1.16 www 104:
1.70 www 105: # ---------------------------- Not possible to really login to domain "public"
106: if ($env{'form.domain'} eq 'public') {
107: $env{'form.domain'}='';
108: $env{'form.username'}='';
109: }
1.32 www 110: # ----------------------------------------------------------- Process Interface
1.63 albertel 111: $env{'form.interface'}=~s/\W//g;
1.16 www 112:
1.32 www 113: my $textbrowsers=$r->dir_config('lonTextBrowsers');
114: my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
115:
116: foreach (split(/\:/,$textbrowsers)) {
117: if ($httpbrowser=~/$_/i) {
1.63 albertel 118: $env{'form.interface'}='textual';
1.32 www 119: }
120: }
121:
1.63 albertel 122: my $fullgraph=($env{'form.interface'} ne 'textual');
1.40 albertel 123: my $port_to_use=$r->dir_config('lonhttpdPort');
124: if (!defined($port_to_use)) {
125: $port_to_use='8080';
126: }
127: my $iconpath= 'http://'.$ENV{'HTTP_HOST'}.':'.$port_to_use.
1.26 www 128: $r->dir_config('lonIconsURL');
1.87 raeburn 129: my $domain = &Apache::lonnet::default_login_domain();
1.63 albertel 130: if (($env{'form.domain'}) &&
131: ($Apache::lonnet::domaindescription{$env{'form.domain'}})) {
132: $domain=$env{'form.domain'};
1.46 www 133: }
1.1 albertel 134: my $role = $r->dir_config('lonRole');
135: my $loadlim = $r->dir_config('lonLoadLim');
136: my $lonhost = $r->dir_config('lonHostID');
137: my $tabdir = $r->dir_config('lonTabDir');
1.6 www 138: my $include = $r->dir_config('lonIncludes');
1.37 www 139: my $expire = $r->dir_config('lonExpire');
1.44 www 140: my $version = $r->dir_config('lonVersion');
1.88 ! albertel 141: my $host_name = &Apache::lonnet::hostname($lonhost);
1.1 albertel 142:
1.30 www 143: # --------------------------------------------- Default values for login fields
144:
1.63 albertel 145: my $authusername=($env{'form.username'}?$env{'form.username'}:'');
146: my $authdomain=($env{'form.domain'}?$env{'form.domain'}:$domain);
1.30 www 147:
148: # ---------------------------------------------------------- Determine own load
1.1 albertel 149: my $loadavg;
1.41 albertel 150: {
151: my $loadfile=Apache::File->new('/proc/loadavg');
152: $loadavg=<$loadfile>;
153: }
1.1 albertel 154: $loadavg =~ s/\s.*//g;
1.57 matthew 155: my $loadpercent=sprintf("%.1f",100*$loadavg/$loadlim);
1.41 albertel 156: my $userloadpercent=&Apache::lonnet::userload();
1.1 albertel 157:
1.30 www 158: # ------------------------------------------------------- Do the load balancing
1.80 albertel 159: my $otherserver= &Apache::lonnet::absolute_url($host_name);
1.31 www 160: my $firsturl=
1.63 albertel 161: ($env{'request.firsturl'}?$env{'request.firsturl'}:$env{'form.firsturl'});
1.1 albertel 162: # ---------------------------------------- Are we access server and overloaded?
1.41 albertel 163: if (($role eq 'access') &&
164: (($userloadpercent>100.0)||($loadpercent>100.0))) {
1.47 albertel 165: my $unloaded=Apache::lonnet::spareserver($loadpercent,$userloadpercent);
166: if ($unloaded) { $otherserver=$unloaded; }
1.1 albertel 167: }
1.6 www 168:
1.45 www 169: # ----------------------------------------------------------- Get announcements
170: my $announcements=&Apache::lonnet::getannounce();
1.6 www 171: # -------------------------------------------------------- Set login parameters
172:
173: my @hexstr=('0','1','2','3','4','5','6','7',
174: '8','9','a','b','c','d','e','f');
175: my $lkey='';
176: for (0..7) {
177: $lkey.=$hexstr[rand(15)];
178: }
179:
180: my $ukey='';
181: for (0..7) {
182: $ukey.=$hexstr[rand(15)];
183: }
184:
185: my $lextkey=hex($lkey);
1.15 www 186: if ($lextkey>2147483647) { $lextkey-=4294967296; }
187:
1.6 www 188: my $uextkey=hex($ukey);
1.15 www 189: if ($uextkey>2147483647) { $uextkey-=4294967296; }
190:
1.31 www 191: # -------------------------------------------------------- Store away log token
1.6 www 192: my $logtoken=Apache::lonnet::reply(
1.7 www 193: 'tmpput:'.$ukey.$lkey.'&'.$firsturl,
1.6 www 194: $lonhost);
1.31 www 195:
196: # ------------------- If we cannot talk to ourselves, we are in serious trouble
197:
198: if ($logtoken eq 'con_lost') {
199: my $spares='';
1.64 albertel 200: my $last;
201: foreach my $hostid (sort
202: {
1.88 ! albertel 203: &Apache::lonnet::hostname($a) cmp
! 204: &Apache::lonnet::hostname($b);
1.64 albertel 205: }
206: keys(%Apache::lonnet::spareid)) {
1.58 matthew 207: next if ($hostid eq $lonhost);
1.88 ! albertel 208: my $hostname = &Apache::lonnet::hostname($hostid);
! 209: next if ($last eq $hostname);
1.58 matthew 210: $spares.='<br /><font size="+1"><a href="http://'.
1.88 ! albertel 211: $hostname.
1.58 matthew 212: '/adm/login?domain='.$authdomain.'">'.
1.88 ! albertel 213: $hostname.'</a>'.
1.58 matthew 214: ' (preferred)</font>'.$/;
1.88 ! albertel 215: $last=$hostname;
1.58 matthew 216: }
217: $spares.= '<br />';
1.88 ! albertel 218: my %all_hostnames = &Apache::lonnet::all_hostnames();
1.64 albertel 219: foreach my $hostid (sort
220: {
1.88 ! albertel 221: &Apache::lonnet::hostname($a) cmp
! 222: &Apache::lonnet::hostname($b);
1.64 albertel 223: }
1.88 ! albertel 224: keys(%all_hostnames)) {
1.58 matthew 225: next if ($hostid eq $lonhost || $Apache::lonnet::spareid{$hostid});
1.88 ! albertel 226: my $hostname = &Apache::lonnet::hostname($hostid);
! 227: next if ($last eq $hostname);
1.58 matthew 228: $spares.='<br /><a href="http://'.
1.88 ! albertel 229: $hostname.
1.58 matthew 230: '/adm/login?domain='.$authdomain.'">'.
1.88 ! albertel 231: $hostname.'</a>';
! 232: $last=$hostname;
1.31 www 233: }
234: $r->print(<<ENDTROUBLE);
235: <html>
236: <head><title>The LearningOnline Network with CAPA</title></head>
237: <body bgcolor="#FFFFFF">
238: <img src="/adm/lonKaputt/lonlogo_broken.gif" align="right" />
239: <h3>This LON-CAPA server is temporarily not available for login</h3>
240: <p>Please attempt to login to one of the following servers:</p>$spares
241: </body>
242: </html>
243: ENDTROUBLE
244: return OK;
245: }
246:
247: # ----------------------------------------------- Apparently we are in business
248:
1.48 albertel 249: my $domainlogo=&Apache::loncommon::domainlogo($domain);
1.38 www 250:
1.6 www 251: # --------------------------------------------------- Print login screen header
252: $r->print(<<ENDHEADER);
1.1 albertel 253: <html>
254: <head>
1.37 www 255: <meta HTTP-EQUIV="Refresh" CONTENT="$expire; url=/adm/roles" />
1.2 www 256: <title>The LearningOnline Network with CAPA Login</title>
1.1 albertel 257: </head>
1.6 www 258: ENDHEADER
259: # ---------------------------------------------------- Serve out DES JavaScript
260: {
261: my $jsh=Apache::File->new($include."/londes.js");
262: $r->print(<$jsh>);
263: }
1.21 www 264:
265: # ----------------------------------------------------------- Front page design
1.35 www 266: my $pgbg=
1.46 www 267: ($fullgraph?&Apache::loncommon::designparm('login.pgbg',$domain):'#FFFFFF');
1.35 www 268: my $font=
1.46 www 269: ($fullgraph?&Apache::loncommon::designparm('login.font',$domain):'#000000');
1.35 www 270: my $link=
1.46 www 271: ($fullgraph?&Apache::loncommon::designparm('login.link',$domain):'#0000FF');
1.35 www 272: my $vlink=
1.46 www 273: ($fullgraph?&Apache::loncommon::designparm('login.vlink',$domain):'#0000FF');
274: my $alink=&Apache::loncommon::designparm('login.alink',$domain);
1.35 www 275: my $mainbg=
1.46 www 276: ($fullgraph?&Apache::loncommon::designparm('login.mainbg',$domain):'#FFFFFF');
1.35 www 277: my $sidebg=
1.46 www 278: ($fullgraph?&Apache::loncommon::designparm('login.sidebg',$domain):'#FFFFFF');
279: my $logo=&Apache::loncommon::designparm('login.logo',$domain);
280: my $img=&Apache::loncommon::designparm('login.img',$domain);
1.21 www 281:
1.51 www 282: # ----------------------------------------------------------------------- Texts
283:
284: my %lt=&Apache::lonlocal::texthash(
285: 'un' => 'Username',
286: 'pw' => 'Password',
287: 'dom' => 'Domain',
288: 'perc' => 'percent',
1.52 www 289: 'load' => 'Load',
290: 'userload' => 'User Load',
1.84 raeburn 291: 'about' => 'About LON-CAPA',
292: 'access' => 'Accessibility Options',
293: 'catalog' => 'Course Catalog',
1.52 www 294: 'auth' => 'userauthentication.gif',
1.51 www 295: 'log' => 'Log in',
1.84 raeburn 296: 'help' => 'Log-in Help',
1.51 www 297: 'serv' => 'Server',
1.83 raeburn 298: 'helpdesk' => 'Contact Helpdesk',
299: 'forgotpw' => 'Forgot password?');
1.66 www 300: # -------------------------------------------------- Change password field name
301: my $now=time;
1.84 raeburn 302: my $forgotpw = &forgotpwdisplay(%lt);
303: my $loginhelp = &loginhelpdisplay(%lt);
1.6 www 304: # ---------------------------------------------------------- Serve rest of page
1.16 www 305: $r->print(<<ENDSCRIPT);
1.6 www 306:
1.21 www 307: <body bgcolor="$pgbg" text="$font" link="$link" vlink="$vlink" alink="$alink"
1.27 albertel 308: topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>
1.6 www 309:
1.14 albertel 310: <script language="JavaScript">
311: function send()
312: {
1.6 www 313: this.document.server.elements.uname.value
314: =this.document.client.elements.uname.value;
315:
316: this.document.server.elements.udom.value
317: =this.document.client.elements.udom.value;
318:
1.33 www 319: this.document.server.elements.imagesuppress.value
1.36 www 320: =this.document.client.elements.imagesuppress.checked;
1.33 www 321:
322: this.document.server.elements.embedsuppress.value
1.36 www 323: =this.document.client.elements.embedsuppress.checked;
1.33 www 324:
1.34 www 325: this.document.server.elements.appletsuppress.value
1.36 www 326: =this.document.client.elements.appletsuppress.checked;
1.34 www 327:
1.33 www 328: this.document.server.elements.fontenhance.value
1.36 www 329: =this.document.client.elements.fontenhance.checked;
1.33 www 330:
331: this.document.server.elements.blackwhite.value
1.36 www 332: =this.document.client.elements.blackwhite.checked;
1.33 www 333:
1.35 www 334: this.document.server.elements.remember.value
1.36 www 335: =this.document.client.elements.remember.checked;
1.35 www 336:
1.6 www 337: uextkey=this.document.client.elements.uextkey.value;
338: lextkey=this.document.client.elements.lextkey.value;
339: initkeys();
340:
1.65 www 341: this.document.server.elements.upass0.value
1.66 www 342: =crypted(this.document.client.elements.upass$now.value.substr(0,15));
1.65 www 343: this.document.server.elements.upass1.value
1.66 www 344: =crypted(this.document.client.elements.upass$now.value.substr(15,15));
1.65 www 345: this.document.server.elements.upass2.value
1.66 www 346: =crypted(this.document.client.elements.upass$now.value.substr(30,15));
347:
348: this.document.client.elements.uname.value='';
349: this.document.client.elements.upass$now.value='';
1.6 www 350:
351: this.document.server.submit();
1.19 bowersj2 352: return false;
1.6 www 353: }
1.14 albertel 354: </script>
1.16 www 355: ENDSCRIPT
1.6 www 356:
1.16 www 357: if ($fullgraph) {
358: $r->print(
359: '<table width="100%" cellpadding=0 cellspacing=0 border=0>');
360: }
1.6 www 361:
1.16 www 362: $r->print(<<ENDSERVERFORM);
1.14 albertel 363: <form name="server" action="$otherserver/adm/authenticate" method="post" target="_top">
1.33 www 364: <input type="hidden" name="logtoken" value="$logtoken" />
365: <input type="hidden" name="serverid" value="$lonhost" />
1.63 albertel 366: <input type="hidden" name="interface" value="$env{'form.interface'}" />
1.33 www 367: <input type="hidden" name="uname" value="" />
1.65 www 368: <input type="hidden" name="upass0" value="" />
369: <input type="hidden" name="upass1" value="" />
370: <input type="hidden" name="upass2" value="" />
1.33 www 371: <input type="hidden" name="udom" value="" />
372: <input type="hidden" name="imagesuppress" value="" />
1.34 www 373: <input type="hidden" name="appletsuppress" value="" />
1.33 www 374: <input type="hidden" name="embedsuppress" value="" />
375: <input type="hidden" name="fontenhance" value="" />
376: <input type="hidden" name="blackwhite" value="" />
1.35 www 377: <input type="hidden" name="remember" value="" />
1.63 albertel 378: <input type="hidden" name="localpath" value="$env{'form.localpath'}" />
379: <input type="hidden" name="localres" value="$env{'form.localres'}" />
1.14 albertel 380: </form>
1.16 www 381: ENDSERVERFORM
382: if ($fullgraph) { $r->print(<<ENDTOP);
1.14 albertel 383: <!-- The LON-CAPA Header -->
384: <tr>
385:
386: <!-- Row 1 Columns 2-4 -->
1.29 www 387: <td width="100%" height=75 colspan=4 align="left" valign="top" bgcolor="$pgbg"><img src="$img" border=0 alt="The Learning Online Network with CAPA" /></td>
1.14 albertel 388: </tr>
389:
390: <!-- The gray bar that starts the two table frames -->
391: <tr>
392:
393: <!-- Row 2 Column 1 -->
1.21 www 394: <td width=182 height=27 bgcolor="$sidebg"> </td>
1.14 albertel 395:
396: <!-- Row 2 Column 2 -->
1.19 bowersj2 397: <td width=27 height=27 align="left" background="$iconpath/filltop.gif"><img src="$iconpath/upperleft.gif" border=0 alt="" /></td>
1.14 albertel 398:
399: <!-- Row 2 Column 3 -->
1.19 bowersj2 400: <td height=27 background="$iconpath/filltop.gif"><img src="$iconpath/filltop.gif" alt="" /></td>
1.14 albertel 401:
402: <!-- Row 2 Column 4 -->
1.19 bowersj2 403: <td width=27 height=27 align="right" background="$iconpath/filltop.gif"><img src="$iconpath/upperright.gif" border=0 alt="" /></td>
1.14 albertel 404: </tr>
405: <tr>
406:
1.84 raeburn 407: <!-- A cell that will hold the 'access', 'about', and 'catalog' links -->
1.14 albertel 408: <!-- Row 3 Column 1 -->
1.86 raeburn 409: <td valign="top" height="60" align="left" bgcolor="$sidebg">
1.84 raeburn 410: <table cellpadding="0" cellspacing="2" border="0">
411: <tr>
412: <td> </td>
413: <td><a href="/adm/login?interface=textual"><b>$lt{'access'}</b></a></td>
1.86 raeburn 414: </tr>
415: <tr>
416: <td> </td>
417: <td><a href="/adm/about.html"><b>$lt{'about'}</b></a></td>
418: </tr>
419: <tr>
420: <td> </td>
421: <td><a href="/adm/coursecatalog"><b>$lt{'catalog'}</b></a></td>
422: </tr>
423: <tr>
1.84 raeburn 424: <td colspan="2"> </td>
1.86 raeburn 425: </tr>
426: </table>
427: </td>
1.14 albertel 428: <!-- The shaded space between the two main columns -->
429: <!-- Row 3 Column 2 -->
1.19 bowersj2 430: <td width=27 height=60 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
1.14 albertel 431:
432: <!-- The right main column holding the large LON-CAPA logo-->
433: <!-- Rows 3-4 Column 3 -->
1.45 www 434: <td align="center" valign="top" width="100%" height="100%" bgcolor="$mainbg">
1.14 albertel 435: <center>
1.21 www 436: <img src="$logo" alt="" />
1.14 albertel 437: </center>
438: </td>
439:
440: <!-- Row 3 Column 4 -->
1.19 bowersj2 441: <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
1.14 albertel 442: </tr>
443: <tr>
444:
445: <!-- The entry form -->
446: <!-- Row 4 Column 1 -->
1.21 www 447: <td align="center" valign="middle" bgcolor="$sidebg">
1.16 www 448: ENDTOP
1.32 www 449: } else {
1.45 www 450: $r->print('<h1>The Learning<i>Online</i> Network with CAPA</h1><h2>Text-based Interface Login</h2>'.$announcements);
1.33 www 451: }
452: $r->print('<form name="client" onsubmit="return(send())">');
453: unless ($fullgraph) {
454: $r->print(<<ENDACCESSOPTIONS);
1.35 www 455: <h3>Select Accessibility Options</h3>
1.67 albertel 456: <label><input type="checkbox" name="imagesuppress" /> Suppress rendering of images</label><br />
457: <label><input type="checkbox" name="appletsuppress" /> Suppress Java applets</label><br />
458: <label><input type="checkbox" name="embedsuppress" /> Suppress rendering of embedded multimedia</label><br />
459: <label><input type="checkbox" name="fontenhance" /> Increase font size</label><br />
460: <label><input type="checkbox" name="blackwhite" /> Switch to black and white mode</label><br />
1.35 www 461: <input type="checkbox" name="remember" /> Remember these settings for next login<hr />
1.33 www 462: ENDACCESSOPTIONS
463: } else {
464: $r->print(<<ENDNOOPT);
465: <input type="hidden" name="imagesuppress" value="" />
466: <input type="hidden" name="embedsuppress" value="" />
1.34 www 467: <input type="hidden" name="appletsuppress" value="" />
1.33 www 468: <input type="hidden" name="fontenhance" value="" />
469: <input type="hidden" name="blackwhite" value="" />
1.35 www 470: <input type="hidden" name="remember" value="" />
1.33 www 471: ENDNOOPT
1.16 www 472: }
473: $r->print(<<ENDLOGIN);
1.14 albertel 474: <input type="hidden" name="lextkey" value="$lextkey">
475: <input type="hidden" name="uextkey" value="$uextkey">
476:
477: <!-- Start the sub-table for text and input alignment -->
478: <table border=0 cellspacing=0 cellpadding=0>
1.52 www 479: <tr><td bgcolor="$sidebg" colspan=2><img src="$iconpath/$lt{'auth'}" alt="User Authentication" /></td></tr>
1.14 albertel 480: <tr>
1.51 www 481: <td bgcolor="$mainbg"><br /><font size=-1><b> $lt{'un'}:</b></font></td>
1.30 www 482: <td bgcolor="$mainbg"><br /><input type="text" name="uname" size="10" value="$authusername" /></td>
1.14 albertel 483: </tr>
484: <tr>
1.51 www 485: <td bgcolor="$mainbg"><font size=-1><b> $lt{'pw'}:</b></font></td>
1.66 www 486: <td bgcolor="$mainbg"><input type="password" name="upass$now" size="10" /></td>
1.14 albertel 487: </tr>
488: <tr>
1.51 www 489: <td bgcolor="$mainbg"><font size=-1><b> $lt{'dom'}:</b></font></td>
1.30 www 490: <td bgcolor="$mainbg"><input type="text" name="udom" size="10" value="$authdomain" /></td>
1.14 albertel 491: </tr>
492: <tr>
1.84 raeburn 493: <td bgcolor="$mainbg"> </td>
1.28 www 494: <td bgcolor="$mainbg" valign="bottom" align="center">
1.14 albertel 495: <br />
1.51 www 496: <input type="submit" value="$lt{'log'}" />
1.14 albertel 497: </td>
498: </tr>
1.83 raeburn 499: <tr>
500: <td bgcolor="$mainbg" valign="bottom" align="left" colspan="2">
1.84 raeburn 501: $loginhelp
1.83 raeburn 502: $forgotpw
503: </td>
504: </tr>
1.14 albertel 505: </table>
506: <!-- End sub-table -->
507: </form>
1.16 www 508: ENDLOGIN
509: if ($fullgraph) {
1.62 raeburn 510: my $helpdeskscript;
1.82 www 511: my $contactblock = &contactdisplay(\%lt,$version,$authdomain,\$helpdeskscript);
1.16 www 512: $r->print(<<ENDDOCUMENT);
1.14 albertel 513: </td>
514:
515: <!-- Row 4 Column 2 -->
1.19 bowersj2 516: <td width=27 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
1.45 www 517:
518: <!-- Row 4 Column 3 -->
519: <td bgcolor="$mainbg">$announcements</td>
1.14 albertel 520:
521: <!-- Row 4 Column 4 -->
1.19 bowersj2 522: <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
1.14 albertel 523: </tr>
524: <tr>
525:
526: <!-- Row 5 Column 1 -->
1.21 www 527: <td bgcolor="$sidebg" valign="middle" align="left">
1.14 albertel 528: <br />
529: <table border=0 cellspacing=0 cellpadding=0>
530: <tr>
1.21 www 531: <td bgcolor="$sidebg" align="left" valign="top">
1.51 www 532: <small><b> $lt{'dom'}: </b></small>
1.14 albertel 533: </td>
1.21 www 534: <td bgcolor="$sidebg" align="left" valign="top">
1.14 albertel 535: <small><tt> $domain</tt></small>
536: </td>
537: </tr>
538: <tr>
1.21 www 539: <td bgcolor="$sidebg" align="left" valign="top">
1.51 www 540: <small><b> $lt{'serv'}: </b></small>
1.14 albertel 541: </td>
1.21 www 542: <td bgcolor="$sidebg" align="left" valign="top">
1.14 albertel 543: <small><tt> $lonhost ($role)</tt></small>
544: </td>
545: </tr>
546: <tr>
1.21 www 547: <td bgcolor="$sidebg" align="left" valign="top">
1.52 www 548: <small><b> $lt{'load'}: </b></small>
1.14 albertel 549: </td>
1.21 www 550: <td bgcolor="$sidebg" align="left" valign="top">
1.51 www 551: <small><tt> $loadpercent $lt{'perc'}</tt></small>
1.42 albertel 552: </td>
553: </tr>
554: <tr>
555: <td bgcolor="$sidebg" align="left" valign="top">
1.52 www 556: <small><b> $lt{'userload'}: </b></small>
1.42 albertel 557: </td>
558: <td bgcolor="$sidebg" align="left" valign="top">
1.51 www 559: <small><tt> $userloadpercent $lt{'perc'}</tt></small>
1.14 albertel 560: </td>
561: </tr>
562: </table>
563: <br />
1.60 raeburn 564: $contactblock
1.14 albertel 565: </td>
566:
567: <!-- Row 5 Column 2 -->
1.19 bowersj2 568: <td width=27 background="$iconpath/fillleft.gif"><img src="$iconpath/fillleft.gif" alt="" /></td>
1.14 albertel 569:
570: <!-- Row 5 Column 3 -->
1.21 www 571: <td width="100%" valign="bottom" bgcolor="$mainbg">
1.20 www 572: $domainlogo
573: </td>
1.14 albertel 574:
575: <!-- Row 5 Column 4 -->
1.19 bowersj2 576: <td width=27 background="$iconpath/fillright.gif"><img src="$iconpath/fillright.gif" alt="" /></td>
1.14 albertel 577: </tr>
578: <tr>
579:
580: <!-- Row 6 Column 1 -->
1.21 www 581: <td bgcolor="$sidebg"> </td>
1.14 albertel 582:
583: <!-- Row 6 Column 2 -->
1.19 bowersj2 584: <td align="left" background="$iconpath/fillbottom.gif"><img src="$iconpath/lowerleft.gif" alt="" /></td>
1.14 albertel 585:
586: <!-- Row 6 Column 3 -->
1.19 bowersj2 587: <td background="$iconpath/fillbottom.gif"><img src="$iconpath/fillbottom.gif" alt="" /></td>
1.14 albertel 588:
589: <!-- Row 6 Column 4 -->
1.19 bowersj2 590: <td align="right" background="$iconpath/fillbottom.gif"><img src="$iconpath/lowerright.gif" alt="" /></td>
1.14 albertel 591: </tr>
1.1 albertel 592: </table>
1.25 bowersj2 593:
1.59 albertel 594: <script type="text/javascript">
595: // the if prevents the script error if the browser can not handle this
1.25 bowersj2 596: if ( document.client.uname ) { document.client.uname.focus(); }
597: </script>
1.62 raeburn 598: $helpdeskscript
1.14 albertel 599:
1.1 albertel 600: ENDDOCUMENT
1.16 www 601: }
602: $r->print('</body></html>');
1.1 albertel 603: return OK;
1.60 raeburn 604: }
605:
606: sub contactdisplay {
1.82 www 607: my ($lt,$version,$authdomain,$helpdeskscript) = @_;
1.60 raeburn 608: my $contactblock;
1.62 raeburn 609: my $showhelpdesk = 0;
610: my $requestmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
611: if ($requestmail =~ m/^[^\@]+\@[^\@]+$/) {
612: $showhelpdesk = 1;
613: }
1.60 raeburn 614: if ($showhelpdesk) {
1.84 raeburn 615: $contactblock .= '<b> <a href="javascript:helpdesk()"><font size="+1">'.$lt->{'helpdesk'}.'</font></a></b><br />';
1.75 www 616: my $thisurl = &escape('/adm/login');
1.62 raeburn 617: $$helpdeskscript = <<"ENDSCRIPT";
618: <script type="text/javascript">
619: function helpdesk() {
620: var codedom = document.client.udom.value;
621: if (codedom == '') {
622: codedom = "$authdomain";
623: }
624: var querystr = "origurl=$thisurl&codedom="+codedom;
625: document.location.href = "/adm/helpdesk?"+querystr;
626: return;
627: }
628: </script>
629: ENDSCRIPT
1.60 raeburn 630: }
631: $contactblock .= <<"ENDBLOCK";
632: $version
633: ENDBLOCK
634: return $contactblock;
635: }
1.83 raeburn 636:
637: sub forgotpwdisplay {
1.84 raeburn 638: my (%lt) = @_;
1.83 raeburn 639: my $prompt_for_resetpw = 1;
640: if ($prompt_for_resetpw) {
1.84 raeburn 641: return '<br /> <a href="/adm/resetpw">'.$lt{'forgotpw'}.'</a></b><br /><br />';
642: }
643: return;
644: }
645:
646: sub loginhelpdisplay {
647: my (%lt) = @_;
648: my $login_help = 1;
649: if ($login_help) {
650: return ' <a href="/adm/loginproblems.html">'.$lt{'help'}.'</a></b>';
1.83 raeburn 651: }
652: return;
653: }
1.1 albertel 654:
655: 1;
656: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>