Diff for /loncom/auth/lonlogin.pm between versions 1.7 and 1.11

version 1.7, 2000/07/01 14:00:51 version 1.11, 2001/11/29 19:12:44
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # Login Screen  # Login Screen
   #
   # $Id$
   #
   # Copyright Michigan State University Board of Trustees
   #
   # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   #
   # LON-CAPA is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version.
   #
   # LON-CAPA is distributed in the hope that it will be useful,
   # but WITHOUT ANY WARRANTY; without even the implied warranty of
   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   # GNU General Public License for more details.
   #
   # You should have received a copy of the GNU General Public License
   # along with LON-CAPA; if not, write to the Free Software
   # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   #
   # /home/httpd/html/adm/gpl.txt
   #
   # http://www.lon-capa.org/
   #
 # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,  # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
 # 1/14/00,5/29,5/30,6/1,6/29,7/1 Gerd Kortemeyer  # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9,
   # 1/17/01 Gerd Kortemeyer
 #  #
 package Apache::lonlogin;  package Apache::lonlogin;
   
Line 34  sub handler { Line 60  sub handler {
     $loadavg =~ s/\s.*//g;      $loadavg =~ s/\s.*//g;
     my $loadpercent=100*$loadavg/$loadlim;      my $loadpercent=100*$loadavg/$loadlim;
   
     my $otherserver='';      my $otherserver='http://'.$ENV{'SERVER_NAME'};
     my $firsturl=$ENV{'request.firsturl'};      my $firsturl=$ENV{'request.firsturl'};
 # ---------------------------------------- Are we access server and overloaded?  # ---------------------------------------- Are we access server and overloaded?
     if (($role eq 'access') && ($loadpercent>100.0)) {      if (($role eq 'access') && ($loadpercent>100.0)) {
Line 76  ENDHEADER Line 102  ENDHEADER
 # ---------------------------------------------------------- Serve rest of page  # ---------------------------------------------------------- Serve rest of page
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
   
 <body bgcolor="#FFFFFF" onLoad="init();">  <body bgcolor="#FFFFFF" text="#000000" link="#999999" vlink="#999999"
    onLoad="init();">
   
 <script language="JavaScript">  <script language="JavaScript">
   
Line 99  ENDHEADER Line 126  ENDHEADER
   
 </script>  </script>
   
   <a href="/adm/accessibility.html">Accessibility Options</a>
   &nbsp;&nbsp;
   <a href="/adm/about.html">About LON-CAPA</a><p>
 <table width=600>  <table width=600>
 <tr><td><img src="$iconpath/lonlogo.gif"></td>  <tr><td>
 <td bgcolor="#DDDDDD">  <img src="$iconpath/lonlogo.gif"></td>
   <td colspan=2 bgcolor="#DDDDDD">
 <font size=+1><b>User Authentication</b></font><p>  <font size=+1><b>User Authentication</b></font><p>
   
  <form name="server" action="$otherserver/adm/authenticate"    <form name="server" action="$otherserver/adm/authenticate" 
Line 130  ENDHEADER Line 161  ENDHEADER
 <table border=1 bgcolor="#BBBBBB">  <table border=1 bgcolor="#BBBBBB">
 <tr><td><font size="-1"><b>Domain:</b></font></td>  <tr><td><font size="-1"><b>Domain:</b></font></td>
     <td><font size="-1"><tt>$domain</tt></font></td>      <td><font size="-1"><tt>$domain</tt></font></td>
     <td rowspan=3><font size="-1"><b>LON System Administration:</b><br>      <td rowspan=3><font size="-1"><b>System Administration:</b><br>
                   <tt>$sysadm</tt><br>                    <tt>$sysadm</tt><br>
                   <b>Server Administration:</b><br>                    <b>Server Administration:</b><br>
                   <tt>$servadm</tt></font></td></tr>                    <tt>$servadm</tt></font></td></tr>
Line 140  ENDHEADER Line 171  ENDHEADER
     <td><font size="-1"><tt>$loadpercent</tt> percent</font></td></tr>      <td><font size="-1"><tt>$loadpercent</tt> percent</font></td></tr>
 </table>  </table>
 </td><td>  </td><td>
 <table align=right><tr><td><font size="+1">  <font size="+1">
 <b>L</b>aboratory&nbsp;for<br>  <b>L</b>aboratory&nbsp;for<br>
 <b>I</b>nstructional<br>  <b>I</b>nstructional<br>
 <b>T</b>echnology&nbsp;in<br>  <b>T</b>echnology&nbsp;in<br>
 <b>E</b>ducation</td><td>  <b>E</b>ducation</td><td>
 <img src="$iconpath/liteani.gif"></font></td></tr></table></td></tr></table>  <img src="$iconpath/liteani.gif"></font></td></tr></table>
 </body>  </body>
 </html>  </html>
 ENDDOCUMENT  ENDDOCUMENT

Removed from v.1.7  
changed lines
  Added in v.1.11


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>