-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters_sample.html
115 lines (95 loc) · 3.59 KB
/
parameters_sample.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<script src="javascripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="javascripts/parameters.js" type="text/javascript"></script>
<link href="stylesheets/parameters.css" rel="stylesheet" type="text/css">
<link href="stylesheets/tabs.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="module-parameters" class="popup-tab" >
<div id="parameters-list-box" class="list-box list-box-par">
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="parameters-table">
<tr>
<th width="42%" align="left" valign="top">Parameter Name</th>
<th width="20%" align="left" valign="top">Type</th>
<th width="12%" align="left" valign="top">State</th>
<th width="14%" align="left" valign="top">Required</th>
<th width="12%" align="left" valign="top">Input</th>
</tr>
<!-- new parameters will be inserted here -->
</table>
</div>
<div id="parameters-controls">
<div id="cloneParameterButton"></div>
<div id="addParameterButton"></div>
<div id="removeParameterButton"></div>
</div>
<div style="clear:both"></div>
<div id="parameters-type-details">
<div id="parameter-desc">
Description of the Parameter
<br><br>
<textarea name="parameter-description" cols="80%" id="paramter-description"></textarea>
</div>
<div id="parameter-args"></div>
Number of parameter arguments<br>
<input type="radio" name="par-args" id="parameter-arguments2" value="num-parameter-arguments">
<input name="num-args" type="number" id="num-args" value="1" min="0"width="20px"/>
<input type="radio" name="par-args" id="parameter-arguments" value="unknown">Unknown
<br>
<br>
<div id="parameter-rem">
<div id="command-line">
<p>Command line prefix </p>
<p>
<input name="command-line-prefix" type="text" id="command-line-prefix" size="20">
</p>
<p>
<input type="checkbox" name="put-space" id="put-space">
<label for="put-space"></label>
Put space after prefix<br>
<input type="checkbox" name="put-space2" id="put-space2">
Prefix before each arg.</p>
</div>
<div id="acceptable-files">
<fieldset>
<legend>Acceptable File Types</legend>
<p><input type="button" value="Edit file types..." ></p>
<div id="search-box"></div>
<div class="list-box">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="42%" align="left" valign="top">File Types</th>
<th width="20%" align="left" valign="top">Extensions</th>
<th width="12%" align="left" valign="top">Needs</th>
</tr>
<tr>
<td><input type="checkbox" name="warp" id="warp">
File</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" name="warp2" id="warp2">
0000.img</td>
<td>_0000.img</td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" name="warp4" id="warp4">
1D File</td>
<td>1D</td>
<td> </td>
</tr>
</table>
</div>
</fieldset>
</div>
</div>
</div>
</div>
</body>
</html>