![]() ![]() | ![]() |
Prefix " " and "0" to hours, mins, and secs
<html> <!-- The LearningOnline Network with CAPA Remote Control // // $Id: menu.html,v 1.56 2002/05/24 20:43:12 www Exp $ // // 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/ // 6/12/00,6/13,6/14,6/15 Gerd Kortemeyer Sept Ben Tyszka 10/2,10/3,10/4,10/17,10/19,3/1/1 Gerd Kortemeyer Jan Guy Albertelli 5/1/1 Gerd Kortemeyer 2/19 Guy Albertelli 3/21 Gerd Kortemeyer 4/30 Ben Tyszka 5/2 Scott Harrison 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 8/24 Gerd Kortemeyer YEAR=2002 March 2002 Matthew Hall 3/19 Gerd Kortemeyer 5/6/02 Matthew Hall --> <head> <title>LON-CAPA Remote</title> </head> <body bgcolor="#BBBBBB" background="remotebg.gif" onUnload="logout();" > <script type="text/javascript"> <!-- var statustop = ''; var statusbot = ''; var active = 0; var dislocked = 1; var imgpath='/res/adm/pages/'; var currentURL=''; var currentStale=1; var menucltim; var clock=new Date(); // not used (yet) // var w_Annotator; // var w_bmquery; // var w_BookmarkPal; // var w_LONcatInfo; ////////////////////////////////////// var w_Annotator_flag=-1; var w_bmquery_flag=-1; var w_BookmarkPal_flag=-1; var w_LONcatInfo_flag=-1; // 1 means currently open // 0 means closed (but has been open) // -1 means never yet opened/defined /////////////////////////////////////// var hr = new Array; var db = 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]=''; db[index]=''; dt[index]=''; } } var clienthost=window.location.host; var clientwindow=opener; function advanceclock() { clock.setTime(clock.getTime()+1000); var secs=""+clock.getSeconds(); if (secs.length<2) { secs="0"+secs; } var mins=""+clock.getMinutes(); if (mins.length<2) { mins="0"+secs; } var hours=""+clock.getHours(); if (hours.length<2) { hours=" "+hours; } statusbot=hours+':'+mins+':'+secs; if (!dislocked) { display(); } setTimeout('advanceclock();',1000); } function windowcheck() { if (clientwindow==null || clientwindow.closed) { 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.menuwindow=self; } function logout () { windowcheck(); if (w_Annotator_flag!=-1 && annotator && !annotator.closed) { annotator.close(); } if (w_bmquery_flag!=-1 && bmquery && !bmquery.closed) { bmquery.close(); } if (w_BookmarkPal_flag!=-1 && bookmarkpal && !bookmarkpal.closed) { bookmarkpal.close(); } if (w_LONcatInfo_flag!=-1 && loncatinfo && !loncatinfo.closed) { loncatinfo.close(); } clientwindow.window.location.href="http://"+clienthost+"/adm/logout"; } function activate () { opener.menuloaded=1; setTimeout('active=1;',2000); advanceclock(); } function deactivate () { active=0; } function display(utext,ltext) { var i; var ch; this.window.focus(); dislocked=1; if (utext == null) { utext = '';} if (ltext == null) { ltext = '';} if (typeof(utext)!="string") { utext=''; } if (typeof(ltext)!="string") { ltext=''; } if ((utext=='') && (ltext=='')) { utext=statustop; ltext=statusbot; dislocked=0; } if (active) { for (i=0;i<=7;i++) { if (i<utext.length) { ch=utext.charAt(i); if (ch==' ') { ch='space'; } if (ch=='-') { ch='hyphen'; } if (ch==':') { ch='colon'; } if (ch=='/') { ch='slash'; } } else { ch='space'; } this.document['i'+i].src=imgpath+ch+'.gif'; } for (i=0;i<=7;i++) { if (i<ltext.length) { ch=ltext.charAt(i); if (ch==' ') { ch='space'; } if (ch=='-') { ch='hyphen'; } if (ch==':') { ch='colon'; } if (ch=='/') { ch='slash'; } } else { ch='space'; } this.document['j'+i].src=imgpath+ch+'.gif'; } } } function defdis() { this.window.focus(); display(); } function switchbutton(row,col,imgsrc,texttop,textbot,action) { var idx=10*row+col; this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc; hr[idx]=action; dt[idx]=texttop; db[idx]=textbot; } function clearbut(row,col) { var idx=10*row+col; this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif'; hr[idx]='javascript:defdis();'; dt[idx]=''; db[idx]=''; } function setstatus(tp,bt) { this.document['led'].src="ledblink.gif"; statustop=tp; statusbot=bt; defdis(); endsend(); } function is_editable_resource (url) { var Chunks = url.split('.'); var tmp = Chunks[Chunks.length-1]; if ((Chunks.length > 1) && (Math.floor(tmp) == tmp)) { return true; } return false; } function cstrgo(currenturl,defaulturl) { windowcheck(); var url; if ((currenturl == null) || (currenturl == '') || (! is_editable_resource(currenturl))) { url = defaulturl; } else { url = currenturl; var res_pattern = /^\/res\/[A-z0-p]+\//; if (res_pattern.test(url)) { // map /res/103/turtle to /priv/turtle url = url.replace(/^\/res\/[A-z0-9]+\//,'/priv/'); } else { url = defaulturl; } } this.document['led'].src="ledsend.gif"; if (url != '') { clientwindow.window.location.href="http://"+clienthost+url; } } function go(url) { windowcheck(); this.document['led'].src="ledsend.gif"; if (url!='' && url!= null) { currentURL = null; clientwindow.window.location.href="http://"+clienthost+url; } } function gopost(url,postdata) { windowcheck(); this.document['led'].src="ledsend.gif"; if (url!='') { this.document.server.action="http://"+clienthost+url; this.document.server.postdata.value=postdata; this.document.server.command.value=''; this.document.server.url.value=''; this.document.server.submit(); } } function gocmd(url,cmd) { windowcheck(); this.document['led'].src="ledsend.gif"; if (url!='') { this.document.server.action="http://"+clienthost+url; this.document.server.postdata.value=''; this.document.server.command.value=cmd; this.document.server.url.value=currentURL; this.document.server.submit(); } } function annotate() { w_Annotator_flag=1; annotator=window.open('','Annotator','width=365,height=265,scrollbars=0'); annotator.document.write( "<html><body onload='Javascript:document.goannotate.submit();'>" +"<form name='goannotate' target='Annotator' method='post' " +"action='/adm/annotations'>" +"<input type='hidden' name='urlnew' value='"+currentURL+"'>" +"</form></body></html>"); annotator.document.close(); } function set_bookmark() { go(''); if (currentStale) { clienttitle="Enter Title"; clienthref=currentURL; } else { clienttitle=clientwindow.document.title; clienthref=clientwindow.location.pathname; } w_bmquery_flag=1; bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0'); bmquery.document.write( "<html><body bgcolor='bbbbbb'><center><form method='post'" +" name='newlink' action='/adm/bookmarks' target='bmquery' " +">\n <table width=340 height=150 " +"bgcolor='ffffff' align=center><tr><td>Link Name:<br><input " +"type='text' name='title' size=45 value='"+clienttitle+"'>" +"<br>Address:<br><input type='text' name='address' size='45' " +"value='"+clienthref+"'><br><center><input type='submit' " +"value='Save'> <input type='button' value='Close (no save)' " +"onclick='javascript:window.close();'></center></td>" +"</tr></table></form></center></body></html>"); bmquery.document.close(); } function edit_bookmarks() { go(''); w_BookmarkPal_flag=1; bookmarkpal=window.open("http://"+clienthost+"/adm/bookmarks", "BookmarkPal", "width=400,height=505,scrollbars=0"); } function catalog_info() { go(''); w_LONcatInfo_flag=1; loncatinfo=window.open(clientwindow.window.location.href+'.meta',"LONcatInfo"); } // --> </script> <center> <table hspace="0" border="0" cellspacing="0" cellpadding="0"> <tr><td> <a href="javascript:defdis();" onMouseOver="defdis();" ><img border="0" width="80" height="50" src="title.gif"></a> </td><td> <img border="0" width="50" height="50" name="led" src="ledoff.gif"> </td></tr> </table> </center> <center> <a href="javascript:defdis();" onMouseOver="defdis();" ><img width="103" height="7" border="0" src="spacer.gif" /></a> </center> <center> <table hspace="1" border="0" cellspacing="0" cellpadding="1"> <tr><td bgcolor="#666666"> <table hspace="0" border="0" cellspacing="1" cellpadding="0"> <tr> <td><img name="i0" width="15" height="19" src="l.gif" /></td> <td><img name="i1" width="15" height="19" src="o.gif" /></td> <td><img name="i2" width="15" height="19" src="n.gif" /></td> <td><img name="i3" width="15" height="19" src="hyphen.gif"></td> <td><img name="i4" width="15" height="19" src="c.gif" /></td> <td><img name="i5" width="15" height="19" src="a.gif" /></td> <td><img name="i6" width="15" height="19" src="p.gif" /></td> <td><img name="i7" width="15" height="19" src="a.gif" /></td> </tr> <tr> <td><img name="j0" width="15" height="19" src="space.gif" /></td> <td><img name="j1" width="15" height="19" src="space.gif" /></td> <td><img name="j2" width="15" height="19" src="space.gif" /></td> <td><img name="j3" width="15" height="19" src="space.gif" /></td> <td><img name="j4" width="15" height="19" src="space.gif" /></td> <td><img name="j5" width="15" height="19" src="space.gif" /></td> <td><img name="j6" width="15" height="19" src="space.gif" /></td> <td><img name="j7" width="15" height="19" src="space.gif" /></td> </tr> </table> </td></tr> </table> </center <center> <a href="javascript:defdis();" onMouseOver="defdis();" ><img width="103" height="7" border="0" src="spacer.gif" /></a> </center> <center> <table hspace="0" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2"><a href="javascript:eval(hr[11]);" onMouseOver="display(dt[11],db[11]);"><img width="86" height="20" border="0" name="b11" src="dempty.gif" /></a></td> <td><a href="javascript:eval(hr[12]);" onMouseOver="display(dt[12],db[12]);"><img width="43" height="20" border="0" name="b12" src="empty.gif" /></a></td> </tr> <tr> <td rowspan="2"><a href="javascript:eval(hr[21]);" onMouseOver="display(dt[21],db[21]);"><img width="43" height="40" border="0" name="b21" src="qempty.gif" /></a></td> <td><a href="javascript:eval(hr[22]);" onMouseOver="display(dt[22],db[22]);"><img width="43" height="20" border="0" name="b22" src="empty.gif" /></a></td> <td rowspan="2"><a href="javascript:eval(hr[23]);" onMouseOver="display(dt[23],db[23]);"><img width="43" height="40" border="0" name="b23" src="qempty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[31]);" onMouseOver="display(dt[31],db[31]);"><img width="43" height="20" border="0" name="b31" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[41]);" onMouseOver="display(dt[41],db[41]);"><img width="43" height="20" border="0" name="b41" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[42]);" onMouseOver="display(dt[42],db[42]);"><img width="43" height="20" border="0" name="b42" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[43]);" onMouseOver="display(dt[43],db[43]);"><img width="43" height="20" border="0" name="b43" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[51]);" onMouseOver="display(dt[51],db[51]);"><img width="43" height="20" border="0" name="b51" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[52]);" onMouseOver="display(dt[52],db[52]);"><img width="43" height="20" border="0" name="b52" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[53]);" onMouseOver="display(dt[53],db[53]);"><img width="43" height="20" border="0" name="b53" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[61]);" onMouseOver="display(dt[61],db[61]);"><img width="43" height="20" border="0" name="b61" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[62]);" onMouseOver="display(dt[62],db[62]);"><img width="43" height="20" border="0" name="b62" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[63]);" onMouseOver="display(dt[63],db[63]);"><img width="43" height="20" border="0" name="b63" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[71]);" onMouseOver="display(dt[71],db[71]);"><img width="43" height="20" border="0" name="b71" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[72]);" onMouseOver="display(dt[72],db[72]);"><img width="43" height="20" border="0" name="b72" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[73]);" onMouseOver="display(dt[73],db[73]);"><img width="43" height="20" border="0" name="b73" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[81]);" onMouseOver="display(dt[81],db[81]);"><img width="43" height="20" border="0" name="b81" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[82]);" onMouseOver="display(dt[82],db[82]);"><img width="43" height="20" border="0" name="b82" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[83]);" onMouseOver="display(dt[83],db[83]);"><img width="43" height="20" border="0" name="b83" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[91]);" onMouseOver="display(dt[91],db[91]);"><img width="43" height="20" border="0" name="b91" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[92]);" onMouseOver="display(dt[92],db[92]);"><img width="43" height="20" border="0" name="b92" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[93]);" onMouseOver="display(dt[93],db[93]);"><img width="43" height="20" border="0" name="b93" src="empty.gif" /></a></td> </tr> <tr> <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img width="43" height="20" border="0" name="b101" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img width="43" height="20" border="0" name="b102" src="empty.gif" /></a></td> <td><a href="javascript:eval(hr[103]);" onMouseOver="display(dt[103],db[103]);"><img width="43" height="20" border="0" name="b103" src="empty.gif" /></a></td> </tr> </table> </center> <center> <a href="javascript:defdis();" onMouseOver="defdis();" ><img width="103" height="7" border="0" src="spacer.gif" /></a> </center> <form name="server" action="/adm/logout" method="post" target="loncapaclient"> <input type="hidden" name="postdata" value="none" /> <input type="hidden" name="command" value="none" /> <input type="hidden" name="url" value="none" /> </form> <script> activate(); </script> </body> </html>