Diff for /loncom/html/res/adm/pages/menu.html between versions 1.41 and 1.45

version 1.41, 2002/02/13 15:14:29 version 1.45, 2002/03/19 20:30:07
Line 41  Jan Guy Albertelli Line 41  Jan Guy Albertelli
 5/4,5/9,5/28,5/30,6/1,6/2,6/3,6/8,6/15,6/16 Gerd Kortemeyer  5/4,5/9,5/28,5/30,6/1,6/2,6/3,6/8,6/15,6/16 Gerd Kortemeyer
 7/24,8/6 Scott Harrison  7/24,8/6 Scott Harrison
 8/24 Gerd Kortemeyer  8/24 Gerd Kortemeyer
   YEAR=2002
   March 2002 Matthew Hall
   3/19 Gerd Kortemeyer
 -->  -->
 <head>  <head>
 <title>LON-CAPA Remote</title>  <title>LON-CAPA Remote</title>
Line 53  Jan Guy Albertelli Line 56  Jan Guy Albertelli
   
 <script type="text/javascript">  <script type="text/javascript">
 <!--  <!--
 statustop='';  var statustop = '';
 statusbot='';  var statusbot = '';
 active=0;  var active = 0;
   
 imgpath='/res/adm/pages/';  var imgpath='/res/adm/pages/';
   
 var currentURL='';  var currentURL='';
 var currentStale=1;  var currentStale=1;
Line 79  var w_LONcatInfo_flag=-1; Line 82  var w_LONcatInfo_flag=-1;
  // -1 means never yet opened/defined   // -1 means never yet opened/defined
 ///////////////////////////////////////  ///////////////////////////////////////
   
 hr=new Array;  var hr = new Array;
 db=new Array;  var db = new Array;
 dt=new Array;  var dt = new Array;
   
   for (var i=1;i<=3;i++) {
      for (var j=1;j<=10;j++) {
         var index = 10*j+i;
         hr[index]=null;
         db[index]=null;
         dt[index]=null;
      }
   }
   
 clienthost=window.location.host;  var clienthost=window.location.host;
 clientwindow=opener;  var clientwindow=opener;
   
 function windowcheck() {  function windowcheck() {
    if (clientwindow.closed) {     if (clientwindow==null || clientwindow.closed) {
       clientwindow=window.open("http://"+clienthost+"/");         clientwindow=window.open("http://"+clienthost+"/",'',
         "height=400,width=440,"+
         "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+
         "left=190,top=15,screenX=190,screenY=15"); 
    }     }
    clientwindow.name='loncapaclient';     clientwindow.name='loncapaclient';
      clientwindow.menuwindow=self;
 }  }
   
 function logout () {  function logout () {
Line 357  function catalog_info() { Line 373  function catalog_info() {
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img border="0" name="b101" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img border="0" name="b101" src="empty.gif"></img></a></td>
 <td colspan="2"><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img border="0" name="b102" src="dempty.gif"></img></a></td>  <td><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img border="0" name="b102" src="empty.gif"></img></a></td>
   <td><a href="javascript:eval(hr[103]);" onMouseOver="display(dt[103],db[103]);"><img border="0" name="b103" src="empty.gif"></img></a></td>
 </tr>  </tr>
   
 </table>  </table>
Line 378  activate(); Line 395  activate();
 </script>  </script>
 </body>  </body>
 </html>  </html>
   
   
   
   
   
   
   

Removed from v.1.41  
changed lines
  Added in v.1.45


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