Diff for /loncom/publisher/publisher.html between versions 1.18 and 1.24

version 1.18, 2002/03/20 22:28:33 version 1.24, 2003/02/04 20:33:19
Line 40  function getrfilename() { Line 40  function getrfilename() {
    }     }
 }  }
   
 function getdelfilename() {  function getactionfilename() {
   document.del.filename.value=parent.LONCAPAToBePublished.location.href;    document.fileaction.filename.value=parent.LONCAPAToBePublished.location.href;
   document.del.submit();    var test=document.fileaction.action.selectedIndex;
 }    if (test == 4) { // trying to create a directory
         if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
 function getrenamefilename() {            document.fileaction.filename.value=document.dpublisher.filename.value;
   document.rename.filename.value=parent.LONCAPAToBePublished.location.href;        }
   document.rename.submit();        if ((document.fileaction.filename.value.charAt(
 }             document.fileaction.filename.value.length-1)!='/') &&
              (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {
 function getcpfilename() {            alert('Must create new subdirectory inside a directory');
   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;            return;
   document.cp.submit();        }
      }
      document.fileaction.submit();
 }  }
   
 function getnewdirfilename() {  function getpostdata() {
    document.newdir.filename.value=parent.LONCAPAToBePublished.location.href;    document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;
    if (document.newdir.filename.value.indexOf('/adm/pubdir')!=-1) {    document.printout.submit();
        document.newdir.filename.value=document.dpublisher.filename.value;  
    }  
    if ((document.newdir.filename.value.charAt(  
         document.newdir.filename.value.length-1)!='/') &&  
        (document.newdir.filename.value.indexOf('/adm/pubdir')==-1)) {  
       alert('Must create new subdirectory inside a directory');  
    } else {  
       document.newdir.submit();  
    }  
 }  }
 </script>  </script>
 </head>      </head>
 <body bgcolor="#99ff99">      <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
 <table border=0><tr><th bgcolor="#aaaaaa" height=20>        <font size="-2">
 <table border=0><tr valign="middle">   <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
 <form name="publisher" action="/adm/publish" target="_parent" method="post" onSubmit="getfilename();">        <table border="0" cellspacing="4"><tr valign="middle">
 <td bgcolor="#ccffcc">    <form name="publisher" action="/adm/publish" target="_parent" method="post">
 <input type="hidden" name="filename" value="">      <td bgcolor="#ccddaa" align="center">
 <input type="button" value="Publish this Resource">        <input type="hidden" name="filename" value="" />
 </td></form>                <input type="button" value="Publish this Resource" onClick="getfilename();" />
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished"       </td>
 method="post"  onSubmit="getdfilename();">    </form>
 <td bgcolor="#ccffcc">    <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
 <input type="hidden" name="filename" value="">      <td bgcolor="#ccddaa" align="center">
 <input type="button" value="List Directory">        <input type="hidden" name="filename" value="" />
 </td></form>        <input type="button" value="List Directory" onClick="getdfilename();" />
 <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">      </td>
 <td bgcolor="#ccffcc">    </form>
 <input type="hidden" name="filename" value="">    <form name="upublisher" action="/adm/upload" target="_parent"
 <input type="hidden" name="action" value="copy">   method="post" enctype="multipart/form-data">
 <input type="text" size=10 name="newfilename" value="">      <td bgcolor="#ccddaa" valign="top" align="center">
 <input type="button" value="Copy">        <input type="hidden" name="filename" value="" />
 </td></form>        <input type="file" name="upfile" size="20" />
 <form name="upublisher" action="/adm/upload" target="_parent"         <input type="button" value="Upload file"  onClick="getufilename();" />
 method="post" enctype="multipart/form-data"  onSubmit="getufilename();">      </td>
 <td bgcolor="#ccffcc" valign="top">    </form>
 <input type="hidden" name="filename" value="">   </tr>
 <input type="file" name="upfile" size="10">   <tr valign="middle">
 <input type="button" value="Upload file">    <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
 </td></form></tr>      <td bgcolor="#ccddaa" align="center">
         <input type="hidden" name="filename" value="" />
 <tr valign="middle">        <input type="button" value="Retrieve Old Version" onClick="getrfilename();" />
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post" onSubmit="getrfilename();">      </td>
 <td bgcolor="#ccffcc">    </form>
 <input type="hidden" name="filename" value="">    <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
 <input type="button" value="Retrieve Old Version">      <td bgcolor="#ccddaa" align="center">
 </td></form>        <input type="hidden" name="postdata" value="" />
 <form name="del" action="/adm/cfile" target="_parent" method="post" onSubmit="getdelfilename();">        <input type="button" value="Print" onClick="getpostdata();" />
 <td bgcolor="#ccffcc">      </td>
 <input type="hidden" name="filename" value="">    </form>
 <input type="hidden" name="action" value="delete">    <form name="fileaction" action="/adm/cfile" target="_parent" method="post">
 <input type="button" value="Delete">      <td bgcolor="#ccddaa" align="center">
 </td></form>        <nobr>
 <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">   <input type="hidden" name="filename" value="" />
 <td bgcolor="#ccffcc">    <select name="action">
 <input type="hidden" name="filename" value="">      <option>Select Action</option>
 <input type="hidden" name="action" value="rename">      <option value="newfile">New file:</option>
 <input type="text" size=10 name="newfilename" value="">      <option value="newhtmlfile">New HTML file:</option>
 <input type="button" value="Rename">      <option value="newproblemfile">New problem:</option>
 </td></form>      <option value="newsubdir">New subdirectory:</option>
 <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">      <option value="rename">Rename current file to:</option>
 <td bgcolor="#ccffcc">      <option value="copy">Copy current file to:</option>
 <input type="hidden" name="filename" value="">    </select>&nbsp;<input type="text" name="filename" value="Type Name Here" onFocus="if (this.value == 'Type Name Here') this.value=''" />&nbsp;<input type="button" value="Go" onClick="getactionfilename();" />
 <input type="hidden" name="action" value="newdir">        </nobr>
 <input type="text" size=10 name="newfilename" value="">      </td>
 <input type="button" value="New Subdirectory">    </form>
 </td></form>   </td>
 </tr>   </form>
 </table>   </tr>
 </th></tr></table>        </table>
       </th>
 </body>    </tr>
 </html>   </table>
         </font>
       </body>
     </html>
   

Removed from v.1.18  
changed lines
  Added in v.1.24


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