Diff for /loncom/publisher/publisher.html between versions 1.20 and 1.41

version 1.20, 2002/07/16 20:30:54 version 1.41, 2009/12/14 15:37:38
Line 1 Line 1
 <html>  <html>
 <head>  <head>
 <title>LON-CAPA Publishing Frame</title>  <title>LON-CAPA Publishing Frame</title>
 <script>  <script type="text/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 getdelfilename() {  function getactionfilename() {
   document.del.filename.value=parent.LONCAPAToBePublished.location.href;    document.fileaction.filename.value=frameloc();
   document.del.submit();    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 getrenamefilename() {  function getdelfilename() {
   document.rename.filename.value=parent.LONCAPAToBePublished.location.href;    document.del.filename.value=frameloc();
   document.rename.submit();    document.del.submit();
 }  }
   
 function getcpfilename() {  function getcurseed() {
   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;    if (parent.LONCAPAToBePublished.document.lonhomework
   document.cp.submit();         &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed
          &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed.value) {
       return parent.LONCAPAToBePublished.document.lonhomework.rndseed.value;
     }
     return 0;
 }  }
   
 function getnewdirfilename() {  function getproblemtype() {
    document.newdir.filename.value=parent.LONCAPAToBePublished.location.href;    if (parent.LONCAPAToBePublished.document.lonhomework
    if (document.newdir.filename.value.indexOf('/adm/pubdir')!=-1) {         &&
        document.newdir.filename.value=document.dpublisher.filename.value;        parent.LONCAPAToBePublished.document.lonhomework.problemtype) {
    }      if (parent.LONCAPAToBePublished.document.lonhomework.problemtype.value) {
    if ((document.newdir.filename.value.charAt(        return parent.LONCAPAToBePublished.document.lonhomework.problemtype.value;
         document.newdir.filename.value.length-1)!='/') &&      }
        (document.newdir.filename.value.indexOf('/adm/pubdir')==-1)) {      if (parent.LONCAPAToBePublished.document.lonhomework.problemtype.options) {
       alert('Must create new subdirectory inside a directory');         var optionelement;
    } else {         var valueIndex=0;
       document.newdir.submit();         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 getpostdata() {  function getpostdata() {
   document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;    document.printout.postdata.value=frameloc();
     document.printout.curseed.value=getcurseed();
     document.printout.problemtype.value=getproblemtype();
   document.printout.submit();    document.printout.submit();
 }  }
   //-->
 </script>  </script>
 </head>  <style>
 <body bgcolor="#99ff99">  table.LC_publisher {
 <font size="-2">    border-collapse:collapse;
 <table border=0><tr><th bgcolor="#aaaaaa" height=20>  }
 <table border=0><tr valign="middle">  .LC_publisher td {
 <form name="publisher" action="/adm/publish" target="_parent" method="post">    border: 1px solid #C0C0C0;
 <td bgcolor="#ccffcc">    padding: 2px;
 <input type="hidden" name="filename" value="">  }
 <input type="button" value="Publish this Resource" onClick="getfilename();">  </style>
 </td></form>      </head>
 <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">      <body>
 <td bgcolor="#ccffcc">            <table class="LC_publisher">
 <input type="hidden" name="filename" value="">                <tr valign="middle">
 <input type="button" value="List Directory" onClick="getdfilename();">    <td align="center">
 </td></form>      <form name="publisher" action="/adm/publish" target="_parent" method="post">
 <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">        <input type="hidden" name="filename" value="" />
 <td bgcolor="#ccffcc">                <input type="button" value="MT{Publish this Resource}" onclick="getfilename();" />
 <input type="hidden" name="filename" value="">      </form>
 <input type="hidden" name="action" value="copy">    </td>
 <input type="text" size=10 name="newfilename" value="">    <td align="center">
 <input type="button" value="Copy" onClick="getcpfilename();">      <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
 </td></form>        <input type="hidden" name="filename" value="" />
 <form name="upublisher" action="/adm/upload" target="_parent"         <input type="button" value="MT{List Directory}" onclick="getdfilename();" />
 method="post" enctype="multipart/form-data">      </form>
 <td bgcolor="#ccffcc" valign="top">    </td>
 <input type="hidden" name="filename" value="">    <td valign="top" align="center">
 <input type="file" name="upfile" size="10">      <form name="upublisher" action="/adm/upload" target="_parent"
 <input type="button" value="Upload file"  onClick="getufilename();">   method="post" enctype="multipart/form-data">
 </td></form>        <input type="hidden" name="filename" value="" />
 <form name="printout" action="/adm/printout" target="LONCAPAToBePublished"        <input type="file" name="upfile" size="20" />
 method="post" onSubmit="getpostdata();">        <input type="button" value="MT{Upload file}"  onclick="getufilename();" />
 <td rowspan=2 bgcolor="#ccffcc">      </form>
 <input type="hidden" name="postdata" value="">    </td>
 <input type="button" value="Printout" onClick="getpostdata();">    <td rowspan="2" align="center">
 </td>      <form name="printout" target="_parent" action="/adm/printout" method="post" onsubmit="getpostdata();">
 </form>        <input type="hidden" name="postdata" value="" />
 </tr>        <input type="hidden" name="curseed" value="" />
         <input type="hidden" name="problemtype" value="" />
 <tr valign="middle">        <input type="button" value="MT{Print}" onclick="getpostdata();" />
 <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">      </form>
 <td bgcolor="#ccffcc">    </td>
 <input type="hidden" name="filename" value="">  
 <input type="button" value="Retrieve Old Version" onClick="getrfilename();">   </tr>
 </td></form>   <tr valign="middle">
 <form name="del" action="/adm/cfile" target="_parent" method="post">    <td align="center">
 <td bgcolor="#ccffcc">      <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
 <input type="hidden" name="filename" value="">        <input type="hidden" name="filename" value="" />
 <input type="hidden" name="action" value="delete">        <input type="button" value="MT{Retrieve Old Version}" onclick="getrfilename();" />
 <input type="button" value="Delete" onClick="getdelfilename();">      </form>
 </td></form>    </td>
 <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">    <td>
 <td bgcolor="#ccffcc">      <form name="del" action="/adm/cfile" target="_parent" method="post">
 <input type="hidden" name="filename" value="">        <input type="hidden" name="filename" value="" />
 <input type="hidden" name="action" value="rename">        <input type="hidden" name="action" value="delete" />
 <input type="text" size=10 name="newfilename" value="">                <input type="button" value="MT{Delete}" onclick="getdelfilename();" />
 <input type="button" value="Rename" onClick="getrenamefilename();">      </form>
 </td></form>    </td>
 <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">    <td align="center">
 <td bgcolor="#ccffcc">      <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onsubmit="getactionfilename();">
 <input type="hidden" name="filename" value="">        <nobr>
 <input type="hidden" name="action" value="newdir">   <input type="hidden" name="filename" value="" />
 <input type="text" size=10 name="newfilename" value="">    <select name="action">
 <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">      <option>MT{Select Action}</option>
 </td></form>      <option value="newfile">MT{New file}:</option>
 </tr>      <option value="newhtmlfile">MT{New HTML file}:</option>
 </table>      <option value="newproblemfile">MT{New problem}:</option>
 </th></tr></table>                              <option value="newpagefile">MT{New assembled page}:</option>
 </font>                              <option value="newsequencefile">MT{New assembled sequence}:</option>
 </body>                              <option value="newrightsfile">MT{New custom rights file}:</option>
 </html>                              <option value="newstyfile">MT{New style file}:</option>
                               <option value="newlibraryfile">MT{New library file}:</option>
       <option value="newdir">MT{New subdirectory}:</option>
       <option value="rename">MT{Rename current file to}:</option>
       <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>
       </form>
      </td>
    </tr>
         </table>
       </body>
     </html>

Removed from v.1.20  
changed lines
  Added in v.1.41


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