File:  [LON-CAPA] / loncom / publisher / publisher.html
Revision 1.14: download - view: text, annotated - select for diffs
Sun Jun 24 17:27:38 2001 UTC (22 years, 11 months ago) by www
Branches: MAIN
CVS tags: HEAD
File upload from list dir bug fix

    1: <html>
    2: <head>
    3: <title>LON-CAPA Publishing Frame</title>
    4: <script>
    5: 
    6: function getfilename() {
    7:    document.publisher.filename.value=parent.LONCAPAToBePublished.location.href;
    8:    if ((document.publisher.filename.value.charAt(
    9:         document.publisher.filename.value.length-1)!='/') &&
   10:        (document.publisher.filename.value.indexOf('/adm/pubdir')==-1)) {
   11:         document.publisher.submit();
   12:    } else {
   13:       alert('Cannot publish directory');
   14:    }
   15: }
   16: 
   17: function getdfilename() {
   18:   document.dpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
   19:   if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
   20:       document.dpublisher.submit();
   21:   }
   22: }
   23: 
   24: function getufilename() {
   25:   document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;
   26:   if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
   27:       document.upublisher.filename.value=document.dpublisher.filename.value;
   28:   }
   29:   document.upublisher.submit();
   30: }
   31: 
   32: function getrfilename() {
   33:   document.rpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
   34:    if ((document.rpublisher.filename.value.charAt(
   35:         document.rpublisher.filename.value.length-1)!='/') &&
   36:        (document.rpublisher.filename.value.indexOf('/adm/pubdir')==-1)) {
   37:         document.rpublisher.submit();
   38:    } else {
   39:       alert('Cannot retrieve directory');
   40:    }
   41: }
   42: 
   43: function getdelfilename() {
   44:   document.del.filename.value=parent.LONCAPAToBePublished.location.href;
   45:   document.del.submit();
   46: }
   47: 
   48: function getrenamefilename() {
   49:   document.rename.filename.value=parent.LONCAPAToBePublished.location.href;
   50:   document.rename.submit();
   51: }
   52: 
   53: function getcpfilename() {
   54:   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;
   55:   document.cp.submit();
   56: }
   57: 
   58: function getnewdirfilename() {
   59:    document.newdir.filename.value=parent.LONCAPAToBePublished.location.href;
   60:    if (document.newdir.filename.value.indexOf('/adm/pubdir')!=-1) {
   61:        document.newdir.filename.value=document.dpublisher.filename.value;
   62:    }
   63:    if ((document.newdir.filename.value.charAt(
   64:         document.newdir.filename.value.length-1)!='/') &&
   65:        (document.newdir.filename.value.indexOf('/adm/pubdir')==-1)) {
   66:       alert('Must create new subdirectory inside a directory');
   67:    } else {
   68:       document.newdir.submit();
   69:    }
   70: }
   71: 
   72: </script>
   73: </head>
   74: <body bgcolor="#FFFFFF">
   75: <table border=2><tr><td>
   76: <form name="publisher" action="/adm/publish" target="_parent" method="post">
   77: <input type="hidden" name="filename" value="">
   78: <input type="button" value="Publish this Resource" onClick="getfilename();">
   79: </form>
   80: </td><td>
   81: <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" 
   82: method="post">
   83: <input type="hidden" name="filename" value="">
   84: <input type="button" value="List Directory" onClick="getdfilename();">
   85: </form></td><td>
   86: <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
   87: <input type="hidden" name="filename" value="">
   88: <input type="button" value="Retrieve Old Version" onClick="getrfilename();">
   89: </form></td><td>
   90: <form name="upublisher" action="/adm/upload" target="_parent" 
   91: method="post" enctype="multipart/form-data">
   92: <input type="hidden" name="filename" value="">
   93: <input type="file" name="upfile" size="10">
   94: <input type="button" value="Upload file" onClick="getufilename();">
   95: </form>
   96: </td></tr>
   97: <tr>
   98: <td>
   99: <form name="del" action="/adm/cfile" target="_parent" method="post">
  100: <input type="hidden" name="filename" value="">
  101: <input type="hidden" name="action" value="delete">
  102: <input type="button" value="Delete" onClick="getdelfilename();">
  103: </form></td><td>
  104: <form name="cp" action="/adm/cfile" target="_parent" method="post">
  105: <input type="hidden" name="filename" value="">
  106: <input type="hidden" name="action" value="copy">
  107: <input type="text" size=15 name="newfilename" value="">
  108: <input type="button" value="Copy" onClick="getcpfilename();">
  109: </form></td><td>
  110: <form name="rename" action="/adm/cfile" target="_parent" method="post">
  111: <input type="hidden" name="filename" value="">
  112: <input type="hidden" name="action" value="rename">
  113: <input type="text" size=15 name="newfilename" value="">
  114: <input type="button" value="Rename" onClick="getrenamefilename();">
  115: </form></td><td>
  116: <form name="newdir" action="/adm/cfile" target="_parent" method="post">
  117: <input type="hidden" name="filename" value="">
  118: <input type="hidden" name="action" value="newdir">
  119: <input type="text" size=15 name="newfilename" value="">
  120: <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">
  121: </form></td>
  122: </tr>
  123: </table>
  124: </body>
  125: </html>
  126: 

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