Annotation of loncom/publisher/publisher.html, revision 1.32
1.1 www 1: <html>
2: <head>
3: <title>LON-CAPA Publishing Frame</title>
1.29 www 4: <script language="JavaScript">
5:
6: function frameloc() {
1.31 www 7: if (parent.LONCAPAToBePublished.location.pathname.indexOf("/~")!=-1) {
8: parent.lastknownpriv=parent.LONCAPAToBePublished.location.pathname;
1.29 www 9: }
1.31 www 10: // alert ('We are at '+parent.lastknownpriv);
1.29 www 11: return unescape(parent.lastknownpriv);
12: }
1.1 www 13:
14: function getfilename() {
1.29 www 15: document.publisher.filename.value=frameloc();
1.7 www 16: if ((document.publisher.filename.value.charAt(
17: document.publisher.filename.value.length-1)!='/') &&
18: (document.publisher.filename.value.indexOf('/adm/pubdir')==-1)) {
19: document.publisher.submit();
20: } else {
21: alert('Cannot publish directory');
22: }
1.1 www 23: }
24:
1.4 www 25: function getdfilename() {
1.29 www 26: document.dpublisher.filename.value=frameloc();
1.6 www 27: if (document.dpublisher.filename.value.indexOf('/adm/pubdir')==-1) {
28: document.dpublisher.submit();
29: }
1.4 www 30: }
31:
1.9 www 32: function getufilename() {
1.29 www 33: document.upublisher.filename.value=frameloc();
1.14 www 34: if (document.upublisher.filename.value.indexOf('/adm/pubdir')!=-1) {
35: document.upublisher.filename.value=document.dpublisher.filename.value;
1.9 www 36: }
1.14 www 37: document.upublisher.submit();
1.9 www 38: }
39:
1.4 www 40: function getrfilename() {
1.29 www 41: document.rpublisher.filename.value=frameloc();
1.8 www 42: if ((document.rpublisher.filename.value.charAt(
43: document.rpublisher.filename.value.length-1)!='/') &&
44: (document.rpublisher.filename.value.indexOf('/adm/pubdir')==-1)) {
45: document.rpublisher.submit();
46: } else {
47: alert('Cannot retrieve directory');
48: }
1.4 www 49: }
50:
1.24 albertel 51: function getactionfilename() {
1.29 www 52: document.fileaction.filename.value=frameloc();
1.24 albertel 53: var test=document.fileaction.action.selectedIndex;
54: if (test == 4) { // trying to create a directory
55: if (document.fileaction.filename.value.indexOf('/adm/pubdir')!=-1) {
56: document.fileaction.filename.value=document.dpublisher.filename.value;
57: }
58: if ((document.fileaction.filename.value.charAt(
59: document.fileaction.filename.value.length-1)!='/') &&
60: (document.fileaction.filename.value.indexOf('/adm/pubdir')==-1)) {
61: alert('Must create new subdirectory inside a directory');
62: return;
63: }
1.11 www 64: }
1.24 albertel 65: document.fileaction.submit();
1.11 www 66: }
1.20 www 67:
1.25 albertel 68: function getdelfilename() {
1.29 www 69: document.del.filename.value=frameloc();
1.25 albertel 70: document.del.submit();
71: }
72:
1.32 ! albertel 73: function getcurseed() {
! 74: if (parent.LONCAPAToBePublished.document.lonhomework
! 75: &&
! 76: parent.LONCAPAToBePublished.document.lonhomework.rndseed
! 77: &&
! 78: parent.LONCAPAToBePublished.document.lonhomework.rndseed.value) {
! 79: return parent.LONCAPAToBePublished.document.lonhomework.rndseed.value;
! 80: }
! 81: return 0;
! 82: }
! 83:
1.20 www 84: function getpostdata() {
1.29 www 85: document.printout.postdata.value=frameloc();
1.32 ! albertel 86: document.printout.curseed.value=getcurseed();
1.20 www 87: document.printout.submit();
88: }
1.1 www 89: </script>
1.24 albertel 90: </head>
91: <body bgcolor="#ccffdd" text='#002200' link='#003333' vlink='#006666'>
92: <font size="-2">
93: <table border="0" align="center"><tr><th bgcolor="#004400" height="20">
1.31 www 94: <table border="0" cellspacing="2" cellpadding="2"><tr valign="middle">
1.24 albertel 95: <form name="publisher" action="/adm/publish" target="_parent" method="post">
96: <td bgcolor="#ccddaa" align="center">
97: <input type="hidden" name="filename" value="" />
98: <input type="button" value="Publish this Resource" onClick="getfilename();" />
99: </td>
100: </form>
101: <form name="dpublisher" action="/adm/pubdir" target="LONCAPAToBePublished" method="post">
102: <td bgcolor="#ccddaa" align="center">
103: <input type="hidden" name="filename" value="" />
104: <input type="button" value="List Directory" onClick="getdfilename();" />
105: </td>
106: </form>
107: <form name="upublisher" action="/adm/upload" target="_parent"
108: method="post" enctype="multipart/form-data">
109: <td bgcolor="#ccddaa" valign="top" align="center">
110: <input type="hidden" name="filename" value="" />
111: <input type="file" name="upfile" size="20" />
112: <input type="button" value="Upload file" onClick="getufilename();" />
113: </td>
114: </form>
1.25 albertel 115: <form name="printout" target="_parent" action="/adm/printout" target="LONCAPAToBePublished" method="post" onSubmit="getpostdata();">
116: <td rowspan="2" bgcolor="#ccddaa" align="center">
117: <input type="hidden" name="postdata" value="" />
1.32 ! albertel 118: <input type="hidden" name="curseed" value="" />
1.25 albertel 119: <input type="button" value="Print" onClick="getpostdata();" />
120: </td>
121: </form>
122:
1.24 albertel 123: </tr>
124: <tr valign="middle">
125: <form name="rpublisher" action="/adm/retrieve" target="_parent" method="post">
126: <td bgcolor="#ccddaa" align="center">
127: <input type="hidden" name="filename" value="" />
128: <input type="button" value="Retrieve Old Version" onClick="getrfilename();" />
129: </td>
130: </form>
1.25 albertel 131: <form name="del" action="/adm/cfile" target="_parent" method="post">
132: <td bgcolor="#ccddaa">
133: <input type="hidden" name="filename" value="" />
134: <input type="hidden" name="action" value="delete" />
135: <input type="button" value="Delete" onClick="getdelfilename();" />
1.24 albertel 136: </td>
137: </form>
1.26 albertel 138: <form name="fileaction" action="/adm/cfile" target="_parent" method="post" onSubmit="getactionfilename();">
1.24 albertel 139: <td bgcolor="#ccddaa" align="center">
140: <nobr>
141: <input type="hidden" name="filename" value="" />
142: <select name="action">
143: <option>Select Action</option>
144: <option value="newfile">New file:</option>
145: <option value="newhtmlfile">New HTML file:</option>
146: <option value="newproblemfile">New problem:</option>
1.27 www 147: <option value="newpagefile">New assembled page:</option>
148: <option value="newsequencefile">New assembled sequence:</option>
1.30 www 149: <option value="newrightsfile">New custom rights file:</option>
150: <option value="newstyfile">New style file:</option>
1.25 albertel 151: <option value="newdir">New subdirectory:</option>
1.24 albertel 152: <option value="rename">Rename current file to:</option>
153: <option value="copy">Copy current file to:</option>
1.25 albertel 154: </select> <input type="text" name="newfilename" value="Type Name Here" onFocus="if (this.value == 'Type Name Here') this.value=''" /> <input type="button" value="Go" onClick="getactionfilename();" />
1.24 albertel 155: </nobr>
156: </td>
157: </form>
158: </td>
159: </form>
160: </tr>
161: </table>
162: </th>
163: </tr>
164: </table>
165: </font>
166: </body>
167: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>