| Line 38... |
Line 38... |
| 38 |
Dim JSrequirementsSTR
|
38 |
Dim JSrequirementsSTR
|
| 39 |
'------------ Constants Declaration -----------
|
39 |
'------------ Constants Declaration -----------
|
| 40 |
'------------ Variable Init -------------------
|
40 |
'------------ Variable Init -------------------
|
| 41 |
parPv_id = Request("pv_id")
|
41 |
parPv_id = Request("pv_id")
|
| 42 |
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
|
42 |
Set pkgInfoHash = CreateObject("Scripting.Dictionary")
|
| 43 |
'----------------------------------------------
|
- |
|
| 44 |
%>
|
- |
|
| 45 |
<%
|
43 |
|
| 46 |
Sub Generate_Dependencies_List ( NNpv_id, nRtag_id, SShtml_pkg_list, SSJSreq )
|
44 |
Sub Generate_Dependencies_List ( NNpv_id, nRtag_id, SShtml_pkg_list, SSJSreq )
|
| 47 |
Dim rsDeps, Query_String, LatestVisible, disabled
|
45 |
Dim rsDeps, Query_String, LatestVisible, disabled
|
| 48 |
|
46 |
|
| 49 |
Query_String = ReadFile( rootPath & "queries\edit_dependencies.sql" )
|
47 |
Query_String = ReadFile( rootPath & "queries\edit_dependencies.sql" )
|
| 50 |
|
48 |
|
| 51 |
OraDatabase.Parameters.Add "RTAG_ID", nRtag_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
49 |
OraDatabase.Parameters.Add "RTAG_ID", nRtag_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 52 |
OraDatabase.Parameters.Add "PV_ID", NNpv_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
50 |
OraDatabase.Parameters.Add "PV_ID", NNpv_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 53 |
|
51 |
|
| 54 |
Set rsDeps = OraDatabase.DbCreateDynaset( Query_String, cint(0))
|
52 |
Set rsDeps = OraDatabase.DbCreateDynaset( Query_String, cint(0))
|
| 55 |
While ((NOT rsDeps.BOF) AND (NOT rsDeps.EOF))
|
53 |
While ((NOT rsDeps.BOF) AND (NOT rsDeps.EOF))
|
| 56 |
disabled = FALSE
|
54 |
disabled = FALSE
|
| 57 |
'If IsNull(rsDeps("lpv_id")) Then
|
55 |
'If IsNull(rsDeps("lpv_id")) Then
|
| 58 |
' disabled = TRUE
|
56 |
' disabled = TRUE
|
| 59 |
'End If
|
57 |
'End If
|
| 60 |
|
58 |
|
| 61 |
If NOT disabled Then
|
59 |
If NOT disabled Then
|
| 62 |
SShtml_pkg_list = SShtml_pkg_list &"<tr> "
|
60 |
SShtml_pkg_list = SShtml_pkg_list &"<tr> "
|
| 63 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' nowrap class='form_item'>"& rsDeps("pkg_name") &"<input name='bt"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("build_type") &"'></td>"
|
61 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' nowrap class='form_item'>"& rsDeps("pkg_name") &"<input name='bt"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("build_type") &"'></td>"
|
| 64 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif'><input type='text' name='pkgn"& rsDeps("pv_id") &"' class='form_item' size='12' value='"& rsDeps("pkg_version") &"' onBlur='Compare_Version ( """& rsDeps("pv_id") &""" );' onFocus='Compare_Version ( """& rsDeps("pv_id") &""" );'> "
|
62 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif'><input type='text' id='pkgn"& rsDeps("pv_id") &"' name='pkgn"& rsDeps("pv_id") &"' class='form_item' size='12' value='"& rsDeps("pkg_version") &"' onBlur='Compare_Version ( """& rsDeps("pv_id") &""" );' onFocus='Compare_Version ( """& rsDeps("pv_id") &""" );'> "
|
| 65 |
SShtml_pkg_list = SShtml_pkg_list &" <a href='javascript:;' onClick='MM_openBrWindow(""_wform_get_version.asp?rfield=editdep.pkgn"& rsDeps("pv_id") &"&pkg_id="& rsDeps("pkg_id") &"&pkg_name="& rsDeps("pkg_name") &"&pv_id="& rsDeps("pv_id") &""",""GetVersion"",""resizable=yes,width=350,height=150"")'><img src='images/i_get.gif' width='16' height='16' align='absmiddle' hspace='5' border='0' alt='Get package version from the list' title='Get package version from the list'></a> "
|
63 |
SShtml_pkg_list = SShtml_pkg_list &" <a href='javascript:;' onClick='MM_openBrWindow(""_wform_get_version.asp?pkg_id="& rsDeps("pkg_id") &"&pkg_name="& rsDeps("pkg_name") &"&pv_id="& rsDeps("pv_id") &""",""GetVersion"",""resizable=yes,width=350,height=150"")'><img src='images/i_get.gif' width='16' height='16' align='absmiddle' hspace='5' border='0' alt='Get package version from the list' title='Get package version from the list'></a> "
|
| 66 |
SShtml_pkg_list = SShtml_pkg_list &" </td>"
|
64 |
SShtml_pkg_list = SShtml_pkg_list &" </td>"
|
| 67 |
Else
|
65 |
Else
|
| 68 |
SShtml_pkg_list = SShtml_pkg_list &"<tr> "
|
66 |
SShtml_pkg_list = SShtml_pkg_list &"<tr> "
|
| 69 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' nowrap class='form_item'>"& rsDeps("pkg_name") &"<input name='bt"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("build_type") &"'></td>"
|
67 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' nowrap class='form_item'>"& rsDeps("pkg_name") &"<input name='bt"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("build_type") &"'></td>"
|
| 70 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif'><input disabled type='text' class='form_item' size='12' value='"& rsDeps("pkg_version") &"'>"
|
68 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif'><input disabled type='text' class='form_item' size='12' value='"& rsDeps("pkg_version") &"'>"
|
| 71 |
SShtml_pkg_list = SShtml_pkg_list &" </td>"
|
69 |
SShtml_pkg_list = SShtml_pkg_list &" </td>"
|
| 72 |
End If
|
70 |
End If
|
| 73 |
|
71 |
|
| 74 |
' Latest Versions
|
72 |
' Latest Versions
|
| 75 |
LatestVisible = "style='display:none;'"
|
73 |
LatestVisible = "style='display:none;'"
|
| 76 |
If ( rsDeps("pv_id") <> rsDeps("lpv_id") ) AND ( NOT disabled ) Then
|
74 |
If ( rsDeps("pv_id") <> rsDeps("lpv_id") ) AND ( NOT disabled ) Then
|
| 77 |
LatestVisible = ""
|
75 |
LatestVisible = ""
|
| 78 |
End If
|
76 |
End If
|
| 79 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' class='sublbox_hitem'><DIV id='divLPV"& rsDeps("pv_id") &"' name='divLPV"& rsDeps("pv_id") &"' "& LatestVisible &">"&_
|
77 |
SShtml_pkg_list = SShtml_pkg_list &" <td background='images/bg_form_lightgray.gif' class='sublbox_hitem'><DIV id='divLPV"& rsDeps("pv_id") &"' name='divLPV"& rsDeps("pv_id") &"' "& LatestVisible &">"&_
|
| 80 |
"<a href='javascript:;' onClick='Merge_Version ( ""pkgn"& rsDeps("pv_id") &""", """& rsDeps("lpkg_version") &""", ""divLPV"& rsDeps("pv_id") &""" );'>"&_
|
78 |
"<a href='javascript:;' onClick='Merge_Version ( ""pkgn"& rsDeps("pv_id") &""", """& rsDeps("lpkg_version") &""", ""divLPV"& rsDeps("pv_id") &""" );'>"&_
|
| 81 |
"<img src='images/bt_move_left.gif' border='0' alt='Bring over this latest version' hspace='2' align='absmiddle'>"&_
|
79 |
"<img src='images/bt_move_left.gif' border='0' alt='Bring over this latest version' hspace='2' align='absmiddle'>"&_
|
| 82 |
"</a>"& rsDeps("lpkg_version") &"<input name='lp"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("lpkg_version") &"'></DIV></td> "
|
80 |
"</a>"& rsDeps("lpkg_version") &"<input name='lp"& rsDeps("pv_id") &"' type='hidden' value='"& rsDeps("lpkg_version") &"'></DIV></td> "
|
| 83 |
|
81 |
|
| 84 |
SShtml_pkg_list = SShtml_pkg_list &"</tr>"
|
82 |
SShtml_pkg_list = SShtml_pkg_list &"</tr>"
|
| 85 |
|
83 |
|
| 86 |
If disabled Then
|
84 |
If disabled Then
|
| 87 |
' Store not found dependency as hidden field.
|
85 |
' Store not found dependency as hidden field.
|
| 88 |
' NOTE: This is not safe as the client can temper with hidden value but it will do for now.
|
86 |
' NOTE: This is not safe as the client can temper with hidden value but it will do for now.
|
| 89 |
SShtml_pkg_list = SShtml_pkg_list &"<input type='hidden' name='pkgn"& rsDeps("pv_id") &"' value='"& rsDeps("pkg_version") &"'>"
|
87 |
SShtml_pkg_list = SShtml_pkg_list &"<input type='hidden' name='pkgn"& rsDeps("pv_id") &"' value='"& rsDeps("pkg_version") &"'>"
|
| 90 |
Else
|
88 |
Else
|
| 91 |
SSJSreq = SSJSreq & ",'pkgn"& rsDeps("pv_id") &"','"& rsDeps("pkg_name") &" Version','RisVersionStr'"
|
89 |
SSJSreq = SSJSreq & ",'pkgn"& rsDeps("pv_id") &"','"& rsDeps("pkg_name") &" Version','RisVersionStr'"
|
| 92 |
End If
|
90 |
End If
|
| 93 |
|
91 |
|
| 94 |
rsDeps.MoveNext
|
92 |
rsDeps.MoveNext
|
| 95 |
WEnd
|
93 |
WEnd
|
| 96 |
If SSJSreq <> "" Then SSJSreq = Right( SSJSreq, Len(SSJSreq)-1 ) ' Remove first comma
|
94 |
If SSJSreq <> "" Then SSJSreq = Right( SSJSreq, Len(SSJSreq)-1 ) ' Remove first comma
|
| 97 |
|
95 |
|
| 98 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
96 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
| 99 |
OraDatabase.Parameters.Remove "PV_ID"
|
97 |
OraDatabase.Parameters.Remove "PV_ID"
|
| 100 |
End Sub
|
98 |
End Sub
|
| 101 |
%>
|
99 |
%>
|
| 102 |
<%
|
100 |
<%
|
| Line 107... |
Line 105... |
| 107 |
|
105 |
|
| 108 |
<%
|
106 |
<%
|
| 109 |
'=================== MAIN LINE =====================
|
107 |
'=================== MAIN LINE =====================
|
| 110 |
Call Generate_Dependencies_List ( parPv_id, parRtag_id, HTML_pkg_list, JSrequirementsSTR )
|
108 |
Call Generate_Dependencies_List ( parPv_id, parRtag_id, HTML_pkg_list, JSrequirementsSTR )
|
| 111 |
|
109 |
|
| 112 |
If JSrequirementsSTR = "" Then
|
110 |
If JSrequirementsSTR = "" Then
|
| 113 |
'Edit button clicked on empty dependency list. Redirect user to Add Dependencies
|
111 |
'Edit button clicked on empty dependency list. Redirect user to Add Dependencies
|
| 114 |
Response.Redirect ("form_search_pkgs.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id &"&add_type="& enum_ADD_DEPENDENCIES)
|
112 |
Response.Redirect ("form_search_pkgs.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id &"&add_type="& enum_ADD_DEPENDENCIES)
|
| 115 |
End If
|
113 |
End If
|
| 116 |
%>
|
114 |
%>
|
| 117 |
<html>
|
115 |
<html>
|
| Line 126... |
Line 124... |
| 126 |
<!--#include file="_menu_def.asp"-->
|
124 |
<!--#include file="_menu_def.asp"-->
|
| 127 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
125 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
| 128 |
<script language="JavaScript" type="text/JavaScript">
|
126 |
<script language="JavaScript" type="text/JavaScript">
|
| 129 |
<!--
|
127 |
<!--
|
| 130 |
function Merge_Version ( pkgtxt_name, lpkg_version, lpkg_div ) {
|
128 |
function Merge_Version ( pkgtxt_name, lpkg_version, lpkg_div ) {
|
| 131 |
//alert("HELLO"+ pkgtxt_name + " " + lpkg_version + " " + lpkg_div );
|
- |
|
| 132 |
MM_findObj( pkgtxt_name ).value = lpkg_version;
|
129 |
MM_findObj( pkgtxt_name ).value = lpkg_version;
|
| 133 |
MM_findObj( lpkg_div ).style.display = "none";
|
130 |
MM_findObj( lpkg_div ).style.display = "none";
|
| 134 |
}
|
131 |
}
|
| 135 |
|
132 |
|
| 136 |
function Compare_Version ( pv_id ) {
|
133 |
function Compare_Version ( pv_id ) {
|
| 137 |
var cv, lv;
|
134 |
var cv, lv;
|
| 138 |
cv = MM_findObj( "pkgn" + pv_id ).value;
|
135 |
cv = MM_findObj( "pkgn" + pv_id ).value;
|
| 139 |
lv = MM_findObj( "lp" + pv_id ).value;
|
136 |
lv = MM_findObj( "lp" + pv_id ).value;
|
| 140 |
|
137 |
|
| 141 |
if ( cv != lv ) {
|
138 |
if ( cv != lv ) {
|
| 142 |
MM_findObj( "divLPV"+ pv_id ).style.display = "block";
|
139 |
MM_findObj( "divLPV"+ pv_id ).style.display = "block";
|
| 143 |
} else {
|
140 |
} else {
|
| 144 |
MM_findObj( "divLPV"+ pv_id ).style.display = "none";
|
141 |
MM_findObj( "divLPV"+ pv_id ).style.display = "none";
|
| 145 |
}
|
142 |
}
|
| 146 |
|
143 |
|
| 147 |
}
|
144 |
}
|
| - |
|
145 |
|
| - |
|
146 |
//-----------------------------------------------------------------------------------------------------------------------------
|
| - |
|
147 |
// Javascript Function: updateFields
|
| - |
|
148 |
//
|
| - |
|
149 |
// Purpose: This is a function that is called by external javascript to update fields in form
|
| - |
|
150 |
//
|
| - |
|
151 |
// Arguments: myPv_id (integer) - Package version number
|
| - |
|
152 |
// myPkgId (integer) - Package number (not used in form_edit_deps.asp implementation of this function)
|
| - |
|
153 |
// newVersion (string) - output value of the external javascript. This is the new version
|
| - |
|
154 |
// cancelled (boolean) - true if user cancelled popup, else false
|
| - |
|
155 |
//
|
| - |
|
156 |
// Returns: nothing
|
| - |
|
157 |
//
|
| - |
|
158 |
// Notes: this is called by the popup window coded in _wform_get_version.asp when the user clicks 'submit' in that popup window. An equivalent function also
|
| - |
|
159 |
// exists in form_add_pkg_versions.asp for when it activates the code in _wform_get_version.asp.
|
| - |
|
160 |
function updateFields( myPv_id, myPkgId, newVersion, cancelled )
|
| - |
|
161 |
{
|
| - |
|
162 |
// if user is cancelling the popup, or if the version we have got from the popup is empty...
|
| - |
|
163 |
if (cancelled || newVersion == "")
|
| - |
|
164 |
{
|
| - |
|
165 |
// do nothing
|
| - |
|
166 |
}
|
| - |
|
167 |
else
|
| - |
|
168 |
{
|
| - |
|
169 |
// Note here we use myPv_id as the pkgn input field of the 'editdep' form is associated with a pv_id rather than a pkg_id
|
| - |
|
170 |
document.getElementById("pkgn" + myPv_id).value = newVersion;
|
| - |
|
171 |
document.getElementById("pkgn" + myPv_id).focus();
|
| - |
|
172 |
}
|
| - |
|
173 |
}
|
| 148 |
//-->
|
174 |
// -->
|
| 149 |
</script>
|
175 |
</script>
|
| 150 |
|
176 |
|
| 151 |
</head>
|
177 |
</head>
|
| 152 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
178 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
| 153 |
<!-- MENU LAYERS -------------------------------------->
|
179 |
<!-- MENU LAYERS -------------------------------------->
|
| 154 |
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
|
180 |
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
|
| 155 |
</div>
|
181 |
</div>
|
| 156 |
<!-- TIPS LAYERS -------------------------------------->
|
182 |
<!-- TIPS LAYERS -------------------------------------->
|
| 157 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
183 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
| 158 |
<!----------------------------------------------------->
|
184 |
<!----------------------------------------------------->
|
| 159 |
<!-- HEADER -->
|
185 |
<!-- HEADER -->
|
| 160 |
<!--#include file="_header.asp"-->
|
186 |
<!--#include file="_header.asp"-->
|
| 161 |
<!-- BODY ---->
|
187 |
<!-- BODY ---->
|
| 162 |
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
|
188 |
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
|
| 163 |
<tr>
|
189 |
<tr>
|
| 164 |
<td align="center" valign="top" background="images/bg_lght_gray.gif">
|
190 |
<td align="center" valign="top" background="images/bg_lght_gray.gif">
|
| 165 |
<!-- MIDDLE ---------------------------------------->
|
191 |
<!-- MIDDLE ---------------------------------------->
|
| 166 |
<table width="650" border="0" cellspacing="0" cellpadding="0">
|
192 |
<table width="650" border="0" cellspacing="0" cellpadding="0">
|
| 167 |
<tr>
|
193 |
<tr>
|
| 168 |
<td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
194 |
<td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 169 |
<tr>
|
195 |
<tr>
|
| 170 |
<td width="1%"></td>
|
196 |
<td width="1%"></td>
|
| 171 |
<td align="right"><img src="images/h_trsp_dot.gif" width="30" height="30"></td>
|
197 |
<td align="right"><img src="images/h_trsp_dot.gif" width="30" height="30"></td>
|
| 172 |
<td width="1%"></td>
|
198 |
<td width="1%"></td>
|
| 173 |
</tr>
|
199 |
</tr>
|
| 174 |
<tr>
|
200 |
<tr>
|
| 175 |
<td width="1%"></td>
|
201 |
<td width="1%"></td>
|
| 176 |
<td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
202 |
<td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 177 |
<tr>
|
203 |
<tr>
|
| 178 |
<td nowrap class="form_ttl">EDIT dependencies</td>
|
204 |
<td nowrap class="form_ttl">EDIT dependencies</td>
|
| 179 |
<td align="right" valign="bottom"></td>
|
205 |
<td align="right" valign="bottom"></td>
|
| 180 |
</tr>
|
206 |
</tr>
|
| 181 |
</table></td>
|
207 |
</table></td>
|
| 182 |
<td width="1%"></td>
|
208 |
<td width="1%"></td>
|
| 183 |
</tr>
|
209 |
</tr>
|
| 184 |
<tr>
|
210 |
<tr>
|
| 185 |
<td align="left" valign="top" width="1%" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
|
211 |
<td align="left" valign="top" width="1%" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
|
| 186 |
<td background="images/lbox_bg_blue.gif" align="right">
|
212 |
<td background="images/lbox_bg_blue.gif" align="right">
|
| 187 |
<!-- Heading -->
|
213 |
<!-- Heading -->
|
| 188 |
<img src="images/h_trsp_dot.gif" width="1" height="20">
|
214 |
<img src="images/h_trsp_dot.gif" width="1" height="20">
|
| 189 |
<!-- END Heading -->
|
215 |
<!-- END Heading -->
|
| 190 |
</td>
|
216 |
</td>
|
| 191 |
<td align="right" valign="top" width="1%" background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
|
217 |
<td align="right" valign="top" width="1%" background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
|
| 192 |
</tr>
|
218 |
</tr>
|
| 193 |
<tr>
|
219 |
<tr>
|
| 194 |
<td width="1%" bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
|
220 |
<td width="1%" bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
|
| 195 |
<td bgcolor="#FFFFFF" valign="top">
|
221 |
<td bgcolor="#FFFFFF" valign="top">
|
| 196 |
<!-- Body -->
|
222 |
<!-- Body -->
|
| 197 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
223 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 198 |
<form name="editdep" method="post" action="_update_dependencies.asp" onSubmit="MM_validateForm(<%=JSrequirementsSTR%>);return document.MM_returnValue">
|
224 |
<form name="editdep" method="post" action="_update_dependencies.asp" onSubmit="MM_validateForm(<%=JSrequirementsSTR%>);return document.MM_returnValue">
|
| 199 |
<tr>
|
225 |
<tr>
|
| 200 |
<td colspan="2" width="1%" nowrap class="form_field"><%=pkgInfoHash.Item ("pkg_name")%> <%=pkgInfoHash.Item ("pkg_version")%></td>
|
226 |
<td colspan="2" width="1%" nowrap class="form_field"><%=pkgInfoHash.Item ("pkg_name")%> <%=pkgInfoHash.Item ("pkg_version")%></td>
|
| 201 |
</tr>
|
227 |
</tr>
|
| 202 |
<tr>
|
228 |
<tr>
|
| 203 |
<td colspan="2" width="1%" nowrap class="form_field">
|
229 |
<td colspan="2" width="1%" nowrap class="form_field">
|
| 204 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
230 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 205 |
<tr>
|
231 |
<tr>
|
| 206 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Package Name<img src="images/h_trsp_dot.gif" width="1" height="20" align="absmiddle"></td>
|
232 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Package Name<img src="images/h_trsp_dot.gif" width="1" height="20" align="absmiddle"></td>
|
| 207 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="50%" class="form_field">Version</td>
|
233 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="50%" class="form_field">Version</td>
|
| 208 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="50%" class="form_field">Released</td>
|
234 |
<td background="images/bg_form_lightbluedark.gif" nowrap width="50%" class="form_field">Released</td>
|
| 209 |
</tr>
|
235 |
</tr>
|
| 210 |
<%=HTML_pkg_list%>
|
236 |
<%=HTML_pkg_list%>
|
| 211 |
<tr>
|
237 |
<tr>
|
| 212 |
<td nowrap><img src="images/h_trsp_dot.gif" width="120" height="1"></td>
|
238 |
<td nowrap><img src="images/h_trsp_dot.gif" width="120" height="1"></td>
|
| 213 |
<td></td>
|
239 |
<td></td>
|
| 214 |
<td></td>
|
240 |
<td></td>
|
| 215 |
</tr>
|
241 |
</tr>
|
| 216 |
</table></td>
|
242 |
</table></td>
|
| 217 |
</tr>
|
243 |
</tr>
|
| 218 |
<tr>
|
244 |
<tr>
|
| 219 |
<td colspan="2" nowrap>
|
245 |
<td colspan="2" nowrap>
|
| 220 |
<input type="submit" name="btn" value="Update" class="form_btn">
|
246 |
<input type="submit" name="btn" value="Update" class="form_btn">
|
| 221 |
<input type="reset" name="btn" value="Cancel" class="form_btn" onClick="history.back();">
|
247 |
<input type="reset" name="btn" value="Cancel" class="form_btn" onClick="history.back();">
|
| 222 |
<SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;" class="body_scol"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN>
|
248 |
<SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;" class="body_scol"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Processing...</SPAN>
|
| 223 |
<br> <br> </td>
|
249 |
<br> <br> </td>
|
| 224 |
</tr>
|
250 |
</tr>
|
| 225 |
<input type="hidden" name="update_type" value="edit_custom">
|
251 |
<input type="hidden" name="update_type" value="edit_custom">
|
| 226 |
<input type="hidden" name="pv_id" value="<%=parPv_id%>">
|
252 |
<input type="hidden" name="pv_id" value="<%=parPv_id%>">
|
| 227 |
<input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
|
253 |
<input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
|
| Line 229... |
Line 255... |
| 229 |
</table>
|
255 |
</table>
|
| 230 |
<!-- END Body-->
|
256 |
<!-- END Body-->
|
| 231 |
</td>
|
257 |
</td>
|
| 232 |
<td width="1%" background="images/lbox_bgside_white.gif"> </td>
|
258 |
<td width="1%" background="images/lbox_bgside_white.gif"> </td>
|
| 233 |
</tr>
|
259 |
</tr>
|
| 234 |
<tr>
|
260 |
<tr>
|
| 235 |
<td width="1%" background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
|
261 |
<td width="1%" background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
|
| 236 |
<td background="images/lbox_bg_blue.gif"></td>
|
262 |
<td background="images/lbox_bg_blue.gif"></td>
|
| 237 |
<td width="1%" background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
|
263 |
<td width="1%" background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
|
| 238 |
</tr>
|
264 |
</tr>
|
| 239 |
</table></td>
|
265 |
</table></td>
|
| 240 |
</tr>
|
266 |
</tr>
|
| 241 |
</table>
|
267 |
</table>
|
| 242 |
<!-------------------------------------------------->
|
268 |
<!-------------------------------------------------->
|
| 243 |
</td>
|
269 |
</td>
|
| 244 |
</tr>
|
270 |
</tr>
|
| 245 |
<tr>
|
271 |
<tr>
|
| 246 |
<td valign="bottom" background="images/bg_lght_gray.gif">
|
272 |
<td valign="bottom" background="images/bg_lght_gray.gif">
|
| Line 251... |
Line 277... |
| 251 |
</table>
|
277 |
</table>
|
| 252 |
</body>
|
278 |
</body>
|
| 253 |
</html>
|
279 |
</html>
|
| 254 |
<%
|
280 |
<%
|
| 255 |
Call Destroy_All_Objects
|
281 |
Call Destroy_All_Objects
|
| 256 |
%>
|
- |
|
| 257 |
|
282 |
%>
|
| - |
|
283 |
|