File:  [LON-CAPA] / loncom / publisher / publisher.html
Revision 1.19: download - view: text, annotated - select for diffs
Thu Mar 21 20:39:17 2002 UTC (22 years, 2 months ago) by albertel
Branches: MAIN
CVS tags: version_0_4, stable_2002_july, stable_2002_april, STABLE, HEAD
- both hitting enter and clicking work now, BUG#211 closed

    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: </script>
   72: </head>
   73: <body bgcolor="#99ff99">
   74: <table border=0><tr><th bgcolor="#aaaaaa" height=20>
   75: <table border=0><tr valign="middle">
   76: <form name="publisher" action="/adm/publish" target="_parent" method="post">
   77: <td bgcolor="#ccffcc">
   78: <input type="hidden" name="filename" value="">
   79: <input type="button" value="Publish this Resource" onClick="getfilename();">
   80: </td></form>
   81: <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
   82: <td bgcolor="#ccffcc">
   83: <input type="hidden" name="filename" value="">
   84: <input type="button" value="List Directory" onClick="getdfilename();">
   85: </td></form>
   86: <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">
   87: <td bgcolor="#ccffcc">
   88: <input type="hidden" name="filename" value="">
   89: <input type="hidden" name="action" value="copy">
   90: <input type="text" size=10 name="newfilename" value="">
   91: <input type="button" value="Copy" onClick="getcpfilename();">
   92: </td></form>
   93: <form name="upublisher" action="/adm/upload" target="_parent" 
   94: method="post" enctype="multipart/form-data">
   95: <td bgcolor="#ccffcc" valign="top">
   96: <input type="hidden" name="filename" value="">
   97: <input type="file" name="upfile" size="10">
   98: <input type="button" value="Upload file"  onClick="getufilename();">
   99: </td></form></tr>
  100: 
  101: <tr valign="middle">
  102: <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
  103: <td bgcolor="#ccffcc">
  104: <input type="hidden" name="filename" value="">
  105: <input type="button" value="Retrieve Old Version" onClick="getrfilename();">
  106: </td></form>
  107: <form name="del" action="/adm/cfile" target="_parent" method="post">
  108: <td bgcolor="#ccffcc">
  109: <input type="hidden" name="filename" value="">
  110: <input type="hidden" name="action" value="delete">
  111: <input type="button" value="Delete" onClick="getdelfilename();">
  112: </td></form>
  113: <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">
  114: <td bgcolor="#ccffcc">
  115: <input type="hidden" name="filename" value="">
  116: <input type="hidden" name="action" value="rename">
  117: <input type="text" size=10 name="newfilename" value="">
  118: <input type="button" value="Rename" onClick="getrenamefilename();">
  119: </td></form>
  120: <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">
  121: <td bgcolor="#ccffcc">
  122: <input type="hidden" name="filename" value="">
  123: <input type="hidden" name="action" value="newdir">
  124: <input type="text" size=10 name="newfilename" value="">
  125: <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">
  126: </td></form>
  127: </tr>
  128: </table>
  129: </th></tr></table>
  130: 
  131: </body>
  132: </html>
  133: 
  134: 
  135: 
  136: 

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