Diff for /loncom/publisher/publisher.html between versions 1.9 and 1.23

version 1.9, 2001/04/09 18:22:07 version 1.23, 2002/12/26 15:38:54
Line 23  function getdfilename() { Line 23  function getdfilename() {
   
 function getufilename() {  function getufilename() {
   document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;
   if (document.upublisher.filename.value.indexOf('/adm/pubdir')==-1) {    if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
       document.upublisher.submit();        document.upublisher.filename.value=document.dpublisher.filename.value;
   }    }
     document.upublisher.submit();
 }  }
   
 function getrfilename() {  function getrfilename() {
Line 39  function getrfilename() { Line 40  function getrfilename() {
    }     }
 }  }
   
   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();
      }
   }
   
   function getpostdata() {
     document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;
     document.printout.submit();
   }
 </script>  </script>
 </head>  </head>
 <body bgcolor="#FFFFFF">  <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
 <table border=2><tr><td>  <font size="-2">
   <table border=0><tr><th bgcolor="#004400" height=20>
   <table border=0><tr valign="middle">
 <form name="publisher" action="/adm/publish" target="_parent" method="post">  <form name="publisher" action="/adm/publish" target="_parent" method="post">
   <td bgcolor="#ccddaa">
 <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>  </td></form>
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished"   <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
 method="post">  <td bgcolor="#ccddaa">
 <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>  </td></form>
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">  <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">
   <td bgcolor="#ccddaa">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="button" value="Retrieve Old Version" onClick="getrfilename();">  <input type="hidden" name="action" value="copy">
 </form></td><td>  <input type="text" size=10 name="newfilename" value="">
   <input type="button" value="Copy" onClick="getcpfilename();">
   </td></form>
 <form name="upublisher" action="/adm/upload" target="_parent"   <form name="upublisher" action="/adm/upload" target="_parent" 
 method="post" enctype="multipart/form-data">  method="post" enctype="multipart/form-data">
   <td bgcolor="#ccddaa" valign="top">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="file" size="20">  <input type="file" name="upfile" size="10">
 <input type="button" value="Upload file" onClick="getufilename();">  <input type="button" value="Upload file"  onClick="getufilename();">
   </td></form>
   <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished"
   method="post" onSubmit="getpostdata();">
   <td rowspan=2 bgcolor="#ccddaa">
   <input type="hidden" name="postdata" value="">
   <input type="button" value="Printout" onClick="getpostdata();">
   </td>
 </form>  </form>
 </td></tr></table>  </tr>
   
   <tr valign="middle">
   <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
   <td bgcolor="#ccddaa">
   <input type="hidden" name="filename" value="">
   <input type="button" value="Retrieve Old Version" onClick="getrfilename();">
   </td></form>
   <form name="del" action="/adm/cfile" target="_parent" method="post">
   <td bgcolor="#ccddaa">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="delete">
   <input type="button" value="Delete" onClick="getdelfilename();">
   </td></form>
   <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">
   <td bgcolor="#ccddaa">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="rename">
   <input type="text" size=10 name="newfilename" value="">
   <input type="button" value="Rename" onClick="getrenamefilename();">
   </td></form>
   <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">
   <td bgcolor="#ccddaa">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="newdir">
   <input type="text" size=10 name="newfilename" value="">
   <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">
   </td></form>
   </tr>
   </table>
   </th></tr></table>
   </font>
 </body>  </body>
 </html>  
   
   </html>
   
   
   
   

Removed from v.1.9  
changed lines
  Added in v.1.23


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