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

version 1.23, 2002/12/26 15:38:54 version 1.24, 2003/02/04 20:33:19
Line 40  function getrfilename() { Line 40  function getrfilename() {
    }     }
 }  }
   
 function getdelfilename() {  function getactionfilename() {
   document.del.filename.value=parent.LONCAPAToBePublished.location.href;    document.fileaction.filename.value=parent.LONCAPAToBePublished.location.href;
   document.del.submit();    var test=document.fileaction.action.selectedIndex;
 }    if (test == 4) { // trying to create a directory
         if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
 function getrenamefilename() {            document.fileaction.filename.value=document.dpublisher.filename.value;
   document.rename.filename.value=parent.LONCAPAToBePublished.location.href;        }
   document.rename.submit();        if ((document.fileaction.filename.value.charAt(
 }             document.fileaction.filename.value.length-1)!='/') &&
              (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {
 function getcpfilename() {            alert('Must create new subdirectory inside a directory');
   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;            return;
   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();  
    }     }
      document.fileaction.submit();
 }  }
   
 function getpostdata() {  function getpostdata() {
Line 74  function getpostdata() { Line 62  function getpostdata() {
   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="">   </tr>
 <input type="file" name="upfile" size="10">   <tr valign="middle">
 <input type="button" value="Upload file"  onClick="getufilename();">    <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
 </td></form>      <td bgcolor="#ccddaa" align="center">
 <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished"        <input type="hidden" name="filename" value="" />
 method="post" onSubmit="getpostdata();">        <input type="button" value="Retrieve Old Version" onClick="getrfilename();" />
 <td rowspan=2 bgcolor="#ccddaa">      </td>
 <input type="hidden" name="postdata" value="">    </form>
 <input type="button" value="Printout" onClick="getpostdata();">    <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
 </td>      <td bgcolor="#ccddaa" align="center">
 </form>        <input type="hidden" name="postdata" value="" />
 </tr>        <input type="button" value="Print" onClick="getpostdata();" />
       </td>
 <tr valign="middle">    </form>
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">    <form name="fileaction" action="/adm/cfile" target="_parent" method="post">
 <td bgcolor="#ccddaa">      <td bgcolor="#ccddaa" align="center">
 <input type="hidden" name="filename" value="">        <nobr>
 <input type="button" value="Retrieve Old Version" onClick="getrfilename();">   <input type="hidden" name="filename" value="" />
 </td></form>    <select name="action">
 <form name="del" action="/adm/cfile" target="_parent" method="post">      <option>Select Action</option>
 <td bgcolor="#ccddaa">      <option value="newfile">New file:</option>
 <input type="hidden" name="filename" value="">      <option value="newhtmlfile">New HTML file:</option>
 <input type="hidden" name="action" value="delete">      <option value="newproblemfile">New problem:</option>
 <input type="button" value="Delete" onClick="getdelfilename();">      <option value="newsubdir">New subdirectory:</option>
 </td></form>      <option value="rename">Rename current file to:</option>
 <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">      <option value="copy">Copy current file to:</option>
 <td bgcolor="#ccddaa">    </select>&nbsp;<input type="text" name="filename" value="Type Name Here" onFocus="if (this.value == 'Type Name Here') this.value=''" />&nbsp;<input type="button" value="Go" onClick="getactionfilename();" />
 <input type="hidden" name="filename" value="">        </nobr>
 <input type="hidden" name="action" value="rename">      </td>
 <input type="text" size=10 name="newfilename" value="">    </form>
 <input type="button" value="Rename" onClick="getrenamefilename();">   </td>
 </td></form>   </form>
 <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">   </tr>
 <td bgcolor="#ccddaa">        </table>
 <input type="hidden" name="filename" value="">      </th>
 <input type="hidden" name="action" value="newdir">    </tr>
 <input type="text" size=10 name="newfilename" value="">   </table>
 <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">        </font>
 </td></form>      </body>
 </tr>    </html>
 </table>  
 </th></tr></table>  
 </font>  
 </body>  
 </html>  
   
   
   
   

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


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