| 5355 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
|
|
5 |
'| BomDefault |
|
|
|
6 |
'| |
|
|
|
7 |
'=====================================================
|
|
|
8 |
%>
|
|
|
9 |
<%
|
|
|
10 |
Option explicit
|
|
|
11 |
Response.Expires = 0
|
|
|
12 |
%>
|
|
|
13 |
<!--#include file="common/globals.asp"-->
|
|
|
14 |
<!--#include file="common/config.asp"-->
|
|
|
15 |
<!--#include file="common/common_subs.asp"-->
|
|
|
16 |
<!--#include file="common/_bom_common.asp"-->
|
|
|
17 |
<%
|
|
|
18 |
'------------ ACCESS CONTROL ------------------
|
|
|
19 |
%>
|
|
|
20 |
<!--#include file="_access_control_general.asp"-->
|
|
|
21 |
<%
|
|
|
22 |
'------------ VARIABLE DEFINITION -------------
|
|
|
23 |
Dim rsQry
|
|
|
24 |
Dim sMessage
|
|
|
25 |
Dim NodeId
|
|
|
26 |
Dim NodeName
|
|
|
27 |
'------------ CONSTANTS DECLARATION -----------
|
|
|
28 |
'------------ VARIABLE INIT -------------------
|
|
|
29 |
'------------ CONDITIONS ----------------------
|
|
|
30 |
'----------------------------------------------
|
|
|
31 |
%>
|
|
|
32 |
<%
|
|
|
33 |
'------------ RUN BEFORE PAGE RENDER ----------
|
|
|
34 |
If (Request("action") <> "") Then
|
|
|
35 |
'-- Select Action
|
|
|
36 |
|
|
|
37 |
Select Case Request("action")
|
|
|
38 |
Case "btnCopyNode"
|
|
|
39 |
Call OpenInWindow ( "_CopyItems.asp?copy_type=node_id_list&node_id_list="& Request("node_id_list") &"&rfile="& SCRIPT_NAME & objPMod.ComposeURLWithout("rfile") )
|
|
|
40 |
Case "btnRemoveNodeBulk"
|
|
|
41 |
Call OpenInWindow ( "_DestroyNode.asp?rfile="& SCRIPT_NAME &"&node_id_list="& Request("node_id_list") & objPMod.ComposeURLWithout("node_id,rfile") )
|
|
|
42 |
|
|
|
43 |
End Select
|
|
|
44 |
|
|
|
45 |
End If
|
|
|
46 |
'----------------------------------------------
|
|
|
47 |
%>
|
|
|
48 |
<html>
|
|
|
49 |
<head>
|
|
|
50 |
<title>Deployment Manager</title>
|
|
|
51 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
|
|
52 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
53 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 6663 |
dpurdie |
54 |
<link href="scripts/deployment_manager.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
|
|
|
55 |
<script language="JavaScript" src="scripts/common.js?ver=<%=VixVerNum%>"></script>
|
| 5355 |
dpurdie |
56 |
</head>
|
|
|
57 |
|
|
|
58 |
<body leftmargin="0" topmargin="0">
|
|
|
59 |
<!-- HEADER ++++++++++++++++ -->
|
|
|
60 |
<!--#include file="_header.asp"-->
|
|
|
61 |
<!-- +++++++++++++++++++++++ -->
|
|
|
62 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
|
|
63 |
<!--#include file="_main_menu.asp"-->
|
|
|
64 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
|
|
65 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
66 |
<tr>
|
|
|
67 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
|
|
68 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
|
|
69 |
<!--#include file="_bom_browser.asp"-->
|
|
|
70 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
|
|
71 |
</td>
|
|
|
72 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
|
|
73 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
|
|
74 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
75 |
<tr>
|
|
|
76 |
<td valign="top" background="images/bg_blue.gif"></td>
|
|
|
77 |
<td align="right" valign="bottom" background="images/bg_blue.gif" class="body_txtw"><%Call RenderTitle( objBomCollector )%></td>
|
|
|
78 |
<td background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
|
|
79 |
</tr>
|
|
|
80 |
<tr>
|
|
|
81 |
<td width="1%" valign="top" background="images/bg_blue.gif"></td>
|
|
|
82 |
<td width="100%" valign="bottom" background="images/bg_blue.gif">
|
|
|
83 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
|
|
84 |
<!--#include file="_tabs_definition.asp"-->
|
|
|
85 |
<%
|
|
|
86 |
Set objTabControl = New TabControl
|
|
|
87 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
|
|
88 |
objTabControl.TabStyle = "StyleWinXP"
|
|
|
89 |
objTabControl.AddTabDefnition ( arrBomTabDef )
|
|
|
90 |
objTabControl.SelectByName("Network Nodes")
|
|
|
91 |
objTabControl.Render ()
|
|
|
92 |
%>
|
|
|
93 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
|
|
94 |
</td>
|
|
|
95 |
<td width="1%" background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
|
|
96 |
</tr>
|
|
|
97 |
<tr>
|
|
|
98 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
|
|
99 |
<td background="images/bg_bage_0.gif">
|
|
|
100 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
|
|
101 |
<%
|
|
|
102 |
'-- Define Action buttons on this tab
|
|
|
103 |
aTabBtnsDef = Array("btnAddNode", "btnRemoveNodeBulk", "height=30", "btnSortNode", "height=30","btnCopyNode", "btnPasteNode", "btnNodeSpec")
|
|
|
104 |
|
|
|
105 |
Call LoadTabActionButtons ( aTabBtnsDef, objBtnControl )
|
|
|
106 |
|
|
|
107 |
' -- Tell control if buttons need to be readonly actions
|
|
|
108 |
objBtnControl.IsReadonlyAction = objBomCollector.Item("is_readonly")
|
|
|
109 |
|
|
|
110 |
' -- Conditions
|
|
|
111 |
If Session( enumSESSION_COPY_TYPE ) <> "node_id_list" Then
|
|
|
112 |
Call objBtnControl.Active ( "btnPasteNode", "N" )
|
|
|
113 |
End If
|
|
|
114 |
|
|
|
115 |
' -- Render Buttons
|
|
|
116 |
Call objBtnControl.Render ( aTabBtnsDef )
|
|
|
117 |
|
|
|
118 |
%>
|
|
|
119 |
|
|
|
120 |
<!-- +++++++++++++++++++++++++++++++++++ -->
|
|
|
121 |
</td>
|
|
|
122 |
<td background="images/bg_blue.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
|
|
123 |
</tr>
|
|
|
124 |
<tr>
|
|
|
125 |
<td> </td>
|
|
|
126 |
<td> </td>
|
|
|
127 |
<td valign="top"><%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) = "hide" Then%><a href="<%=SCRIPT_NAME%>?user_bar=<%=enumDEFAULT%>&<%=objPMod.ComposeURL()%>"><img src="icons/b_left.gif" title="Maximize favourits" width="13" height="13" vspace="5" border="0"></a><%End If%></td>
|
|
|
128 |
</tr>
|
|
|
129 |
</table>
|
|
|
130 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
|
|
131 |
<tr>
|
|
|
132 |
<td>
|
|
|
133 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
134 |
<!-- BOM comments -->
|
|
|
135 |
<%
|
|
|
136 |
'If objBomCollector.Item ("bom_comments") <> "" Then
|
|
|
137 |
' Call Messenger ( objFormater.TextToHtml( objBomCollector.Item ("bom_comments") ), 3, 400 )
|
|
|
138 |
'End If
|
|
|
139 |
%>
|
|
|
140 |
|
|
|
141 |
|
|
|
142 |
|
|
|
143 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
144 |
<table width="100%" border="0" cellspacing="3" cellpadding="0">
|
|
|
145 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
|
|
146 |
<tr>
|
|
|
147 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
148 |
<td width="30%" background="images/bg_table_border.gif"><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
|
|
149 |
<tr>
|
|
|
150 |
<td align="right" nowrap background="images/bg_table_col.gif" class="body_col"> Network Node</td>
|
|
|
151 |
</tr>
|
|
|
152 |
</table></td>
|
|
|
153 |
<td width="1" background="images/bg_table_col.gif" class="body_col">Version</td>
|
|
|
154 |
<td width="70%" align="right" background="images/bg_table_col.gif" class="body_col">Installation Comments</td>
|
|
|
155 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
156 |
</tr>
|
|
|
157 |
<%
|
|
|
158 |
' Load some action buttons
|
|
|
159 |
Call objBtnControl.LoadActionButtons ( Array("btnEditNode", "btnRemoveNode"), OraDatabase )
|
|
|
160 |
objBtnControl.ButtonSpacer = 1
|
|
|
161 |
|
|
|
162 |
OraDatabase.Parameters.Add "BOM_ID", dbPARbom_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
163 |
|
|
|
164 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("NodeList.sql"), ORADYN_DEFAULT )
|
|
|
165 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
|
|
166 |
NodeId = rsQry("node_id")
|
|
|
167 |
NodeName = rsQry("node_name").Value
|
|
|
168 |
%>
|
|
|
169 |
<tr>
|
|
|
170 |
<td align="center" valign="top"><input type="checkbox" name="node_id_list" value="<%=NodeId%>"></td>
|
|
|
171 |
<td nowrap class="body_row" valign="top"><a href="NodeDefault.asp?node_id=<%=NodeId%>&<%=objPMod.ComposeURL()%>" class="body_link" title="See Node Details"><img src="icons/<%=rsQry("node_icon")%>" hspace="2" align="absmiddle" border="0"><%=NodeName%></a></td>
|
|
|
172 |
<td align="center" valign="top" class="body_rowlite"><%=rsQry("node_version") &"."& rsQry("node_life_cycle") %></td>
|
|
|
173 |
<td class="body_rowlite" valign="top"><%=objFormater.TextToHtml( rsQry("node_comments") )%></td>
|
|
|
174 |
<td align="center" valign="top"><%Call objBtnControl.Render ( Array("btnEditNode", "btnRemoveNode") )%></td>
|
|
|
175 |
</tr>
|
|
|
176 |
<%rsQry.MoveNext%>
|
|
|
177 |
|
|
|
178 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
|
|
179 |
<tr>
|
|
|
180 |
<td colspan="5" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
181 |
</tr>
|
|
|
182 |
<%End If%>
|
|
|
183 |
|
|
|
184 |
<%
|
|
|
185 |
WEnd
|
|
|
186 |
|
|
|
187 |
OraDatabase.Parameters.Remove "BOM_ID"
|
|
|
188 |
%>
|
|
|
189 |
<tr>
|
|
|
190 |
<td colspan="5" background="images/bg_table_border.gif">
|
|
|
191 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
|
|
192 |
<tr>
|
|
|
193 |
<td nowrap background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
194 |
</tr>
|
|
|
195 |
</table>
|
|
|
196 |
</td>
|
|
|
197 |
</tr>
|
|
|
198 |
<%=objPMod.ComposeHiddenTags()%>
|
|
|
199 |
<input type="hidden" name="action" value="true">
|
|
|
200 |
</form>
|
|
|
201 |
</table>
|
|
|
202 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
203 |
</td>
|
|
|
204 |
</tr>
|
|
|
205 |
</table>
|
|
|
206 |
</td>
|
|
|
207 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
|
|
208 |
<%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) <> "hide" Then%>
|
|
|
209 |
<!-- PERSONAL PANE +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
210 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
211 |
<tr>
|
|
|
212 |
<td width="100%" valign="bottom" background="images/bg_node_icon.gif"><%=GetNodeImage ( dbPARnode_id )%></td>
|
|
|
213 |
<td width="1" background="images/bg_node_icon.gif"><img src="images/spacer.gif" width="1" height="97"></td>
|
|
|
214 |
</tr>
|
|
|
215 |
</table>
|
|
|
216 |
<a href="<%=SCRIPT_NAME%>?user_bar=hide&<%=objPMod.ComposeURL()%>"><img src="icons/b_right.gif" title="Minimize favourits" width="13" height="13" vspace="5" border="0"></a> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
217 |
<tr>
|
|
|
218 |
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
219 |
<tr>
|
|
|
220 |
<td valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
221 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="10" height="3"></td>
|
|
|
222 |
<td align="right" valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
223 |
</tr>
|
|
|
224 |
<tr>
|
|
|
225 |
<td colspan="3" background="images/bg_favourits2.gif"><table width="100%" border="0" cellspacing="5" cellpadding="0">
|
|
|
226 |
<tr>
|
|
|
227 |
<td valign="top" class="fav_txt"><span class="fav_head">Reason for release</span><br>
|
|
|
228 |
<br>
|
|
|
229 |
<!-- This version needs to be rebuild on new sysbase_types 1.5.0.mas<br> -->
|
|
|
230 |
</td>
|
|
|
231 |
</tr>
|
|
|
232 |
</table></td>
|
|
|
233 |
</tr>
|
|
|
234 |
<tr>
|
|
|
235 |
<td valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
236 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="190" height="3"></td>
|
|
|
237 |
<td align="right" valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
238 |
</tr>
|
|
|
239 |
</table>
|
|
|
240 |
<br>
|
|
|
241 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
242 |
<tr>
|
|
|
243 |
<td valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
244 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="10" height="3"></td>
|
|
|
245 |
<td align="right" valign="top" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
246 |
</tr>
|
|
|
247 |
<tr background="images/bg_gray.gif">
|
|
|
248 |
<td colspan="3" background="images/bg_favourits2.gif"><table width="100%" border="0" cellspacing="5" cellpadding="0">
|
|
|
249 |
<tr>
|
|
|
250 |
<td valign="top" class="fav_txt"><span class="fav_head">Fixed Issues</span><br>
|
|
|
251 |
<br>
|
|
|
252 |
<table width="100%" border="0" cellspacing="0" cellpadding="2">
|
|
|
253 |
<!-- <tr>
|
|
|
254 |
<td><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
255 |
<td><a href="#" class="fav_link">DEVI-021532</a></td>
|
|
|
256 |
</tr>
|
|
|
257 |
<tr>
|
|
|
258 |
<td><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
259 |
<td><a href="#" class="fav_link">DEVI-021534</a></td>
|
|
|
260 |
</tr>
|
|
|
261 |
<tr>
|
|
|
262 |
<td width="1%"><img src="icons/i_bulet.gif" width="4" height="4" hspace="5"></td>
|
|
|
263 |
<td width="100%"><a href="#" class="fav_link">DEVI-021536</a></td>
|
|
|
264 |
</tr> -->
|
|
|
265 |
</table></td>
|
|
|
266 |
</tr>
|
|
|
267 |
</table></td>
|
|
|
268 |
</tr>
|
|
|
269 |
<tr>
|
|
|
270 |
<td valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
271 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="190" height="3"></td>
|
|
|
272 |
<td align="right" valign="bottom" background="images/bg_bage_0a.gif"><img src="images/dot_white.gif" width="1" height="1"></td>
|
|
|
273 |
</tr>
|
|
|
274 |
</table></td>
|
|
|
275 |
<td width="1%"><img src="images/spacer.gif" width="15" height="400"></td>
|
|
|
276 |
</tr>
|
|
|
277 |
</table>
|
|
|
278 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
279 |
<%End If%>
|
|
|
280 |
</td>
|
|
|
281 |
</tr>
|
|
|
282 |
<tr>
|
|
|
283 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
|
|
284 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
285 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
286 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
287 |
</tr>
|
|
|
288 |
<tr>
|
|
|
289 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
|
|
290 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
291 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
|
|
292 |
<td bgcolor="#FFFFFF"> </td>
|
|
|
293 |
</tr>
|
|
|
294 |
</table>
|
|
|
295 |
<!-- FOOTER ++++++++++++++++ -->
|
|
|
296 |
<!--#include file="_footer.asp"-->
|
|
|
297 |
<!-- +++++++++++++++++++++++ -->
|
|
|
298 |
</body>
|
|
|
299 |
</html>
|