Diff for /loncom/publisher/publisher.html between versions 1.25 and 1.29

version 1.25, 2003/02/04 21:05:12 version 1.29, 2003/06/15 18:02:57
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.href.indexOf("/~")!=-1) {
          parent.lastknownpriv=parent.LONCAPAToBePublished.location.href;
       }
       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)) {
Line 15  function getfilename() { Line 22  function getfilename() {
 }  }
   
 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 37  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)) {
Line 41  function getrfilename() { Line 48  function getrfilename() {
 }  }
   
 function getactionfilename() {  function getactionfilename() {
   document.fileaction.filename.value=parent.LONCAPAToBePublished.location.href;    document.fileaction.filename.value=frameloc();
   var test=document.fileaction.action.selectedIndex;    var test=document.fileaction.action.selectedIndex;
   if (test == 4) { // trying to create a directory    if (test == 4) { // trying to create a directory
       if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {        if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
Line 58  function getactionfilename() { Line 65  function getactionfilename() {
 }  }
   
 function getdelfilename() {  function getdelfilename() {
   document.del.filename.value=parent.LONCAPAToBePublished.location.href;    document.del.filename.value=frameloc();
   document.del.submit();    document.del.submit();
 }  }
   
 function getpostdata() {  function getpostdata() {
   document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;    document.printout.postdata.value=frameloc();
   document.printout.submit();    document.printout.submit();
 }  }
 </script>  </script>
Line 114  function getpostdata() { Line 121  function getpostdata() {
               <input type="button" value="Delete" onClick="getdelfilename();" />                <input type="button" value="Delete" onClick="getdelfilename();" />
     </td>      </td>
   </form>    </form>
   <form name="fileaction" action="/adm/cfile" target="_parent" method="post">    <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">
     <td bgcolor="#ccddaa" align="center">      <td bgcolor="#ccddaa" align="center">
       <nobr>        <nobr>
  <input type="hidden" name="filename" value="" />   <input type="hidden" name="filename" value="" />
Line 123  function getpostdata() { Line 130  function getpostdata() {
     <option value="newfile">New file:</option>      <option value="newfile">New file:</option>
     <option value="newhtmlfile">New HTML file:</option>      <option value="newhtmlfile">New HTML file:</option>
     <option value="newproblemfile">New problem:</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="newdir">New subdirectory:</option>
     <option value="rename">Rename current file to:</option>      <option value="rename">Rename current file to:</option>
     <option value="copy">Copy current file to:</option>      <option value="copy">Copy current file to:</option>

Removed from v.1.25  
changed lines
  Added in v.1.29


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