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

version 1.1, 2000/11/28 21:37:43 version 1.18, 2002/03/20 22:28:33
Line 5 Line 5
   
 function getfilename() {  function getfilename() {
    document.publisher.filename.value=parent.LONCAPAToBePublished.location.href;     document.publisher.filename.value=parent.LONCAPAToBePublished.location.href;
      if ((document.publisher.filename.value.charAt(
           document.publisher.filename.value.length-1)!='/') &&
          (document.publisher.filename.value.indexOf('/adm/pubdir')==-1)) {
           document.publisher.submit();
      } else {
         alert('Cannot publish directory');
      }
 }  }
   
   function getdfilename() {
     document.dpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
     if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
         document.dpublisher.submit();
     }
   }
   
   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() {
     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="#99ff99">
 <form name="publisher" action="/adm/publish" onSubmit="getfilename();">  <table border=0><tr><th bgcolor="#aaaaaa" height=20>
   <table border=0><tr valign="middle">
   <form name="publisher" action="/adm/publish" target="_parent" method="post" onSubmit="getfilename();">
   <td bgcolor="#ccffcc">
 <input type="hidden" name="filename" value="">  <input type="hidden" name="filename" value="">
 <input type="submit" value="Publish this Resource">  <input type="button" value="Publish this Resource">
 <input type="submit" value="Publish this Directory">  </td></form>
 <input type="submit" value="Publish Directory and all Subdirectories">  <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" 
 </form>  method="post"  onSubmit="getdfilename();">
   <td bgcolor="#ccffcc">
   <input type="hidden" name="filename" value="">
   <input type="button" value="List Directory">
   </td></form>
   <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">
   <td bgcolor="#ccffcc">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="copy">
   <input type="text" size=10 name="newfilename" value="">
   <input type="button" value="Copy">
   </td></form>
   <form name="upublisher" action="/adm/upload" target="_parent" 
   method="post" enctype="multipart/form-data"  onSubmit="getufilename();">
   <td bgcolor="#ccffcc" valign="top">
   <input type="hidden" name="filename" value="">
   <input type="file" name="upfile" size="10">
   <input type="button" value="Upload file">
   </td></form></tr>
   
   <tr valign="middle">
   <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post" onSubmit="getrfilename();">
   <td bgcolor="#ccffcc">
   <input type="hidden" name="filename" value="">
   <input type="button" value="Retrieve Old Version">
   </td></form>
   <form name="del" action="/adm/cfile" target="_parent" method="post" onSubmit="getdelfilename();">
   <td bgcolor="#ccffcc">
   <input type="hidden" name="filename" value="">
   <input type="hidden" name="action" value="delete">
   <input type="button" value="Delete">
   </td></form>
   <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">
   <td bgcolor="#ccffcc">
   <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">
   </td></form>
   <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">
   <td bgcolor="#ccffcc">
   <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">
   </td></form>
   </tr>
   </table>
   </th></tr></table>
   
 </body>  </body>
 </html>  
   
   </html>
   
   
   
   

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


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>
500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.