-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopups.html
More file actions
156 lines (125 loc) · 4.85 KB
/
popups.html
File metadata and controls
156 lines (125 loc) · 4.85 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
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
155
156
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<link href="stylesheets/master.css" rel="stylesheet" type="text/css">
<link href="stylesheets/tabs.css" rel="stylesheet" type="text/css">
<link href="stylesheets/forms.css" rel="stylesheet" type="text/css">
<script src="javascripts/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="javascripts/popups.js" type="text/javascript"></script>
</head>
<body>
<!-- M O D U L E P O P U P -->
<div id="popup-module">
<div class="popup-controller-title">
<img src="images/close-popup-area.gif" width="14" height="12" class="close-popup" id="close-popup-module"> Module Definition </div>
<div class="popup-controller">
<ul class="tabs" >
<li id="module-info-bt">Info</li>
<li id="module-parameters-bt">Parameters</li>
<li id="module-execution-bt">Execution</li>
<li id="module-metadata-bt">Metadata</li>
</ul>
<div class="popup-content">
<!-- MODULE TAB CONTENT AREA -->
<!-- INFO CONTENT AREA -->
<div id="module-info" class="popup-tab">
<ul class="tabs" >
<li id="module-info-module-bt">Module</li>
<li id="module-info-provenence-bt">Provenance</li>
</ul>
<div class="popup-content">
<!--INFO TAB MODULE -->
<div id="module-info-module" class="popup-tab">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">Module creation date: Sun Oct 30 14:52:44 PDT 2011</td>
<td width="22%" colspan="2" rowspan="4"> </td>
</tr>
<tr>
<td colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td >Executable Authors: None Entered</td>
<td width="10"><input type="button" value=" ... " /></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Module Described by: None Entered </td>
<td width="10"><input type="button" value=" ... " /></td>
</tr>
</table></td>
</tr>
<tr>
<td width="16%">Name:</td>
<td width="62%"><input name="module_name" type="text" value="" size="40" ></td>
</tr>
<tr>
<td>Package:</td>
<td colspan="3"><input name="module_package" type="text" value="" size="55"></td>
</tr>
<tr>
<td>Package Version:</td>
<td colspan="3"><input name="module_pkg_version" type="text" value="" size="10">
Executable Version: <input name="data_source_exec_version" type="text" value="" size="10"></td>
</tr>
<tr>
<td>Tags:</td>
<td colspan="3"><input name="data_source_tags" type="text" value="" size="55"></td>
</tr>
<tr>
<td>Description:</td>
<td colspan="3"><textarea name="data_source_description" cols="40" type="text" value=""></textarea></td>
</tr>
</table>
</br>
</br>
<!-- WEBSITE-CITATION-LICENSE -->
<ul class="tabs">
<li id="mod-info-mod-website-bt">Website</li>
<li id="mod-info-mod-citations-bt">Citations</li>
<li id="mod-info-mod-license-bt">License</li>
</ul>
<div class="popup-content">
<div id="module-info-module-website" class="popup-tab">
<input name="Edit" type="button" value="Edit ...">
</div>
<div id="module-info-module-citations" class="popup-tab" style="display:none">
citations
</div>
<div id="module-info-module-license" class="popup-tab" style="display:none">
license
</div>
</div>
</div>
<!-- INFO TAB PROVENANCE -->
<div id="module-info-provenence" class="popup-tab" style="display:none">
provenence
<!-- to be added later -->
</div>
</div>
</div>
<!--METADATA CONTENT AREA -->
<div id="module-parameters" class="popup-tab" style="display:none">
parameters
</div>
<!--EXECUTION CONTENT AREA -->
<div id="module-execution" class="popup-tab" style="display:none">
Execution
</div>
<!--METADATA CONTENT AREA -->
<div id="module-metadata" class="popup-tab" style="display:none">
Metadada
</div>
<!-- MODULE TAB CONTENT AREA -->
<input type="button" value="Help"/>
<input type="button" value="Cancel" />
<input type="button" value="OK" />
</div>
</div>
</div> <!--end of popup module -->
</body>
</html>