| 119 |
ghuddy |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
|
|
5 |
'| Patches |
|
|
|
6 |
'| |
|
|
|
7 |
'=====================================================
|
|
|
8 |
%>
|
|
|
9 |
<%
|
|
|
10 |
Option explicit
|
|
|
11 |
' Good idea to set when using redirect
|
|
|
12 |
Response.Expires = 0 ' always load the page, dont store
|
|
|
13 |
%>
|
|
|
14 |
<!--#include file="common/conf.asp"-->
|
|
|
15 |
<!--#include file="common/globals.asp"-->
|
|
|
16 |
<!--#include file="common/formating.asp"-->
|
|
|
17 |
<!--#include file="common/qstr.asp"-->
|
|
|
18 |
<!--#include file="common/common_subs.asp"-->
|
|
|
19 |
<!--#include file="common/common_dbedit.asp"-->
|
|
|
20 |
<!--#include file="_tabs.asp"-->
|
|
|
21 |
<!--#include file="_action_buttons.asp"-->
|
|
|
22 |
<!--#include file="common/_package_common.asp"-->
|
|
|
23 |
<%
|
|
|
24 |
'------------ ACCESS CONTROL ------------------
|
|
|
25 |
%>
|
|
|
26 |
<!--#include file="_access_control_general.asp"-->
|
|
|
27 |
<%
|
|
|
28 |
'------------ Variable Definition -------------
|
|
|
29 |
Dim patchRecCount
|
|
|
30 |
Dim rsTemp
|
|
|
31 |
Dim dOptionsFilter
|
|
|
32 |
Dim rsQry
|
|
|
33 |
'------------ Constants Declaration -----------
|
|
|
34 |
Const LIMG_FILTER_ON = "<img src='images/i_data_table.gif' border='0' align='absmiddle' hspace='0' title='Filter in use.'>"
|
|
|
35 |
Const LIMG_FILTER_OFF = "<img src='images/i_data_table_off.gif' border='0' align='absmiddle' hspace='0' title='Filter not in use.'>"
|
|
|
36 |
Const LIMG_DROP_DOWN_ARROW = "<img src='images/i_drop_down_arrow.gif' width='5' height='15' hspace='1' border='0' align='absmiddle'>"
|
|
|
37 |
Const LMAX_ROWS = 50
|
|
|
38 |
'------------ Variable Init -------------------
|
|
|
39 |
Set dOptionsFilter = CreateObject("Scripting.Dictionary")
|
|
|
40 |
'----------------------------------------------
|
|
|
41 |
%>
|
|
|
42 |
<%
|
|
|
43 |
'------------------------------------------------------------------------------------------------------------------------------------
|
|
|
44 |
Function PatchIcon ( cIsPatch, cIsPatchObsolete )
|
|
|
45 |
If IsNull(cIsPatch) Then
|
|
|
46 |
PatchIcon = "<img src='images/rex_images/ext_blank.gif' width='16' height='16' border='0' align='absmiddle'>"
|
|
|
47 |
Else
|
|
|
48 |
If IsNull(cIsPatchObsolete) Then
|
|
|
49 |
PatchIcon = "<img src='images/i_patch_small.gif' width='16' height='16' border='0' align='absmiddle' >"
|
|
|
50 |
Else
|
|
|
51 |
PatchIcon = "<img src='images/i_patch_small_obsolete.gif' width='16' height='16' border='0' align='absmiddle' title='Patch is obsolete'>"
|
|
|
52 |
End If
|
|
|
53 |
End If
|
|
|
54 |
End Function
|
|
|
55 |
'-----------------------------------------------------------------------------------------------------------------
|
|
|
56 |
Sub GetOptionsFilterValues ( outOptionsFilter )
|
|
|
57 |
Dim Val, aValues
|
|
|
58 |
|
|
|
59 |
If (Request("btn") <> "") Then
|
|
|
60 |
|
|
|
61 |
If (Request("optionsfilter") <> "") Then
|
|
|
62 |
' Get values from query string
|
|
|
63 |
aValues = Split( Replace(Request("optionsfilter"), " ", ""), "," )
|
|
|
64 |
|
|
|
65 |
For Each Val In aValues
|
|
|
66 |
|
|
|
67 |
outOptionsFilter.Item (CStr( Val )) = Val
|
|
|
68 |
|
|
|
69 |
Next
|
|
|
70 |
|
|
|
71 |
' Store current setting in cookie
|
|
|
72 |
Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_PATCH_OPTIONS_FILTER) = Replace(Request("optionsfilter"), " ", "")
|
|
|
73 |
Else
|
|
|
74 |
' Empty cookie
|
|
|
75 |
Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_PATCH_OPTIONS_FILTER) = ""
|
|
|
76 |
End If
|
|
|
77 |
|
|
|
78 |
|
|
|
79 |
ElseIf Request.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_PATCH_OPTIONS_FILTER) <> "" Then
|
|
|
80 |
|
|
|
81 |
' Get values from cookie
|
|
|
82 |
aValues = Split( Replace( Request.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_PATCH_OPTIONS_FILTER), " ", ""), ",")
|
|
|
83 |
|
|
|
84 |
For Each Val In aValues
|
|
|
85 |
|
|
|
86 |
outOptionsFilter.Item (CStr( Val )) = Val
|
|
|
87 |
|
|
|
88 |
Next
|
|
|
89 |
|
|
|
90 |
End If
|
|
|
91 |
|
|
|
92 |
End Sub
|
|
|
93 |
'-----------------------------------------------------------------------------------------------------------------
|
|
|
94 |
Function GetIsOptionsFilterInUseIcon()
|
|
|
95 |
GetIsOptionsFilterInUseIcon = LIMG_FILTER_OFF & LIMG_DROP_DOWN_ARROW
|
|
|
96 |
|
|
|
97 |
If dOptionsFilter.Count > 0 Then
|
|
|
98 |
GetIsOptionsFilterInUseIcon = LIMG_FILTER_ON & LIMG_DROP_DOWN_ARROW
|
|
|
99 |
End If
|
|
|
100 |
|
|
|
101 |
End Function
|
|
|
102 |
'-----------------------------------------------------------------------------------------------------------------
|
|
|
103 |
Function GetIsOptionsFilterChecked( nFilterId )
|
|
|
104 |
|
|
|
105 |
If dOptionsFilter.Exists ( CStr(nFilterId) ) Then
|
|
|
106 |
GetIsOptionsFilterChecked = "checked"
|
|
|
107 |
End If
|
|
|
108 |
|
|
|
109 |
End Function
|
|
|
110 |
'------------------------------------------------------------------------------------------------------------------------------------
|
|
|
111 |
%>
|
|
|
112 |
<%
|
|
|
113 |
'------------------------- MAIN LINE ---------------------------
|
|
|
114 |
|
|
|
115 |
Call GetOptionsFilterValues ( dOptionsFilter )
|
|
|
116 |
|
|
|
117 |
'---------------------------------------------------------------
|
|
|
118 |
%>
|
|
|
119 |
<html>
|
|
|
120 |
<title><%=Title(Request("rtag_id"))%></title>
|
|
|
121 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
122 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
123 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
|
|
124 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
|
|
125 |
<script language="JavaScript" src="images/common.js"></script>
|
|
|
126 |
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
|
|
|
127 |
|
|
|
128 |
<!-- DROPDOWN MENUS -->
|
|
|
129 |
<!--#include file="_menu_def.asp"-->
|
|
|
130 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
|
|
131 |
</head>
|
|
|
132 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
|
|
|
133 |
<!-- MENU LAYERS -------------------------------------->
|
|
|
134 |
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
|
|
|
135 |
<!----------------------------------------------------->
|
|
|
136 |
</div>
|
|
|
137 |
<!-- HEADER -->
|
|
|
138 |
<!--#include file="_header.asp"-->
|
|
|
139 |
<!-- BODY ---->
|
|
|
140 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
141 |
<tr>
|
|
|
142 |
<td valign="top" width="1" background="images/bg_bage.gif">
|
|
|
143 |
<!-- LEFT -->
|
|
|
144 |
<!--#include file="_environment.asp"-->
|
|
|
145 |
</td>
|
|
|
146 |
<td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
|
|
147 |
<td valign="top" width="100%">
|
|
|
148 |
<!-- MIDDLE -->
|
|
|
149 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
150 |
<tr>
|
|
|
151 |
<td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
|
|
|
152 |
<td width="100%" background="images/bg_action_norm.gif"><!--#include file="_pkg_action_buttons.asp"--></td>
|
|
|
153 |
<td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
|
|
|
154 |
</tr>
|
|
|
155 |
<!-- PACKAGE PROPERTIES ---------------------------- -->
|
|
|
156 |
<%Call RenderPackageProperties ()%>
|
|
|
157 |
<tr>
|
|
|
158 |
<td background="images/bg_lght_gray.gif"> </td>
|
|
|
159 |
<td valign="bottom" background="images/bg_lght_gray.gif">
|
|
|
160 |
<table width="100" border="0" cellspacing="0" cellpadding="0">
|
|
|
161 |
<tr>
|
|
|
162 |
<td><IMG height=1 src="images/spacer.gif" width=50></td>
|
|
|
163 |
<td>
|
|
|
164 |
<!-- TABS ------------------------------------->
|
|
|
165 |
<%Call Generate_Tab_Menu ( TABarray1, "Patches", "orange" )%>
|
|
|
166 |
</td>
|
|
|
167 |
</tr>
|
|
|
168 |
</table>
|
|
|
169 |
</td>
|
|
|
170 |
<td background="images/bg_lght_gray.gif"> </td>
|
|
|
171 |
</tr>
|
|
|
172 |
<tr>
|
|
|
173 |
<td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
|
|
|
174 |
<td background="images/lbox_bg_orange.gif">
|
|
|
175 |
<!-- TAB ACTION BUTTONS ------------------------------------->
|
|
|
176 |
<%Call Action_Buttons ( "Patches" )%>
|
|
|
177 |
</td>
|
|
|
178 |
<td background="images/lbox_bg_orange.gif"> </td>
|
|
|
179 |
</tr>
|
|
|
180 |
<tr>
|
|
|
181 |
<td></td>
|
|
|
182 |
<td valign="top">
|
|
|
183 |
<!-- DETAILS ------------------------------------------------->
|
|
|
184 |
|
|
|
185 |
|
|
|
186 |
<br>
|
|
|
187 |
<%If CStr(pkgInfoHash.Item("pkg_state")) = CStr( enumPKG_STATE_NEW_PATCH ) Then%>
|
|
|
188 |
<%Call DisplayInfo ( "NEW_PATCH_AVAILABLE", "100%" )%>
|
|
|
189 |
<%End If%>
|
|
|
190 |
<%
|
|
|
191 |
OraDatabase.Parameters.Add "PV_ID", parPv_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
192 |
|
|
|
193 |
If (GetIsOptionsFilterChecked(enumPATCH_HIDE_OBSOLETE) <> "") Then
|
|
|
194 |
OraDatabase.Parameters.Add "HIDE_OBSOLETE", "Y", ORAPARM_INPUT, ORATYPE_CHAR
|
|
|
195 |
Else
|
|
|
196 |
OraDatabase.Parameters.Add "HIDE_OBSOLETE", "N", ORAPARM_INPUT, ORATYPE_CHAR
|
|
|
197 |
End If
|
|
|
198 |
|
|
|
199 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("Patches.sql"), cint(0))
|
|
|
200 |
|
|
|
201 |
OraDatabase.Parameters.Remove "PV_ID"
|
|
|
202 |
OraDatabase.Parameters.Remove "HIDE_OBSOLETE"
|
|
|
203 |
|
|
|
204 |
patchRecCount = rsTemp.RecordCount
|
|
|
205 |
%>
|
|
|
206 |
<!-- OPTIONS FILTER +++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
207 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
208 |
<form name="FornName" method="get" action="<%=ScriptName%>">
|
|
|
209 |
<input type="hidden" name="pv_id" value="<%=parPv_Id%>">
|
|
|
210 |
<input type="hidden" name="rtag_id" value="<%=parRtag_Id%>">
|
|
|
211 |
<tr>
|
|
|
212 |
<td width="100%"></td>
|
|
|
213 |
<td width="1" align="right">
|
|
|
214 |
<fieldset>
|
|
|
215 |
<legend><a href="javascript:;" class="body_scol" onClick="ToggleDisplay('divOptionsFilter');" ><%=GetIsOptionsFilterInUseIcon() %> Options...</a></legend>
|
|
|
216 |
<div name="divOptionsFilter" id="divOptionsFilter" class="body_txt" style="display:none;">
|
|
|
217 |
<br>
|
|
|
218 |
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
|
|
219 |
<tr>
|
|
|
220 |
<td width="1" background="images/bg_action_norm.gif"><input name="optionsfilter" type="checkbox" value="<%=enumPATCH_SHOW_ALL%>" <%=GetIsOptionsFilterChecked(enumPATCH_SHOW_ALL)%>></td>
|
|
|
221 |
<td width="100%" nowrap background="images/bg_action_norm.gif" class="form_field">Show All</td>
|
|
|
222 |
</tr>
|
|
|
223 |
<tr>
|
|
|
224 |
<td background="images/bg_action_norm.gif"><input type="checkbox" name="optionsfilter" value="<%=enumPATCH_HIDE_OBSOLETE%>" <%=GetIsOptionsFilterChecked(enumPATCH_HIDE_OBSOLETE)%>></td>
|
|
|
225 |
<td nowrap background="images/bg_action_norm.gif" class="form_field">Hide Obsolete</td>
|
|
|
226 |
</tr>
|
|
|
227 |
<tr>
|
|
|
228 |
<td background="images/bg_action_norm.gif"> </td>
|
|
|
229 |
<td background="images/bg_action_norm.gif"><input name="btn" type="submit" class="form_btn" id="btn" value="Apply"></td>
|
|
|
230 |
</tr>
|
|
|
231 |
</table>
|
|
|
232 |
|
|
|
233 |
</div>
|
|
|
234 |
</fieldset>
|
|
|
235 |
</td></tr>
|
|
|
236 |
</form>
|
|
|
237 |
</table>
|
|
|
238 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
239 |
<%
|
|
|
240 |
' Shift Cursor Position
|
|
|
241 |
If (GetIsOptionsFilterChecked(enumPATCH_SHOW_ALL) = "") AND (patchRecCount > 0) Then
|
|
|
242 |
If patchRecCount > LMAX_ROWS Then
|
|
|
243 |
rsTemp.MoveTo ( patchRecCount - LMAX_ROWS )
|
|
|
244 |
End If
|
|
|
245 |
|
|
|
246 |
End If
|
|
|
247 |
%>
|
|
|
248 |
<span class="body_colb">Patches</span><br>
|
|
|
249 |
|
|
|
250 |
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
|
|
251 |
<tr>
|
|
|
252 |
<td align="center" background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Installation<br>Order</td>
|
|
|
253 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"></td>
|
|
|
254 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Patch Version </td>
|
|
|
255 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Reason for this version</td>
|
|
|
256 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Release Date</td>
|
|
|
257 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field"></td>
|
|
|
258 |
</tr>
|
|
|
259 |
|
|
|
260 |
<%If patchRecCount < 1 Then%>
|
|
|
261 |
<tr>
|
|
|
262 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
263 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
264 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
265 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
266 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
267 |
<td background="images/bg_form_lightgray.gif" class="form_item"> </td>
|
|
|
268 |
</tr>
|
|
|
269 |
<%End If%>
|
|
|
270 |
<%
|
|
|
271 |
While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))
|
|
|
272 |
%>
|
|
|
273 |
|
|
|
274 |
<%
|
|
|
275 |
' ---------- PATCH ----------
|
|
|
276 |
If Cstr(rsTemp("patch_id")) = "0" Then
|
|
|
277 |
%>
|
|
|
278 |
<tr>
|
|
|
279 |
<td align="center" nowrap background="images/bg_form_lightgray.gif" valign="top"><a href='javascript:;' onClick="MM_openBrWindow('_wform_patch_install_order.asp?patch_id=<%=rsTemp("ppatch_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','InstallOrder','resizable=yes,width=400,height=250')" class="txt_linked" title="Change Install Order"><%=rsTemp("install_order")%></a></td>
|
|
|
280 |
<td align="center" nowrap background="images/bg_form_lightgray.gif" valign="top"><%If rsTemp("dlocked") = "Y" Then%><%=imgLocked%><%End If%></td>
|
|
|
281 |
<td background="images/bg_form_lightgray.gif" nowrap valign="top"><a href="fixed_issues.asp?pv_id=<%=rsTemp("ppatch_id")%>&rtag_id=<%=parRtag_id%>" class="txt_linked"><%=PatchIcon ( rsTemp("is_patch"), rsTemp("is_obsolete") )%><%=rsTemp("pkg_version")%></a></td>
|
|
|
282 |
<td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=NewLine_To_BR( To_HTML ( rsTemp("comments") ) )%><br><%=NewLine_To_BR( To_HTML ( rsTemp("obsolete_comments") ) )%></td>
|
|
|
283 |
<td background="images/bg_form_lightgray.gif" class="form_item" nowrap valign="top"><%=EuroDateTime(rsTemp("release_stamp"))%><%If NOT IsNull(rsTemp("release_stamp"))Then%> by <a href="mailto:<%=rsTemp("user_email")%>" class="txt_linked"><%=rsTemp("full_name")%></a><%End If%></td>
|
|
|
284 |
<%If rsTemp("dlocked") = "N" Then%>
|
|
|
285 |
<td align="center" background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="_remove_patch.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>&patch_id=<%=rsTemp("ppatch_id")%>" onClick="return confirmDelete('this patch');"><img src="images/i_delete.gif" alt="Remove from list." width="13" height="12" hspace="3" border="0"></a></td>
|
|
|
286 |
<%Else%>
|
|
|
287 |
<td align="center" background="images/bg_form_lightgray.gif" class="form_item" valign="top"><img src="images/i_delete_disable.gif" alt="Remove disabled." width="13" height="12" hspace="3" border="0"></td>
|
|
|
288 |
<%End If%>
|
|
|
289 |
</tr>
|
|
|
290 |
|
|
|
291 |
<%
|
|
|
292 |
Else
|
|
|
293 |
' --------- DEPENDENCY ---------
|
|
|
294 |
%>
|
|
|
295 |
<tr>
|
|
|
296 |
<td align="center" nowrap background="images/bg_form_lightgray.gif"></td>
|
|
|
297 |
<td align="center" nowrap background="images/bg_form_lightgray.gif"><%If rsTemp("dlocked") = "Y" Then%><%=imgLocked%><%End If%></td>
|
|
|
298 |
<td background="images/bg_form_lightgray.gif" nowrap valign="top"><IMG src="images/spacer.gif" width="20" align="absmiddle"><a href="fixed_issues.asp?pv_id=<%=rsTemp("patch_id")%>&rtag_id=<%=parRtag_id%>" class="txt_linked"><%=PatchIcon ( rsTemp("is_patch"), rsTemp("is_obsolete") )%><%=rsTemp("pkg_name") &" "& rsTemp("pkg_version")%></a></td>
|
|
|
299 |
<td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=NewLine_To_BR( To_HTML ( rsTemp("comments") ) )%><br><%=NewLine_To_BR( To_HTML ( rsTemp("obsolete_comments") ) )%></td>
|
|
|
300 |
<td background="images/bg_form_lightgray.gif" class="form_item" nowrap valign="top"><%=EuroDateTime(rsTemp("release_stamp"))%><%If NOT IsNull(rsTemp("release_stamp"))Then%> by <a href="mailto:<%=rsTemp("user_email")%>" class="txt_linked"><%=rsTemp("full_name")%></a><%End If%></td>
|
|
|
301 |
<td align="center" background="images/bg_form_lightgray.gif" class="form_item" valign="top"></td>
|
|
|
302 |
</tr>
|
|
|
303 |
|
|
|
304 |
<%End If%>
|
|
|
305 |
|
|
|
306 |
|
|
|
307 |
<%rsTemp.MoveNext
|
|
|
308 |
WEnd
|
|
|
309 |
rsTemp.Close
|
|
|
310 |
Set rsTemp = nothing
|
|
|
311 |
|
|
|
312 |
%>
|
|
|
313 |
</table>
|
|
|
314 |
<!------------------------------------------------------------>
|
|
|
315 |
<br><br>
|
|
|
316 |
<!-- END DETAILS ------------------------------------------------->
|
|
|
317 |
</td>
|
|
|
318 |
<td> </td>
|
|
|
319 |
</tr>
|
|
|
320 |
</table>
|
|
|
321 |
<!-- END MIDDLE -------->
|
|
|
322 |
</td>
|
|
|
323 |
</tr>
|
|
|
324 |
</table>
|
|
|
325 |
<!-- FOOTER -->
|
|
|
326 |
<!--#include file="_footer.asp"-->
|
|
|
327 |
</body>
|
|
|
328 |
</html>
|
|
|
329 |
<%
|
|
|
330 |
Call Destroy_All_Objects
|
|
|
331 |
%>
|