Diff for /loncom/publisher/publisher.html between versions 1.15 and 1.37

version 1.15, 2001/07/08 18:37:11 version 1.37, 2004/04/07 18:02:47
Line 1 Line 1
 <html>  <html>
 <head>  <head>
 <title>LON-CAPA Publishing Frame</title>  <title>LON-CAPA Publishing Frame</title>
 <script>  <script language="JavaScript">
   
   function frameloc() {
       if (parent.LONCAPAToBePublished.location.pathname.indexOf("/~")!=-1) {
          parent.lastknownpriv=parent.LONCAPAToBePublished.location.pathname;
       }
   // alert ('We are at '+parent.lastknownpriv);
       return unescape(parent.lastknownpriv);
   }
   
 function getfilename() {  function getfilename() {
    document.publisher.filename.value=parent.LONCAPAToBePublished.location.href;     document.publisher.filename.value=frameloc();
    if ((document.publisher.filename.value.charAt(     if ((document.publisher.filename.value.charAt(
         document.publisher.filename.value.length-1)!='/') &&          document.publisher.filename.value.length-1)!='/') &&
        (document.publisher.filename.value.indexOf('/adm/pubdir')==-1)) {         (document.publisher.filename.value.indexOf('/adm/pubdir')==-1)) {
         document.publisher.submit();          document.publisher.submit();
    } else {     } else {
       alert('Cannot publish directory');        alert('MT{Cannot publish directory}');
    }     }
 }  }
   
 function getdfilename() {  function getdfilename() {
   document.dpublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.dpublisher.filename.value=frameloc();
   if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {    if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
       document.dpublisher.submit();        document.dpublisher.submit();
   }    }
 }  }
   
 function getufilename() {  function getufilename() {
   document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.upublisher.filename.value=frameloc();
   if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {    if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
       document.upublisher.filename.value=document.dpublisher.filename.value;        document.upublisher.filename.value=document.dpublisher.filename.value;
   }    }
Line 30  function getufilename() { Line 38  function getufilename() {
 }  }
   
 function getrfilename() {  function getrfilename() {
   document.rpublisher.filename.value=parent.LONCAPAToBePublished.location.href;    document.rpublisher.filename.value=frameloc();
    if ((document.rpublisher.filename.value.charAt(     if ((document.rpublisher.filename.value.charAt(
         document.rpublisher.filename.value.length-1)!='/') &&          document.rpublisher.filename.value.length-1)!='/') &&
        (document.rpublisher.filename.value.indexOf('/adm/pubdir')==-1)) {         (document.rpublisher.filename.value.indexOf('/adm/pubdir')==-1)) {
         document.rpublisher.submit();          document.rpublisher.submit();
    } else {     } else {
       alert('Cannot retrieve directory');        alert('MT{Cannot retrieve directory}');
      }
   }
   
   function getactionfilename() {
     document.fileaction.filename.value=frameloc();
     var test=document.fileaction.action.selectedIndex;
     if (test == 8) { // 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('MT{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=frameloc();
   document.del.submit();    document.del.submit();
 }  }
   
 function getrenamefilename() {  function getcurseed() {
   document.rename.filename.value=parent.LONCAPAToBePublished.location.href;    if (parent.LONCAPAToBePublished.document.lonhomework
   document.rename.submit();         &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed
          &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed.value) {
       return parent.LONCAPAToBePublished.document.lonhomework.rndseed.value;
     }
     return 0;
 }  }
   
 function getcpfilename() {  function getproblemtype() {
   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;    if (parent.LONCAPAToBePublished.document.lonhomework) {
   document.cp.submit();       var optionelement;
        var valueIndex=0;
        for (var optionIndex=0;
             optionIndex < parent.LONCAPAToBePublished.document.lonhomework.problemtype.options.length;
     optionIndex++)
        {
            optionElement=parent.LONCAPAToBePublished.document.lonhomework.problemtype.options[optionIndex];
    if (optionElement.selected) {
       return optionElement.value;
            }  
        }  
     }
     return 0;
 }  }
   
 function getnewdirfilename() {  function getpostdata() {
    document.newdir.filename.value=parent.LONCAPAToBePublished.location.href;    document.printout.postdata.value=frameloc();
    if (document.newdir.filename.value.indexOf('/adm/pubdir')!=-1) {    document.printout.curseed.value=getcurseed();
        document.newdir.filename.value=document.dpublisher.filename.value;    document.printout.problemtype.value=getproblemtype();
    }    document.printout.submit();
    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="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
 <table border=0><tr><th bgcolor="#aaaaaa" height=20>        <font size="-2">
 <table border=0><tr valign="top"><td bgcolor="#ccffcc">   <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
 <form name="publisher" action="/adm/publish" target="_parent" method="post">        <table border="0" cellspacing="2" cellpadding="2"><tr valign="middle">
 <input type="hidden" name="filename" value="">    <form name="publisher" action="/adm/publish" target="_parent" method="post">
 <input type="button" value="Publish this Resource" onClick="getfilename();">      <td bgcolor="#ccddaa" align="center">
 </form>        <input type="hidden" name="filename" value="" />
                 <input type="button" value="MT{Publish this Resource}" onClick="getfilename();" />
 </td><td bgcolor="#ccffcc">      </td>
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished"     </form>
 method="post">    <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="" />
 </form>        <input type="button" value="MT{List Directory}" onClick="getdfilename();" />
       </td>
 </td><td bgcolor="#ccffcc">    </form>
 <form name="cp" action="/adm/cfile" target="_parent" method="post">    <form name="upublisher" action="/adm/upload" target="_parent"
 <input type="hidden" name="filename" value="">   method="post" enctype="multipart/form-data">
 <input type="hidden" name="action" value="copy">      <td bgcolor="#ccddaa" valign="top" align="center">
 <input type="text" size=10 name="newfilename" value="">        <input type="hidden" name="filename" value="" />
 <input type="button" value="Copy" onClick="getcpfilename();">        <input type="file" name="upfile" size="20" />
 </form>        <input type="button" value="MT{Upload file}"  onClick="getufilename();" />
       </td>
 </td><td bgcolor="#ccffcc">    </form>
 <form name="upublisher" action="/adm/upload" target="_parent"     <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
 method="post" enctype="multipart/form-data">      <td rowspan="2" bgcolor="#ccddaa" align="center">
 <input type="hidden" name="filename" value="">        <input type="hidden" name="postdata" value="" />
 <input type="file" name="upfile" size="10">        <input type="hidden" name="curseed" value="" />
 <input type="button" value="Upload file" onClick="getufilename();">        <input type="hidden" name="problemtype" value="" />
 </form>        <input type="button" value="MT{Print}" onClick="getpostdata();" />
       </td>
 </td></tr>    </form>
   
 <tr valign="top">   </tr>
 <td bgcolor="#ccffcc">   <tr valign="middle">
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">    <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
 <input type="hidden" name="filename" value="">      <td bgcolor="#ccddaa" align="center">
 <input type="button" value="Retrieve Old Version" onClick="getrfilename();">        <input type="hidden" name="filename" value="" />
 </form></td><td bgcolor="#ccffcc">        <input type="button" value="MT{Retrieve Old Version}" onClick="getrfilename();" />
       </td>
 <form name="del" action="/adm/cfile" target="_parent" method="post">    </form>
 <input type="hidden" name="filename" value="">    <form name="del" action="/adm/cfile" target="_parent" method="post">
 <input type="hidden" name="action" value="delete">      <td bgcolor="#ccddaa">
 <input type="button" value="Delete" onClick="getdelfilename();">        <input type="hidden" name="filename" value="" />
 </form></td><td bgcolor="#ccffcc">        <input type="hidden" name="action" value="delete" />
                 <input type="button" value="MT{Delete}" onClick="getdelfilename();" />
 <form name="rename" action="/adm/cfile" target="_parent" method="post">      </td>
 <input type="hidden" name="filename" value="">    </form>
 <input type="hidden" name="action" value="rename">    <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">
 <input type="text" size=10 name="newfilename" value="">      <td bgcolor="#ccddaa" align="center">
 <input type="button" value="Rename" onClick="getrenamefilename();">        <nobr>
 </form></td><td bgcolor="#ccffcc">   <input type="hidden" name="filename" value="" />
 <form name="newdir" action="/adm/cfile" target="_parent" method="post">    <select name="action">
 <input type="hidden" name="filename" value="">      <option>MT{Select Action}</option>
 <input type="hidden" name="action" value="newdir">      <option value="newfile">MT{New file}:</option>
 <input type="text" size=10 name="newfilename" value="">      <option value="newhtmlfile">MT{New HTML file}:</option>
 <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">      <option value="newproblemfile">MT{New problem}:</option>
 </form></td>                              <option value="newpagefile">MT{New assembled page}:</option>
 </tr>                              <option value="newsequencefile">MT{New assembled sequence}:</option>
 </table>                              <option value="newrightsfile">MT{New custom rights file}:</option>
 </th></tr></table>                              <option value="newstyfile">MT{New style file}:</option>
       <option value="newdir">MT{New subdirectory}:</option>
 </body>      <option value="rename">MT{Rename current file to}:</option>
 </html>      <option value="move">MT{Move current file to}:</option>
       <option value="copy">MT{Copy current file to}:</option>
     </select>&nbsp;<input type="text" name="newfilename" value="MT{Type Name Here}" onFocus="if (this.value == 'MT{Type Name Here}') this.value=''" />&nbsp;<input type="button" value="MT{Go}" onClick="getactionfilename();" />
         </nobr>
       </td>
     </form>
    </td>
    </form>
    </tr>
         </table>
       </th>
     </tr>
    </table>
         </font>
       </body>
     </html>

Removed from v.1.15  
changed lines
  Added in v.1.37


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