-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtreeParser.jsp
More file actions
57 lines (48 loc) · 1.52 KB
/
treeParser.jsp
File metadata and controls
57 lines (48 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%@ include file="/common/taglibs.jsp"%>
<title>Nexus Parser Test</title>
<content tag="heading">Mesquite Nexus Parser Test Page</content>
<script type="text/javascript">
function show_or_hide(layer_ref, state) {
var el = document.getElementById(layer_ref);
if (el) el.style.display = state;
}
</script>
<body id="submissions"/>
<p>Use the following form to upload your Nexus files for testing Mesquite Parser</p>
<form method="post" enctype="multipart/form-data">
<fieldset>
<legend>Nexus Files Upload</legend>
<table border="0" cellpadding="1">
<tr>
<th> </th>
<td>
<input type="file" name="data" size="40"/>
</td>
</tr>
<tr>
<th></th>
<td><table id="attachments" border="0"><tr><td></td></tr></table></td>
</tr>
<tr>
<td> </td>
<td><a href="javascript:addFile()">Attach another file</a></td>
</tr>
<tr>
<td></td>
<td class="buttonBar">
<input type="submit" name="upload" class="button" onclick="show_or_hide('kids', 'block');"
value="<fmt:message key="button.upload"/>" />
<input type="submit" name="_cancel" class="button" onclick="bCancel=true"
value="<fmt:message key="button.cancel"/>" />
</td>
</tr>
</table>
<div id="kids" style="display: none;">
<h3>Uploading ...</h3>
<script type="text/javascript">
var bar1= createBar(500,15,'white',1,'black','#7DCBDA',85,7,3,"");
</script>
</div>
</fieldset>
</form>
<%@ include file="/scripts/multiFileUpload.js"%>