-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpop_up_edit_module.html
executable file
·154 lines (137 loc) · 5.14 KB
/
pop_up_edit_module.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<link href="stylesheets/smoothness/jquery-ui-1.8.16.custom.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src='javascripts/jquery-1.6.4.min.js'></script>
<script type="text/javascript" src='javascripts/jquery-ui-1.8.16.custom.min.js' ></script>
<link href="stylesheets/forms.css" rel="stylesheet" type="text/css">
<script>
$(function() {
$( "#module" ).accordion();
});
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
$(function() {
// $( "#info_inner2" ).accordion();
});
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
$(function() {
//$( ".info_inner" ).accordion();
$( "#info_inner" ).accordion();
});
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
$(function() {
$( "#executions_inner" ).accordion({ autoHeight: false });
});
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
$(function() {
$( "#info_module_inner" ).accordion({ autoHeight: false });
});
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
</head>
<body>
<div id="module">
<h3><a href="#">Info</a></h3>
<div>
<div id="info_inner">
<h3><a href="#">Module</a></h3>
<div>
Module creation date: Sun Oct 30 14:52:44 PDT 2011</br>
Executable Authors: None Entered </br>
Module Described by: None Entered </br>
<label for="module_name">Name</label><input name="module_name" type="text" value="" ></br>
<label for="module_package">Package: </label> <input name="module_package" type="text" value=""></br>
<label for="module_pkg_version">Package Version: </label> <input name="module_pkg_version" type="text" value=""></br>
<label for="data_source_exec_version">Executable Version: </label> <input name="data_source_exec_version" type="text" value=""></br>
<label for="data_source_tags">Tags:</label> <input name="data_source_tags" type="text" value=""></br>
<label for="data_source_description">Description:</label> <input name="data_source_description" type="text" value=""></br>
<input name="Edit" type="button" value="Edit ...">
<div id = "info_module_inner">
<!--- INSIDE MODULE -->
<h3><a href="#">Website</a></h3>
<div>
<label for="module_info_website">Website: </label> <input name="module_info_website" type="text" value="">
<input name="Website_Edit" type="button" value="Edit ...">
</div>
<h3><a href="#">Citations</a></h3>
<div>
<fieldset><legend>Citations</legend>
</fieldset>
<input name="Citations_Edit" type="button" value="Edit ...">
</div>
<h3><a href="#">License</a></h3>
<div>
<input name="License_Edit" type="button" value="Edit ...">
<input name="License_Expand" type="button" value="Expand ...">
</div>
<!--- INSIDE MODULE -->
</div>
</div>
<h3><a href="#">Provenance</a></h3>
<div>
asdasdda
</div>
</div>
</div>
<!-- PARAMETERS TAB -->
<h3><a href="#">Parameters</a></h3>
<div>
Server Address
<select name="server_address" id="server_address">
<option selected>localhost</option>
<option>cranium.loni.ucla.edu</option>
</select>
<input type="checkbox" name="directory_source" id="directory_source">Directory Source </br>
<textarea name="output_items" cols="60" rows="10"></textarea>
</br>
Number of input Items: 0
</br>
<input name="find_replace" type="button" value="Find and Replace">
<input name="browse" type="button" value="Browse">
<input name="clear_all" type="button" value="Clear All">
</br></br>
<hr>
<label for="data_type">Data type:</label>
<select name="data_type" id="data_type">
<option>File</option>
<option>Directory</option>
<option>Number</option>
<option>String</option>
</select>
</div>
<!-- end of params TAB -->
<h3><a href="#">Executions</a></h3>
<div>
<div id = "executions_inner">
<!--- INSIDE EXECUTION -->
<h3><a href="#">Execution Environment</a></h3>
<div>
<label for="module_program_loc">Package Version: </label> <input name="module_program_loc" type="text" value=""> <input name="browse" type="button" value="Browse..."><input type="checkbox" name="remote" id="directory_source">Remote</br>
</div>
<h3><a href="#">Looping Condition</a></h3>
<div>
jkjkkjjk
</div>
<!--- INSIDE EXECUTION -->
</div>
</div>
</div>
</body>
</html>