Diff for /loncom/publisher/publisher.html between versions 1.26 and 1.36

version 1.26, 2003/02/10 22:52:59 version 1.36, 2004/03/02 16:55:01
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() {  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 == 8) { // trying to create a directory
       if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {        if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
           document.fileaction.filename.value=document.dpublisher.filename.value;            document.fileaction.filename.value=document.dpublisher.filename.value;
       }        }
       if ((document.fileaction.filename.value.charAt(        if ((document.fileaction.filename.value.charAt(
            document.fileaction.filename.value.length-1)!='/') &&             document.fileaction.filename.value.length-1)!='/') &&
            (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {             (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {
           alert('Must create new subdirectory inside a directory');            alert('MT{Must create new subdirectory inside a directory}');
           return;            return;
       }        }
    }     }
Line 58  function getactionfilename() { Line 66  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 getcurseed() {
     if (parent.LONCAPAToBePublished.document.lonhomework
          &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed
          &&
         parent.LONCAPAToBePublished.document.lonhomework.rndseed.value) {
       return parent.LONCAPAToBePublished.document.lonhomework.rndseed.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.submit();    document.printout.submit();
 }  }
 </script>  </script>
Line 71  function getpostdata() { Line 91  function getpostdata() {
     <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" align="center"><tr><th bgcolor="#004400" height="20">   <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
       <table border="0" cellspacing="4"><tr valign="middle">        <table border="0" cellspacing="2" cellpadding="2"><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" align="center">      <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="MT{Publish this Resource}" onClick="getfilename();" />
     </td>      </td>
   </form>    </form>
   <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">    <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
     <td bgcolor="#ccddaa" align="center">      <td bgcolor="#ccddaa" align="center">
       <input type="hidden" name="filename" value="" />        <input type="hidden" name="filename" value="" />
       <input type="button" value="List Directory" onClick="getdfilename();" />        <input type="button" value="MT{List Directory}" onClick="getdfilename();" />
     </td>      </td>
   </form>    </form>
   <form name="upublisher" action="/adm/upload" target="_parent"    <form name="upublisher" action="/adm/upload" target="_parent"
Line 89  function getpostdata() { Line 109  function getpostdata() {
     <td bgcolor="#ccddaa" valign="top" align="center">      <td bgcolor="#ccddaa" valign="top" align="center">
       <input type="hidden" name="filename" value="" />        <input type="hidden" name="filename" value="" />
       <input type="file" name="upfile" size="20" />        <input type="file" name="upfile" size="20" />
       <input type="button" value="Upload file"  onClick="getufilename();" />        <input type="button" value="MT{Upload file}"  onClick="getufilename();" />
     </td>      </td>
   </form>    </form>
   <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">    <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
     <td rowspan="2" bgcolor="#ccddaa" align="center">      <td rowspan="2" bgcolor="#ccddaa" align="center">
       <input type="hidden" name="postdata" value="" />        <input type="hidden" name="postdata" value="" />
       <input type="button" value="Print" onClick="getpostdata();" />        <input type="hidden" name="curseed" value="" />
         <input type="button" value="MT{Print}" onClick="getpostdata();" />
     </td>      </td>
   </form>    </form>
   
Line 104  function getpostdata() { Line 125  function getpostdata() {
   <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">    <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
     <td bgcolor="#ccddaa" align="center">      <td bgcolor="#ccddaa" align="center">
       <input type="hidden" name="filename" value="" />        <input type="hidden" name="filename" value="" />
       <input type="button" value="Retrieve Old Version" onClick="getrfilename();" />        <input type="button" value="MT{Retrieve Old Version}" onClick="getrfilename();" />
     </td>      </td>
   </form>    </form>
   <form name="del" action="/adm/cfile" target="_parent" method="post">    <form name="del" action="/adm/cfile" target="_parent" method="post">
     <td bgcolor="#ccddaa">      <td bgcolor="#ccddaa">
       <input type="hidden" name="filename" value="" />        <input type="hidden" name="filename" value="" />
       <input type="hidden" name="action" value="delete" />        <input type="hidden" name="action" value="delete" />
               <input type="button" value="Delete" onClick="getdelfilename();" />                <input type="button" value="MT{Delete}" onClick="getdelfilename();" />
     </td>      </td>
   </form>    </form>
   <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">    <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">
Line 119  function getpostdata() { Line 140  function getpostdata() {
       <nobr>        <nobr>
  <input type="hidden" name="filename" value="" />   <input type="hidden" name="filename" value="" />
   <select name="action">    <select name="action">
     <option>Select Action</option>      <option>MT{Select Action}</option>
     <option value="newfile">New file:</option>      <option value="newfile">MT{New file}:</option>
     <option value="newhtmlfile">New HTML file:</option>      <option value="newhtmlfile">MT{New HTML file}:</option>
     <option value="newproblemfile">New problem:</option>      <option value="newproblemfile">MT{New problem}:</option>
     <option value="newdir">New subdirectory:</option>                              <option value="newpagefile">MT{New assembled page}:</option>
     <option value="rename">Rename current file to:</option>                              <option value="newsequencefile">MT{New assembled sequence}:</option>
     <option value="copy">Copy current file to:</option>                              <option value="newrightsfile">MT{New custom rights file}:</option>
   </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();" />                              <option value="newstyfile">MT{New style 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>        </nobr>
     </td>      </td>
   </form>    </form>

Removed from v.1.26  
changed lines
  Added in v.1.36


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