Annotation of loncom/publisher/publisher.html, revision 1.20

1.1       www         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;
1.7       www         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:    }
1.1       www        15: }
                     16: 
1.4       www        17: function getdfilename() {
                     18:   document.dpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
1.6       www        19:   if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
                     20:       document.dpublisher.submit();
                     21:   }
1.4       www        22: }
                     23: 
1.9       www        24: function getufilename() {
                     25:   document.upublisher.filename.value=parent.LONCAPAToBePublished.location.href;
1.14      www        26:   if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
                     27:       document.upublisher.filename.value=document.dpublisher.filename.value;
1.9       www        28:   }
1.14      www        29:   document.upublisher.submit();
1.9       www        30: }
                     31: 
1.4       www        32: function getrfilename() {
                     33:   document.rpublisher.filename.value=parent.LONCAPAToBePublished.location.href;
1.8       www        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:    }
1.4       www        41: }
                     42: 
1.11      www        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: 
1.12      www        53: function getcpfilename() {
                     54:   document.cp.filename.value=parent.LONCAPAToBePublished.location.href;
                     55:   document.cp.submit();
                     56: }
                     57: 
1.11      www        58: function getnewdirfilename() {
1.13      www        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:    }
1.11      www        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: }
1.20    ! www        71: 
        !            72: function getpostdata() {
        !            73:   document.printout.postdata.value=parent.LONCAPAToBePublished.location.href;
        !            74:   document.printout.submit();
        !            75: }
1.1       www        76: </script>
                     77: </head>
1.17      ng         78: <body bgcolor="#99ff99">
1.20    ! www        79: <font size="-2">
1.15      ng         80: <table border=0><tr><th bgcolor="#aaaaaa" height=20>
1.16      ng         81: <table border=0><tr valign="middle">
1.19      albertel   82: <form name="publisher" action="/adm/publish" target="_parent" method="post">
1.18      albertel   83: <td bgcolor="#ccffcc">
1.1       www        84: <input type="hidden" name="filename" value="">
1.19      albertel   85: <input type="button" value="Publish this Resource" onClick="getfilename();">
1.16      ng         86: </td></form>
1.19      albertel   87: <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
1.18      albertel   88: <td bgcolor="#ccffcc">
1.4       www        89: <input type="hidden" name="filename" value="">
1.19      albertel   90: <input type="button" value="List Directory" onClick="getdfilename();">
1.16      ng         91: </td></form>
1.18      albertel   92: <form name="cp" action="/adm/cfile" target="_parent" method="post" onSubmit="getcpfilename();">
                     93: <td bgcolor="#ccffcc">
1.4       www        94: <input type="hidden" name="filename" value="">
1.15      ng         95: <input type="hidden" name="action" value="copy">
                     96: <input type="text" size=10 name="newfilename" value="">
1.19      albertel   97: <input type="button" value="Copy" onClick="getcpfilename();">
1.16      ng         98: </td></form>
1.9       www        99: <form name="upublisher" action="/adm/upload" target="_parent" 
1.19      albertel  100: method="post" enctype="multipart/form-data">
1.18      albertel  101: <td bgcolor="#ccffcc" valign="top">
1.9       www       102: <input type="hidden" name="filename" value="">
1.11      www       103: <input type="file" name="upfile" size="10">
1.19      albertel  104: <input type="button" value="Upload file"  onClick="getufilename();">
1.20    ! www       105: </td></form>
        !           106: <form name="printout" action="/adm/printout" target="LONCAPAToBePublished"
        !           107: method="post" onSubmit="getpostdata();">
        !           108: <td rowspan=2 bgcolor="#ccffcc">
        !           109: <input type="hidden" name="postdata" value="">
        !           110: <input type="button" value="Printout" onClick="getpostdata();">
        !           111: </td>
        !           112: </form>
        !           113: </tr>
1.15      ng        114: 
1.16      ng        115: <tr valign="middle">
1.19      albertel  116: <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
1.18      albertel  117: <td bgcolor="#ccffcc">
1.15      ng        118: <input type="hidden" name="filename" value="">
1.19      albertel  119: <input type="button" value="Retrieve Old Version" onClick="getrfilename();">
1.16      ng        120: </td></form>
1.19      albertel  121: <form name="del" action="/adm/cfile" target="_parent" method="post">
1.18      albertel  122: <td bgcolor="#ccffcc">
1.11      www       123: <input type="hidden" name="filename" value="">
                    124: <input type="hidden" name="action" value="delete">
1.19      albertel  125: <input type="button" value="Delete" onClick="getdelfilename();">
1.16      ng        126: </td></form>
1.18      albertel  127: <form name="rename" action="/adm/cfile" target="_parent" method="post" onSubmit="getrenamefilename();">
                    128: <td bgcolor="#ccffcc">
1.11      www       129: <input type="hidden" name="filename" value="">
                    130: <input type="hidden" name="action" value="rename">
1.15      ng        131: <input type="text" size=10 name="newfilename" value="">
1.19      albertel  132: <input type="button" value="Rename" onClick="getrenamefilename();">
1.16      ng        133: </td></form>
1.18      albertel  134: <form name="newdir" action="/adm/cfile" target="_parent" method="post" onSubmit="getnewdirfilename();">
                    135: <td bgcolor="#ccffcc">
1.11      www       136: <input type="hidden" name="filename" value="">
                    137: <input type="hidden" name="action" value="newdir">
1.15      ng        138: <input type="text" size=10 name="newfilename" value="">
1.19      albertel  139: <input type="button" value="New Subdirectory" onClick="getnewdirfilename();">
1.16      ng        140: </td></form>
1.11      www       141: </tr>
                    142: </table>
1.15      ng        143: </th></tr></table>
1.20    ! www       144: </font>
1.1       www       145: </body>
1.11      www       146: </html>
1.15      ng        147: 
                    148: 
                    149: 
1.11      www       150: 

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