-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup_data_sink_sample.html
106 lines (83 loc) · 2.9 KB
/
popup_data_sink_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
<!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>
<!-- D A T A S I N K P O P U P -->
<div id="popup-data-sink">
<div class="popup-controller-title">
<img src="images/close-popup-area.gif" width="14" height="12" class="close-popup" id="close-popup-data-sink"> Data Sink </div>
<div class="popup-controller">
<ul class="tabs" >
<li id="data-sink-info-bt">Info</li>
<li id="data-sink-outputs-bt">Outputs</li>
</ul>
<div class="popup-content">
<!-- DATA SINK TAB CONTENT AREA -->
<!-- INFO CONTENT AREA -->
<div id="data-sink-info" 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="data-sink_name" type="text" value="" size="40" ></td>
</tr>
<tr>
<td>Package:</td>
<td colspan="3"><input name="data-sink_package" type="text" value="" size="55"></td>
</tr>
<tr>
<td>Package Version:</td>
<td colspan="3"><input name="data-sink_pkg_version" type="text" value="" size="10"></td>
</tr>
<tr>
<td>Tags:</td>
<td colspan="3"><input name="data_sink_tags" type="text" value="" size="55"></td>
</tr>
<tr>
<td>Description:</td>
<td colspan="3"><textarea name="data_sink_description" cols="40" type="text" value=""></textarea></td>
</tr>
</table>
</br>
</br>
</div>
<!--OUTPUTS CONTENT AREA -->
<div id="data-sink-outputs" class="popup-tab" style="display:none">
outputs
</div>
<!-- DATA SINK END TAB CONTENT AREA -->
<input type="button" value="Help"/>
<input type="button" value="Cancel" />
<input type="button" value="OK" />
</div>
</div>
</div> <!--end of data sink -->
</body>
</html>