| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| 3 |
'=====================================================
|
3 |
'=====================================================
|
| 4 |
'| |
|
4 |
'| |
|
| 5 |
'| OSDefault |
|
5 |
'| OSDefault |
|
| 6 |
'| |
|
6 |
'| |
|
| 7 |
'=====================================================
|
7 |
'=====================================================
|
| 8 |
%>
|
8 |
%>
|
| 9 |
<%
|
9 |
<%
|
| 10 |
Option explicit
|
10 |
Option explicit
|
| 11 |
Response.Expires = 0
|
11 |
Response.Expires = 0
|
| 12 |
%>
|
12 |
%>
|
| 13 |
<!--#include file="common/globals.asp"-->
|
13 |
<!--#include file="common/globals.asp"-->
|
| 14 |
<!--#include file="common/config.asp"-->
|
14 |
<!--#include file="common/config.asp"-->
|
| 15 |
<!--#include file="common/common_subs.asp"-->
|
15 |
<!--#include file="common/common_subs.asp"-->
|
| 16 |
<!--#include file="common/_os_common.asp"-->
|
16 |
<!--#include file="common/_os_common.asp"-->
|
| 17 |
<%
|
17 |
<%
|
| 18 |
'------------ ACCESS CONTROL ------------------
|
18 |
'------------ ACCESS CONTROL ------------------
|
| 19 |
%>
|
19 |
%>
|
| 20 |
<!--#include file="_access_control_general.asp"-->
|
20 |
<!--#include file="_access_control_general.asp"-->
|
| 21 |
<%
|
21 |
<%
|
| 22 |
'------------ VARIABLE DEFINITION -------------
|
22 |
'------------ VARIABLE DEFINITION -------------
|
| 23 |
Dim rsQry
|
23 |
Dim rsQry
|
| 24 |
Dim selected, nodeSpec
|
24 |
Dim selected, nodeSpec
|
| 25 |
Dim parHold_selection
|
25 |
Dim parHold_selection
|
| 26 |
Dim ProdId
|
26 |
Dim ProdId
|
| 27 |
Dim ProdName
|
27 |
Dim ProdName
|
| 28 |
Dim ProdVersion
|
28 |
Dim ProdVersion
|
| 29 |
'------------ CONSTANTS DECLARATION -----------
|
29 |
'------------ CONSTANTS DECLARATION -----------
|
| 30 |
'------------ VARIABLE INIT -------------------
|
30 |
'------------ VARIABLE INIT -------------------
|
| 31 |
parHold_selection = Request("hold_selection")
|
31 |
parHold_selection = Request("hold_selection")
|
| 32 |
'------------ CONDITIONS ----------------------
|
32 |
'------------ CONDITIONS ----------------------
|
| 33 |
'----------------------------------------------
|
33 |
'----------------------------------------------
|
| 34 |
%>
|
34 |
%>
|
| 35 |
<%
|
35 |
<%
|
| 36 |
'------------ RUN BEFORE PAGE RENDER ----------
|
36 |
'------------ RUN BEFORE PAGE RENDER ----------
|
| 37 |
If (Request("action") <> "") Then
|
37 |
If (Request("action") <> "") Then
|
| 38 |
'-- Select Action
|
38 |
'-- Select Action
|
| 39 |
|
39 |
|
| 40 |
Select Case Request("action")
|
40 |
Select Case Request("action")
|
| 41 |
Case "btnMoveUpProd"
|
41 |
Case "btnMoveUpProd"
|
| 42 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("-") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
42 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("-") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 43 |
Case "btnMoveDownProd"
|
43 |
Case "btnMoveDownProd"
|
| 44 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("+") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
44 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("+") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 45 |
Case "btnAcceptRejectProd"
|
45 |
Case "btnAcceptRejectProd"
|
| 46 |
Call OpenInWindow ( "_AcceptRejectProd.asp?prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
46 |
Call OpenInWindow ( "_AcceptRejectProd.asp?prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 47 |
Case "btnCopyProd"
|
47 |
Case "btnCopyProd"
|
| 48 |
Call OpenInWindow ( "_CopyItems.asp?copy_type=prod_id_list&prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
48 |
Call OpenInWindow ( "_CopyItems.asp?copy_type=prod_id_list&prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 49 |
Case "btnRemoveProdBulk"
|
49 |
Case "btnRemoveProdBulk"
|
| 50 |
Call OpenInWindow ( "_RemoveProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL() )
|
50 |
Call OpenInWindow ( "_RemoveProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL() )
|
| 51 |
Case "btnIsNodeSpec"
|
51 |
Case "btnIsNodeSpec"
|
| 52 |
Call OpenInWindow ( "_AddProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("node_spec_list") &"&"& objPMod.ComposeURL() )
|
52 |
Call OpenInWindow ( "_AddProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("node_spec_list") &"&"& objPMod.ComposeURL() )
|
| 53 |
Case "btnRemoveObsoletePatches"
|
53 |
Case "btnRemoveObsoletePatches"
|
| 54 |
Call OpenInWindow ( "_RemoveObsoletePatches.asp?rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
54 |
Call OpenInWindow ( "_RemoveObsoletePatches.asp?rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 55 |
On Error Resume Next
|
55 |
On Error Resume Next
|
| 56 |
|
56 |
|
| 57 |
objEH.Try
|
57 |
objEH.Try
|
| 58 |
If Request("prod_id_list") <> "" Then
|
58 |
If Request("prod_id_list") <> "" Then
|
| 59 |
Call OpenChildWindow ("AddNewVersion","wAddNewVersion.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL(), "600", "600", "True")
|
59 |
Call OpenChildWindow ("AddNewVersion","wAddNewVersion.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL(), "600", "600", "True")
|
| 60 |
Else
|
60 |
Else
|
| 61 |
Err.Raise 8, "Please select a product."
|
61 |
Err.Raise 8, "Please select a product."
|
| 62 |
End If
|
62 |
End If
|
| 63 |
|
63 |
|
| 64 |
objEH.Catch
|
64 |
objEH.Catch
|
| 65 |
|
65 |
|
| 66 |
End Select
|
66 |
End Select
|
| 67 |
|
67 |
|
| 68 |
End If
|
68 |
End If
|
| 69 |
'----------------------------------------------
|
69 |
'----------------------------------------------
|
| 70 |
%>
|
70 |
%>
|
| 71 |
<html>
|
71 |
<html>
|
| 72 |
<head>
|
72 |
<head>
|
| 73 |
<title>Production Manager</title>
|
73 |
<title>Production Manager</title>
|
| 74 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
74 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 75 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
75 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
| 76 |
<link href="scripts/deployment_manager.css" rel="stylesheet" type="text/css">
|
76 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 77 |
<script language="JavaScript" src="scripts/common.js"></script>
|
77 |
<link href="scripts/deployment_manager.css" rel="stylesheet" type="text/css">
|
| 78 |
|
78 |
<script language="JavaScript" src="scripts/common.js"></script>
|
| 79 |
</head>
|
79 |
|
| 80 |
|
80 |
</head>
|
| 81 |
<body leftmargin="0" topmargin="0">
|
81 |
|
| 82 |
<!-- HEADER ++++++++++++++++ -->
|
82 |
<body leftmargin="0" topmargin="0">
|
| 83 |
<!--#include file="_header.asp"-->
|
83 |
<!-- HEADER ++++++++++++++++ -->
|
| 84 |
<!-- +++++++++++++++++++++++ -->
|
84 |
<!--#include file="_header.asp"-->
|
| 85 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
85 |
<!-- +++++++++++++++++++++++ -->
|
| 86 |
<!--#include file="_main_menu.asp"-->
|
86 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
| 87 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
87 |
<!--#include file="_main_menu.asp"-->
|
| 88 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
88 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
| 89 |
<tr>
|
89 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 90 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
90 |
<tr>
|
| 91 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
91 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
| 92 |
<!--#include file="_bom_browser.asp"-->
|
92 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
| 93 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
93 |
<!--#include file="_bom_browser.asp"-->
|
| 94 |
</td>
|
94 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
| 95 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
95 |
</td>
|
| 96 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
96 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
| 97 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
97 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
| 98 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
98 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 99 |
<tr>
|
99 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
| 100 |
<td valign="top" background="images/bg_green.gif"></td>
|
100 |
<tr>
|
| 101 |
<td align="right" valign="bottom" background="images/bg_green.gif" class="body_txtw"><%Call RenderTitle( objOsCollector )%></td>
|
101 |
<td valign="top" background="images/bg_green.gif"></td>
|
| 102 |
<td background="images/bg_green.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
102 |
<td align="right" valign="bottom" background="images/bg_green.gif" class="body_txtw"><%Call RenderTitle( objOsCollector )%></td>
|
| 103 |
</tr>
|
103 |
<td background="images/bg_green.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
| 104 |
<tr>
|
104 |
</tr>
|
| 105 |
<td width="1%" valign="top" background="images/bg_green.gif"></td>
|
105 |
<tr>
|
| 106 |
<td width="100%" valign="bottom" background="images/bg_green.gif">
|
106 |
<td width="1%" valign="top" background="images/bg_green.gif"></td>
|
| 107 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
107 |
<td width="100%" valign="bottom" background="images/bg_green.gif">
|
| 108 |
<!--#include file="_tabs_definition.asp"-->
|
108 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
| 109 |
<%
|
109 |
<!--#include file="_tabs_definition.asp"-->
|
| 110 |
Set objTabControl = New TabControl
|
110 |
<%
|
| 111 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
111 |
Set objTabControl = New TabControl
|
| 112 |
objTabControl.TabStyle = "StyleWinXP"
|
112 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
| 113 |
objTabControl.AddTabDefnition ( arrOsTabDef )
|
113 |
objTabControl.TabStyle = "StyleWinXP"
|
| 114 |
objTabControl.Render ()
|
114 |
objTabControl.AddTabDefnition ( arrOsTabDef )
|
| 115 |
%>
|
115 |
objTabControl.Render ()
|
| 116 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
116 |
%>
|
| 117 |
</td>
|
117 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
| 118 |
<td width="1%" background="images/bg_green.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
118 |
</td>
|
| 119 |
</tr>
|
119 |
<td width="1%" background="images/bg_green.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
| 120 |
<tr>
|
120 |
</tr>
|
| 121 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
121 |
<tr>
|
| 122 |
<td background="images/bg_bage_0.gif">
|
122 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
| 123 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
123 |
<td background="images/bg_bage_0.gif">
|
| 124 |
|
124 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
| 125 |
<td background="images/bg_green.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
125 |
|
| 126 |
</tr>
|
126 |
<td background="images/bg_green.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
| 127 |
<tr>
|
127 |
</tr>
|
| 128 |
<td> </td>
|
128 |
<tr>
|
| 129 |
<td> </td>
|
129 |
<td> </td>
|
| 130 |
<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>
|
130 |
<td> </td>
|
| 131 |
</tr>
|
131 |
<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>
|
| 132 |
</table>
|
132 |
</tr>
|
| 133 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
133 |
</table>
|
| 134 |
<tr>
|
134 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
| 135 |
<td>
|
135 |
<tr>
|
| 136 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
136 |
<td>
|
| 137 |
<table width="100%" border="0" cellspacing="3" cellpadding="0">
|
137 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 138 |
<tr>
|
138 |
<table width="100%" border="0" cellspacing="3" cellpadding="0">
|
| 139 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
139 |
<tr>
|
| 140 |
<td width="1%" background="images/bg_table_border.gif"><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
140 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 141 |
<tr>
|
141 |
<td width="1%" background="images/bg_table_border.gif"><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 142 |
<td align="center" nowrap background="images/bg_table_col.gif" class="body_col"> Install Order</td>
|
142 |
<tr>
|
| 143 |
</tr>
|
143 |
<td align="center" nowrap background="images/bg_table_col.gif" class="body_col"> Install Order</td>
|
| 144 |
</table></td>
|
144 |
</tr>
|
| 145 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Product Name</td>
|
145 |
</table></td>
|
| 146 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
|
146 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Product Name</td>
|
| 147 |
|
147 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
|
| 148 |
<td width="78%" align="center" background="images/bg_table_col.gif" class="body_col">
|
148 |
|
| 149 |
<SPAN id="IMG_EXPAND_ALL" name="IMG_EXPAND_ALL" style="display:block;"><a href="javascript:;" onClick="ExpandAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Show All Installation Comments."><img src="icons/b_expand_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
149 |
<td width="78%" align="center" background="images/bg_table_col.gif" class="body_col">
|
| 150 |
<SPAN id="IMG_COLLAPSE_ALL" name="IMG_COLLAPSE_ALL" style="display:none;"><a href="javascript:;" onClick="CollapseAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Hide All Installation Comments."><img src="icons/b_collapse_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
150 |
<SPAN id="IMG_EXPAND_ALL" name="IMG_EXPAND_ALL" style="display:block;"><a href="javascript:;" onClick="ExpandAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Show All Installation Comments."><img src="icons/b_expand_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
| 151 |
</td>
|
151 |
<SPAN id="IMG_COLLAPSE_ALL" name="IMG_COLLAPSE_ALL" style="display:none;"><a href="javascript:;" onClick="CollapseAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Hide All Installation Comments."><img src="icons/b_collapse_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
| 152 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
152 |
</td>
|
| 153 |
</tr>
|
153 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 154 |
<%If objOsCollector.Item("base_env_id") <> "" Then%>
|
154 |
</tr>
|
| 155 |
<tr>
|
155 |
<%If objOsCollector.Item("base_env_id") <> "" Then%>
|
| 156 |
<td align="center" valign="top"></td>
|
156 |
<tr>
|
| 157 |
<td align="center" valign="top"></td>
|
157 |
<td align="center" valign="top"></td>
|
| 158 |
<td class="body_row" valign="top"><a href="Os_BaseConf.asp?<%=objPMod.ComposeURL()%>" class="body_link"><%=objOsCollector.Item("base_env_name")%></a></td>
|
158 |
<td align="center" valign="top"></td>
|
| 159 |
<td nowrap class="body_row" valign="top"></td>
|
159 |
<td class="body_row" valign="top"><a href="Os_BaseConf.asp?<%=objPMod.ComposeURL()%>" class="body_link"><%=objOsCollector.Item("base_env_name")%></a></td>
|
| 160 |
|
160 |
<td nowrap class="body_row" valign="top"></td>
|
| 161 |
<td class="body_rowlite" valign="top">This base configuration contains the common operating system requirements and software applications.</td>
|
161 |
|
| 162 |
<td align="center"></td>
|
162 |
<td class="body_rowlite" valign="top">This base configuration contains the common operating system requirements and software applications.</td>
|
| 163 |
</tr>
|
163 |
<td align="center"></td>
|
| 164 |
<tr>
|
164 |
</tr>
|
| 165 |
<td colspan="7" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
165 |
<tr>
|
| 166 |
</tr>
|
166 |
<td colspan="7" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 167 |
<%End If%>
|
167 |
</tr>
|
| 168 |
<%
|
168 |
<%End If%>
|
| 169 |
' Load some action buttons
|
169 |
<%
|
| 170 |
Call objBtnControl.LoadActionButtons ( Array("btnEditProd", "btnRemoveProd"), OraDatabase )
|
170 |
' Load some action buttons
|
| 171 |
objBtnControl.ButtonSpacer = 1
|
171 |
Call objBtnControl.LoadActionButtons ( Array("btnEditProd", "btnRemoveProd"), OraDatabase )
|
| 172 |
|
172 |
objBtnControl.ButtonSpacer = 1
|
| 173 |
OraDatabase.Parameters.Add "OS_ID", dbPARos_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
173 |
|
| 174 |
|
174 |
OraDatabase.Parameters.Add "OS_ID", dbPARos_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 175 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ProductsList.sql"), ORADYN_DEFAULT )
|
175 |
|
| 176 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
176 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ProductsList.sql"), ORADYN_DEFAULT )
|
| 177 |
ProdId = rsQry("prod_id")
|
177 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
| 178 |
ProdName = rsQry("pkg_name").Value
|
178 |
ProdId = rsQry("prod_id")
|
| 179 |
ProdVersion = rsQry("pkg_version").Value
|
179 |
ProdName = rsQry("pkg_name").Value
|
| 180 |
selected = ""
|
180 |
ProdVersion = rsQry("pkg_version").Value
|
| 181 |
nodeSpec = ""
|
181 |
selected = ""
|
| 182 |
If rsQry("is_node_spec") = "on" Then
|
182 |
nodeSpec = ""
|
| 183 |
nodeSpec = "checked"
|
183 |
If rsQry("is_node_spec") = "on" Then
|
| 184 |
End If
|
184 |
nodeSpec = "checked"
|
| 185 |
If parHold_selection <> "" Then
|
185 |
End If
|
| 186 |
|
186 |
If parHold_selection <> "" Then
|
| 187 |
If IsTicked ( rsQry("prod_id"), Request("prod_id_list") ) Then
|
187 |
|
| 188 |
selected = "checked"
|
188 |
If IsTicked ( rsQry("prod_id"), Request("prod_id_list") ) Then
|
| 189 |
End If
|
189 |
selected = "checked"
|
| 190 |
End If
|
190 |
End If
|
| 191 |
%>
|
191 |
End If
|
| 192 |
<tr>
|
192 |
%>
|
| 193 |
<td align="center" valign="top"><input type="checkbox" name="prod_id_list" value="<%=ProdId%>" <%=selected%>></td>
|
193 |
<tr>
|
| 194 |
<td align="center" valign="top" class="body_txt"><%=rsQry("seq_num")%></td>
|
194 |
<td align="center" valign="top"><input type="checkbox" name="prod_id_list" value="<%=ProdId%>" <%=selected%>></td>
|
| 195 |
<td nowrap class="body_row" valign="top"><a href="ProdDefault.asp?prod_id=<%=ProdId%>&<%=objPMod.ComposeURL()%>" class="body_link"><%=GetProductIcon(rsQry) & ProdName%></a></td>
|
195 |
<td align="center" valign="top" class="body_txt"><%=rsQry("seq_num")%></td>
|
| 196 |
<td nowrap class="body_row" valign="top"><%=rsQry("pkg_version")%></td>
|
196 |
<td nowrap class="body_row" valign="top"><a href="ProdDefault.asp?prod_id=<%=ProdId%>&<%=objPMod.ComposeURL()%>" class="body_link"><%=GetProductIcon(rsQry) & ProdName%></a></td>
|
| 197 |
|
197 |
<td nowrap class="body_row" valign="top"><%=rsQry("pkg_version")%></td>
|
| 198 |
<td class="body_rowlite" valign="top">
|
198 |
|
| 199 |
<DIV style="display:block;" id="SHORT_<%=ProdId%>" name="SHORT_<%=ProdId%>" >
|
199 |
<td class="body_rowlite" valign="top">
|
| 200 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_rowlite" title="Click to see more...">Click to see more...</a>
|
200 |
<DIV style="display:block;" id="SHORT_<%=ProdId%>" name="SHORT_<%=ProdId%>" >
|
| 201 |
</DIV>
|
201 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_rowlite" title="Click to see more...">Click to see more...</a>
|
| 202 |
<DIV style="display:none;" id="LONG_<%=ProdId%>" name="LONG_<%=ProdId%> style="display:none;">
|
202 |
</DIV>
|
| 203 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_row" title="Click to hide."><%=objFormater.TextToHtml( rsQry("product_comments") )%></a>
|
203 |
<DIV style="display:none;" id="LONG_<%=ProdId%>" name="LONG_<%=ProdId%> style="display:none;">
|
| 204 |
</DIV>
|
204 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_row" title="Click to hide."><%=objFormater.TextToHtml( rsQry("product_comments") )%></a>
|
| 205 |
</td>
|
205 |
</DIV>
|
| 206 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%If objAccessControl.IsActive("ChangeVersion") Then Call objBtnControl.Render ( Array("btnEditProd") )%></td>
|
206 |
</td>
|
| 207 |
</tr>
|
207 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%If objAccessControl.IsActive("ChangeVersion") Then Call objBtnControl.Render ( Array("btnEditProd") )%></td>
|
| 208 |
<%rsQry.MoveNext%>
|
208 |
</tr>
|
| 209 |
|
209 |
<%rsQry.MoveNext%>
|
| 210 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
210 |
|
| 211 |
<tr>
|
211 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
| 212 |
<td colspan="6" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
212 |
<tr>
|
| 213 |
</tr>
|
213 |
<td colspan="6" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 214 |
<%End If%>
|
214 |
</tr>
|
| 215 |
|
215 |
<%End If%>
|
| 216 |
<%
|
216 |
|
| 217 |
WEnd
|
217 |
<%
|
| 218 |
|
218 |
WEnd
|
| 219 |
OraDatabase.Parameters.Remove "OS_ID"
|
219 |
|
| 220 |
%>
|
220 |
OraDatabase.Parameters.Remove "OS_ID"
|
| 221 |
<tr>
|
221 |
%>
|
| 222 |
<td colspan="6" background="images/bg_table_border.gif">
|
222 |
<tr>
|
| 223 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
223 |
<td colspan="6" background="images/bg_table_border.gif">
|
| 224 |
<tr>
|
224 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 225 |
<td nowrap background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
225 |
<tr>
|
| 226 |
</tr>
|
226 |
<td nowrap background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 227 |
</table>
|
227 |
</tr>
|
| 228 |
</td>
|
228 |
</table>
|
| 229 |
</tr>
|
229 |
</td>
|
| 230 |
</table>
|
230 |
</tr>
|
| 231 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
231 |
</table>
|
| 232 |
</td>
|
232 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 233 |
</tr>
|
233 |
</td>
|
| 234 |
<%=objPMod.ComposeHiddenTags()%>
|
234 |
</tr>
|
| 235 |
|
235 |
<%=objPMod.ComposeHiddenTags()%>
|
| 236 |
<input type="hidden" name="action" value="true">
|
236 |
|
| 237 |
</form>
|
237 |
<input type="hidden" name="action" value="true">
|
| 238 |
</table>
|
238 |
</form>
|
| 239 |
</td>
|
239 |
</table>
|
| 240 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
240 |
</td>
|
| 241 |
<!-- PERSONAL BAR +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
241 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
| 242 |
|
242 |
<!-- PERSONAL BAR +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 243 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
243 |
|
| 244 |
</td>
|
244 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 245 |
</tr>
|
245 |
</td>
|
| 246 |
<tr>
|
246 |
</tr>
|
| 247 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
247 |
<tr>
|
| 248 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
248 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
| 249 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
249 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 250 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
250 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 251 |
</tr>
|
251 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 252 |
<tr>
|
252 |
</tr>
|
| 253 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
253 |
<tr>
|
| 254 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
254 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
| 255 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
255 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 256 |
<td bgcolor="#FFFFFF"> </td>
|
256 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 257 |
</tr>
|
257 |
<td bgcolor="#FFFFFF"> </td>
|
| 258 |
</table>
|
258 |
</tr>
|
| 259 |
<!-- FOOTER ++++++++++++++++ -->
|
259 |
</table>
|
| 260 |
<!--#include file="_footer.asp"-->
|
260 |
<!-- FOOTER ++++++++++++++++ -->
|
| 261 |
<!-- +++++++++++++++++++++++ -->
|
261 |
<!--#include file="_footer.asp"-->
|
| 262 |
</body>
|
262 |
<!-- +++++++++++++++++++++++ -->
|
| 263 |
</html>
|
263 |
</body>
|
| 264 |
<%
|
264 |
</html>
|
| 265 |
'------------ RUN AFTER PAGE RENDER -----------
|
265 |
<%
|
| 266 |
Set objPMod = Nothing
|
266 |
'------------ RUN AFTER PAGE RENDER -----------
|
| 267 |
Set objCrumbs = Nothing
|
267 |
Set objPMod = Nothing
|
| 268 |
Set objTabControl = Nothing
|
268 |
Set objCrumbs = Nothing
|
| 269 |
Set objBtnControl = Nothing
|
269 |
Set objTabControl = Nothing
|
| 270 |
'----------------------------------------------
|
270 |
Set objBtnControl = Nothing
|
| - |
|
271 |
'----------------------------------------------
|
| 271 |
%><!--#include file="common/globals_destructor.asp"-->
|
272 |
%><!--#include file="common/globals_destructor.asp"-->
|
| 272 |
|
273 |
|