version 1.44, 2002/03/18 14:25:49
|
version 1.53, 2002/05/17 15:09:06
|
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 |
|
5/6/02 Matthew Hall |
|
|
|
// Note: use of style="background-image: url(remotebg.gif)" |
|
// in body tag causes trouble for NS4.x on multiple platforms. |
|
|
--> |
--> |
<head> |
<head> |
<title>LON-CAPA Remote</title> |
<title>LON-CAPA Remote</title> |
Line 48 Jan Guy Albertelli
|
Line 56 Jan Guy Albertelli
|
|
|
|
|
<body bgcolor="#BBBBBB" |
<body bgcolor="#BBBBBB" |
background="remotebg.gif"> |
background="remotebg.gif" |
|
onUnload="logout();" |
|
> |
|
<style type="text/css"> |
|
</style> |
<basefont size="1" /> |
<basefont size="1" /> |
|
|
<script type="text/javascript"> |
<script type="text/javascript"> |
Line 86 var dt = new Array;
|
Line 98 var dt = new Array;
|
for (var i=1;i<=3;i++) { |
for (var i=1;i<=3;i++) { |
for (var j=1;j<=10;j++) { |
for (var j=1;j<=10;j++) { |
var index = 10*j+i; |
var index = 10*j+i; |
hr[index]=null; |
hr[index]=''; |
db[index]=null; |
db[index]=''; |
dt[index]=null; |
dt[index]=''; |
} |
} |
} |
} |
|
|
Line 96 var clienthost=window.location.host;
|
Line 108 var clienthost=window.location.host;
|
var 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 133 function deactivate () {
|
Line 149 function deactivate () {
|
function display(utext,ltext) { |
function display(utext,ltext) { |
var i; var ch; |
var i; var ch; |
this.window.focus(); |
this.window.focus(); |
if (typeof(utext)=="undefined") { utext=''; } |
if (utext == null) { utext = '';} |
if (typeof(ltext)=="undefined") { ltext=''; } |
if (ltext == null) { ltext = '';} |
|
if (typeof(utext)!="string") { utext=''; } |
|
if (typeof(ltext)!="string") { ltext=''; } |
if ((utext=='') && (ltext=='')) { |
if ((utext=='') && (ltext=='')) { |
utext=statustop; |
utext=statustop; |
ltext=statusbot; |
ltext=statusbot; |
Line 188 function setstatus(tp,bt) {
|
Line 206 function setstatus(tp,bt) {
|
endsend(); |
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) { |
function go(url) { |
windowcheck(); |
windowcheck(); |
this.document['led'].src="ledsend.gif"; |
this.document['led'].src="ledsend.gif"; |
if (url!='') { |
if (url!='' && url!= null) { |
|
currentURL = null; |
clientwindow.window.location.href="http://"+clienthost+url; |
clientwindow.window.location.href="http://"+clienthost+url; |
} |
} |
} |
} |