Diff for /loncom/publisher/publisher.html between versions 1.3 and 1.27

version 1.3, 2000/12/23 15:53:26 version 1.27, 2003/03/08 01:41:54
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 getactionfilename() {
     document.fileaction.filename.value=parent.LONCAPAToBePublished.location.href;
     var test=document.fileaction.action.selectedIndex;
     if (test == 4) { // trying to create a directory
         if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
             document.fileaction.filename.value=document.dpublisher.filename.value;
         }
         if ((document.fileaction.filename.value.charAt(
              document.fileaction.filename.value.length-1)!='/') &&
              (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {
             alert('Must create new subdirectory inside a directory');
             return;
         }
      }
      document.fileaction.submit();
   }
   
   function getdelfilename() {
     document.del.filename.value=parent.LONCAPAToBePublished.location.href;
     document.del.submit();
   }
   
   function getpostdata() {
     document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;
     document.printout.submit();
   }
 </script>  </script>
 </head>  
 <body bgcolor="#FFFFFF">  
 <form name="publisher" action="/adm/publish" target="_parent" method="post"  
  onSubmit="getfilename();">  
 <input type="hidden" name="filename" value="">  
 <input type="submit" value="Publish this Resource">  
 <input type="submit" name="pubdir" value="Publish this Directory">  
 &nbsp;&nbsp;<b>LON-CAPA Construction Space</b>  
 </form>  
 </body>  
 </html>  
   
       </head>
       <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
         <font size="-2">
    <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
         <table border="0" cellspacing="4"><tr valign="middle">
     <form name="publisher" action="/adm/publish" target="_parent" method="post">
       <td bgcolor="#ccddaa" align="center">
         <input type="hidden" name="filename" value="" />
                 <input type="button" value="Publish this Resource" onClick="getfilename();" />
       </td>
     </form>
     <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
       <td bgcolor="#ccddaa" align="center">
         <input type="hidden" name="filename" value="" />
         <input type="button" value="List Directory" onClick="getdfilename();" />
       </td>
     </form>
     <form name="upublisher" action="/adm/upload" target="_parent"
    method="post" enctype="multipart/form-data">
       <td bgcolor="#ccddaa" valign="top" align="center">
         <input type="hidden" name="filename" value="" />
         <input type="file" name="upfile" size="20" />
         <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" align="center">
         <input type="hidden" name="postdata" value="" />
         <input type="button" value="Print" onClick="getpostdata();" />
       </td>
     </form>
   
    </tr>
    <tr valign="middle">
     <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
       <td bgcolor="#ccddaa" align="center">
         <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="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">
       <td bgcolor="#ccddaa" align="center">
         <nobr>
    <input type="hidden" name="filename" value="" />
     <select name="action">
       <option>Select Action</option>
       <option value="newfile">New file:</option>
       <option value="newhtmlfile">New HTML file:</option>
       <option value="newproblemfile">New problem:</option>
                               <option value="newpagefile">New assembled page:</option>
                               <option value="newsequencefile">New assembled sequence:</option>
       <option value="newdir">New subdirectory:</option>
       <option value="rename">Rename current file to:</option>
       <option value="copy">Copy current file to:</option>
     </select>&nbsp;<input type="text" name="newfilename" value="Type Name Here" onFocus="if (this.value == 'Type Name Here') this.value=''" />&nbsp;<input type="button" value="Go" onClick="getactionfilename();" />
         </nobr>
       </td>
     </form>
    </td>
    </form>
    </tr>
         </table>
       </th>
     </tr>
    </table>
         </font>
       </body>
     </html>

Removed from v.1.3  
changed lines
  Added in v.1.27


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