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

version 1.23, 2002/12/26 15:38:54 version 1.28, 2003/05/29 21:44:53
Line 15  function getfilename() { Line 15  function getfilename() {
 }  }
   
 function getdfilename() {  function getdfilename() {
   document.dpublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.dpublisher.filename.value=unescape(parent.LONCAPAToBePublished.location.href);
   if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {    if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
       document.dpublisher.submit();        document.dpublisher.submit();
   }    }
Line 40  function getrfilename() { Line 40  function getrfilename() {
    }     }
 }  }
   
   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() {  function getdelfilename() {
   document.del.filename.value=parent.LONCAPAToBePublished.location.href;    document.del.filename.value=parent.LONCAPAToBePublished.location.href;
   document.del.submit();    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() {  function getpostdata() {
   document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;    document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;
   document.printout.submit();    document.printout.submit();
 }  }
 </script>  </script>
 </head>      </head>
 <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>      <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
 <font size="-2">        <font size="-2">
 <table border=0><tr><th bgcolor="#004400" height=20>   <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
 <table border=0><tr valign="middle">        <table border="0" cellspacing="4"><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">      <td bgcolor="#ccddaa" align="center">
 <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();" />
 </td></form>      </td>
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">    </form>
 <td bgcolor="#ccddaa">    <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" onClick="getdfilename();">        <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="#ccddaa">    </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" onClick="getcpfilename();">        <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">      </td>
 <td bgcolor="#ccddaa" valign="top">    </form>
 <input type="hidden" name="filename" value="">    <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
 <input type="file" name="upfile" size="10">      <td rowspan="2" bgcolor="#ccddaa" align="center">
 <input type="button" value="Upload file"  onClick="getufilename();">        <input type="hidden" name="postdata" value="" />
 </td></form>        <input type="button" value="Print" onClick="getpostdata();" />
 <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished"      </td>
 method="post" onSubmit="getpostdata();">    </form>
 <td rowspan=2 bgcolor="#ccddaa">  
 <input type="hidden" name="postdata" value="">   </tr>
 <input type="button" value="Printout" onClick="getpostdata();">   <tr valign="middle">
 </td>    <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
 </form>      <td bgcolor="#ccddaa" align="center">
 </tr>        <input type="hidden" name="filename" value="" />
         <input type="button" value="Retrieve Old Version" onClick="getrfilename();" />
 <tr valign="middle">      </td>
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">    </form>
 <td bgcolor="#ccddaa">    <form name="del" action="/adm/cfile" target="_parent" method="post">
 <input type="hidden" name="filename" value="">      <td bgcolor="#ccddaa">
 <input type="button" value="Retrieve Old Version" onClick="getrfilename();">        <input type="hidden" name="filename" value="" />
 </td></form>        <input type="hidden" name="action" value="delete" />
 <form name="del" action="/adm/cfile" target="_parent" method="post">                <input type="button" value="Delete" onClick="getdelfilename();" />
 <td bgcolor="#ccddaa">      </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" onSubmit="getactionfilename();">
 <input type="button" value="Delete" onClick="getdelfilename();">      <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="#ccddaa">    <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" onClick="getrenamefilename();">      <option value="newproblemfile">New problem:</option>
 </td></form>                              <option value="newpagefile">New assembled page:</option>
 <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">                              <option value="newsequencefile">New assembled sequence:</option>
 <td bgcolor="#ccddaa">      <option value="newdir">New subdirectory:</option>
 <input type="hidden" name="filename" value="">      <option value="rename">Rename current file to:</option>
 <input type="hidden" name="action" value="newdir">      <option value="copy">Copy current file to:</option>
 <input type="text" size=10 name="newfilename" value="">    </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();" />
 <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">        </nobr>
 </td></form>      </td>
 </tr>    </form>
 </table>   </td>
 </th></tr></table>   </form>
 </font>   </tr>
 </body>        </table>
 </html>      </th>
     </tr>
    </table>
         </font>
       </body>
     </html>

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


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