Diff for /rat/client/ratcode.js between versions 1.12 and 1.13

version 1.12, 2010/08/24 09:11:43 version 1.13, 2011/11/21 14:29:06
Line 1403  function draw () { Line 1403  function draw () {
 function infoclear() {  function infoclear() {
  if (notclear!=1) {   if (notclear!=1) {
   infcheck();    infcheck();
   inf.document.clear();    inf.document.open();
   inf.document.writeln    inf.document.writeln
    ('<html><body bgcolor="#FFFFFF"><table><tr><td>'+     ('<html><body bgcolor="#FFFFFF"><table><tr><td>'+
     '<img src="/adm/lonIcons/lonlogos.gif" /></td>');      '<img src="/adm/lonIcons/lonlogos.gif" /></td>');
Line 1468  function info(infostr) { Line 1468  function info(infostr) {
  if ((editmode!=1) && (infostr!=lastinfo)) {   if ((editmode!=1) && (infostr!=lastinfo)) {
   notclear=1;    notclear=1;
   infcheck();    infcheck();
   inf.document.clear();    inf.document.open();
   inf.document.writeln(    inf.document.writeln(
    '<html><body bgcolor="#FFFFFF">'+     '<html><body bgcolor="#FFFFFF">'+
    '<table><tr><td width="32"><img src="'+raticons+'info.gif" /></td><td bgcolor="#AAFFAA">');     '<table><tr><td width="32"><img src="'+raticons+'info.gif" /></td><td bgcolor="#AAFFAA">');
Line 1622  function insertcondlink(cid,lnr) { Line 1622  function insertcondlink(cid,lnr) {
   
 // ------------------------------------------------------ Clears indexer window  // ------------------------------------------------------ Clears indexer window
 function idxclear() {  function idxclear() {
   idx.document.clear();    idx.document.open();
     idx.document.close();
 }  }
   
 // --------------------------------------------------------- Clears copy window  // --------------------------------------------------------- Clears copy window
 function copydxclear() {  function copydxclear() {
   copydx.document.clear();    copydx.document.open();
     copydx.document.close();
 }  }
 // ------------------------------------------------------- Clears search window  // ------------------------------------------------------- Clears search window
 function srchclear() {  function srchclear() {
   srch.document.clear();    srch.document.open();
     srch.document.close();
 }  }
   
 // --------------------------------------------------------- Clears parm window  // --------------------------------------------------------- Clears parm window
 function parmclear() {  function parmclear() {
   parm.document.clear();    parm.document.open();
     parm.document.close();
 }  }
   
 // ------------------------------------------------------ Closes indexer window  // ------------------------------------------------------ Closes indexer window
Line 1716  function copydxopen(mode) { Line 1720  function copydxopen(mode) {
    copydxmode=mode;     copydxmode=mode;
    copydxflag=1;     copydxflag=1;
    copydx=open("",'copydxout',options);     copydx=open("",'copydxout',options);
    copydx.document.clear('');     copydx.document.open('');
    copydx.document.writeln(     copydx.document.writeln(
  '<html><body bgcolor="#FFFFFF"><h1>Copy from Map</h1>'+   '<html><body bgcolor="#FFFFFF"><h1>Copy from Map</h1>'+
  '<form name="mapload"><input type="text" size="40" name="importmap">'+   '<form name="mapload"><input type="text" size="40" name="importmap">'+
Line 1774  function handler(infostr) { Line 1778  function handler(infostr) {
   editmode=1;    editmode=1;
   notclear=1;    notclear=1;
   infcheck();    infcheck();
   inf.document.clear();    inf.document.open();
   inf.document.writeln(    inf.document.writeln(
    '<html><body bgcolor="#FFFFFF">'+     '<html><body bgcolor="#FFFFFF">'+
    '<table><tr><td width="32"><img src="'+raticons+'edit.gif" /></td><td bgcolor="#AAFFAA">');     '<table><tr><td width="32"><img src="'+raticons+'edit.gif" /></td><td bgcolor="#AAFFAA">');
Line 1946  function empty(rid,k) { Line 1950  function empty(rid,k) {
   notclear=1;    notclear=1;
   linkmode=0;    linkmode=0;
   infcheck();    infcheck();
   inf.document.clear();    inf.document.open();
   inf.document.writeln(    inf.document.writeln(
    '<html><body bgcolor="#FFFFFF">'+     '<html><body bgcolor="#FFFFFF">'+
    '<table><tr><td width="32"><img src="'+raticons+'edit.gif" /></td><td bgcolor="#AAFFAA">'+     '<table><tr><td width="32"><img src="'+raticons+'edit.gif" /></td><td bgcolor="#AAFFAA">'+

Removed from v.1.12  
changed lines
  Added in v.1.13


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