Diff for /loncom/publisher/publisher.html between versions 1.7 and 1.14

version 1.7, 2001/04/02 21:45:58 version 1.14, 2001/06/24 17:27:38
Line 21  function getdfilename() { Line 21  function getdfilename() {
   }    }
 }  }
   
   function getufilename() {
     document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;
     if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
         document.upublisher.filename.value=document.dpublisher.filename.value;
     }
     document.upublisher.submit();
   }
   
 function getrfilename() {  function getrfilename() {
   document.rpublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.rpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
      if ((document.rpublisher.filename.value.charAt(
           document.rpublisher.filename.value.length-1)!='/') &&
          (document.rpublisher.filename.value.indexOf('/adm/pubdir')==-1)) {
           document.rpublisher.submit();
      } else {
         alert('Cannot retrieve directory');
      }
   }
   
   function getdelfilename() {
     document.del.filename.value=parent.LONCAPAToBePublished.location.href;
     document.del.submit();
   }
   
   function getrenamefilename() {
     document.rename.filename.value=parent.LONCAPAToBePublished.location.href;
     document.rename.submit();
   }
   
   function getcpfilename() {
     document.cp.filename.value=parent.LONCAPAToBePublished.location.href;
     document.cp.submit();
   }
   
   function getnewdirfilename() {
      document.newdir.filename.value=parent.LONCAPAToBePublished.location.href;
      if (document.newdir.filename.value.indexOf('/adm/pubdir')!=-1) {
          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="#FFFFFF">  <body bgcolor="#FFFFFF">
 <table><tr><td>  <table border=2><tr><td>
 <form name="publisher" action="/adm/publish" target="_parent" method="post">  <form name="publisher" action="/adm/publish" target="_parent" method="post">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="button" value="Publish this Resource" onClick="getfilename();">  <input type="button" value="Publish this Resource" onClick="getfilename();">
 </form></td><td>  </form>
   </td><td>
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished"   <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" 
 method="post">  method="post">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="button" value="List Directory" onClick="getdfilename();">  <input type="button" value="List Directory" onClick="getdfilename();">
 </form></td><td>  </form></td><td>
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post"  <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
  onSubmit="getrfilename();">  <input type="hidden" name="filename" value="">
   <input type="button" value="Retrieve Old Version" onClick="getrfilename();">
   </form></td><td>
   <form name="upublisher" action="/adm/upload" target="_parent" 
   method="post" enctype="multipart/form-data">
   <input type="hidden" name="filename" value="">
   <input type="file" name="upfile" size="10">
   <input type="button" value="Upload file" onClick="getufilename();">
   </form>
   </td></tr>
   <tr>
   <td>
   <form name="del" action="/adm/cfile" target="_parent" method="post">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="delete">
   <input type="button" value="Delete" onClick="getdelfilename();">
   </form></td><td>
   <form name="cp" action="/adm/cfile" target="_parent" method="post">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="copy">
   <input type="text" size=15 name="newfilename" value="">
   <input type="button" value="Copy" onClick="getcpfilename();">
   </form></td><td>
   <form name="rename" action="/adm/cfile" target="_parent" method="post">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="submit" value="Retrieve Old Version">  <input type="hidden" name="action" value="rename">
   <input type="text" size=15 name="newfilename" value="">
   <input type="button" value="Rename" onClick="getrenamefilename();">
 </form></td><td>  </form></td><td>
 <b>LON-CAPA Construction Space</b>  <form name="newdir" action="/adm/cfile" target="_parent" method="post">
 </td></tr></table>  <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="newdir">
   <input type="text" size=15 name="newfilename" value="">
   <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">
   </form></td>
   </tr>
   </table>
 </body>  </body>
 </html>  
   
   </html>
   

Removed from v.1.7  
changed lines
  Added in v.1.14


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