| Line 185... |
Line 185... |
| 185 |
End If
|
185 |
End If
|
| 186 |
|
186 |
|
| 187 |
End If
|
187 |
End If
|
| 188 |
Call CheckMasterConfig()
|
188 |
Call CheckMasterConfig()
|
| 189 |
'----------------------------------------------
|
189 |
'----------------------------------------------
|
| - |
|
190 |
Sub ShowBuildConfig
|
| - |
|
191 |
'-- FROM START ---------------------------------------------------------------------------------------------------------
|
| - |
|
192 |
objFormComponent.FormName = "FormName"
|
| - |
|
193 |
objFormComponent.Action = ScriptName
|
| - |
|
194 |
Call objFormComponent.FormStart()
|
| - |
|
195 |
%>
|
| - |
|
196 |
<table class="embedded_table" style="margin-bottom:20px" width="10">
|
| - |
|
197 |
<tr>
|
| - |
|
198 |
<td>
|
| - |
|
199 |
<table width="95%" border="0" cellspacing="0" cellpadding="0" align="center">
|
| - |
|
200 |
<tr>
|
| - |
|
201 |
<td nowrap class="form_ttl">
|
| - |
|
202 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
| - |
|
203 |
ADMINISTER
|
| - |
|
204 |
<%Else%>
|
| - |
|
205 |
VIEW
|
| - |
|
206 |
<%End If%>
|
| - |
|
207 |
BUILD CONFIGURATION
|
| - |
|
208 |
</td>
|
| - |
|
209 |
</tr>
|
| - |
|
210 |
</table>
|
| - |
|
211 |
<tr>
|
| - |
|
212 |
<td>
|
| - |
|
213 |
<table class="rounded_box embedded_table">
|
| - |
|
214 |
<tr>
|
| - |
|
215 |
<td bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10"></td>
|
| - |
|
216 |
<td bgcolor="#FFFFFF" valign="top">
|
| - |
|
217 |
<!-- MESSAGE +++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| - |
|
218 |
<!--#include file="messages/_msg_inline.asp"-->
|
| - |
|
219 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| - |
|
220 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
| - |
|
221 |
<%
|
| - |
|
222 |
If canActionControlInProject("BuildConfiguration") Then
|
| - |
|
223 |
Call Action_Buttons ( "Add Daemon" )
|
| - |
|
224 |
End If
|
| - |
|
225 |
|
| - |
|
226 |
' Load some action buttons
|
| - |
|
227 |
Call objBtnControl.LoadActionButtons ( Array("btnEditDaemon", "btnRemoveDaemon", "btnDeleteDaemon"), OraDatabase )
|
| - |
|
228 |
objBtnControl.ButtonSpacer = 1
|
| - |
|
229 |
|
| - |
|
230 |
%>
|
| - |
|
231 |
<!-- +++++++++++++++++++++++++++++++++++ -->
|
| - |
|
232 |
<table width="100%" border="0" cellspacing="2" cellpadding="0">
|
| - |
|
233 |
<tr>
|
| - |
|
234 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col"></td>
|
| - |
|
235 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON HOST</td>
|
| - |
|
236 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_MACHTYPE</td>
|
| - |
|
237 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON MODE</td>
|
| - |
|
238 |
<td valign="top" wrap background="images/bg_table_col.gif" class="body_col">GBE_BUILDFILTER</td>
|
| - |
|
239 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
| - |
|
240 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ACTION</td>
|
| - |
|
241 |
<%End If%>
|
| - |
|
242 |
<td valign="top">
|
| - |
|
243 |
</tr>
|
| - |
|
244 |
<%
|
| - |
|
245 |
query_string = "select rcon_id, display_name, rc.bmcon_id, daemon_mode, gbe_value, gbe_buildfilter, NVL(active, 'U') as ACTIVE " &_
|
| - |
|
246 |
" from release_manager.release_config rc," &_
|
| - |
|
247 |
" release_manager.build_machine_config bm," &_
|
| - |
|
248 |
" release_manager.gbe_machtype gbe" &_
|
| - |
|
249 |
" where rc.rtag_id=" & parRtagId &_
|
| - |
|
250 |
" and rc.bmcon_id=bm.bmcon_id(+)" &_
|
| - |
|
251 |
" and rc.gbe_id=gbe.gbe_id" &_
|
| - |
|
252 |
" order by daemon_mode, bm.display_name"
|
| - |
|
253 |
Set rsQry = OraDatabase.DbCreateDynaset( query_string, ORADYN_DEFAULT )
|
| - |
|
254 |
Dim daemon_mode, daemon, cbtype, bActive, bInactiveMachine, dClass
|
| - |
|
255 |
bInactiveMachine = false
|
| - |
|
256 |
|
| - |
|
257 |
cbtype = "hidden"
|
| - |
|
258 |
If canActionControlInProject("BuildConfiguration") Then
|
| - |
|
259 |
cbtype = "checkbox"
|
| - |
|
260 |
End If
|
| - |
|
261 |
|
| - |
|
262 |
'--- Render rows ---
|
| - |
|
263 |
Do While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
| - |
|
264 |
rcon_id = rsQry("rcon_id")
|
| - |
|
265 |
daemon = rsQry("display_name")
|
| - |
|
266 |
If IsNull(daemon) Then
|
| - |
|
267 |
daemon = ""
|
| - |
|
268 |
End If
|
| - |
|
269 |
|
| - |
|
270 |
If rsQry("daemon_mode") = "M" Then
|
| - |
|
271 |
daemon_mode = "MASTER"
|
| - |
|
272 |
Else
|
| - |
|
273 |
daemon_mode = "SLAVE"
|
| - |
|
274 |
End If
|
| - |
|
275 |
|
| - |
|
276 |
bActive = rsQry("active")
|
| - |
|
277 |
dClass = ""
|
| - |
|
278 |
If bActive = "N" Then
|
| - |
|
279 |
bInactiveMachine = true
|
| - |
|
280 |
dClass = " err_alert strike"
|
| - |
|
281 |
End If
|
| - |
|
282 |
|
| - |
|
283 |
%>
|
| - |
|
284 |
<tr>
|
| - |
|
285 |
<td colspan="5" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| - |
|
286 |
</tr>
|
| - |
|
287 |
<tr>
|
| - |
|
288 |
<td valign="top" align="center"><input type=<%=cbtype%> name="rcon_id_list" value="<%=rsQry("rcon_id")%>"></td>
|
| - |
|
289 |
<td valign="top" nowrap class="body_rowg<%=dClass%>"><%=daemon%></td>
|
| - |
|
290 |
<td valign="top" nowrap class="body_rowg"><%=rsQry("gbe_value")%></td>
|
| - |
|
291 |
<td valign="top" nowrap class="body_rowg"><%=daemon_mode%></td>
|
| - |
|
292 |
<td valign="top" wrap class="body_rowg"><%=rsQry("gbe_buildfilter")%></td>
|
| - |
|
293 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
| - |
|
294 |
<td valign="top" nowrap class="body_rowg">
|
| - |
|
295 |
<%Call objBtnControl.Render ( Array("btnEditDaemon", "btnRemoveDaemon", "btnDeleteDaemon"), objAccessControl )%>
|
| - |
|
296 |
</td>
|
| - |
|
297 |
<%End If%>
|
| - |
|
298 |
</tr>
|
| - |
|
299 |
<%
|
| - |
|
300 |
rsQry.MoveNext
|
| - |
|
301 |
Loop
|
| - |
|
302 |
rsQry.Close()
|
| - |
|
303 |
Set rsQry = nothing
|
| - |
|
304 |
%>
|
| - |
|
305 |
</table>
|
| - |
|
306 |
</td>
|
| - |
|
307 |
<td background="images/lbox_bgside_white.gif"> </td>
|
| - |
|
308 |
</tr>
|
| - |
|
309 |
<%If masterCount <> 1 OR toolsetWarning OR bInactiveMachine Then %>
|
| - |
|
310 |
<tr class="form_error form_btn">
|
| - |
|
311 |
<td></td>
|
| - |
|
312 |
<td style="padding: 10px;">
|
| - |
|
313 |
<table class="full_table form_error">
|
| - |
|
314 |
<%If masterCount <> 1 Then %>
|
| - |
|
315 |
<tr>
|
| - |
|
316 |
<td nowrap class="err_alert">Error
|
| - |
|
317 |
<td class="body_rowg"> The set of Build Machines must have exactly one Master.
|
| - |
|
318 |
</tr>
|
| - |
|
319 |
<%End If%>
|
| - |
|
320 |
<%If bInactiveMachine Then %>
|
| - |
|
321 |
<tr>
|
| - |
|
322 |
<td nowrap class="err_alert">Error
|
| - |
|
323 |
<td class="body_rowg">One or more of the Build Machines have been deprecated and no longer available for use.
|
| - |
|
324 |
</tr>
|
| - |
|
325 |
<%End If%>
|
| - |
|
326 |
<%If toolsetWarning Then %>
|
| - |
|
327 |
<tr>
|
| - |
|
328 |
<td nowrap class="err_alert">Warning
|
| - |
|
329 |
<td class="body_rowg">There should be one TOOLSET builder within each set of machines with the same GBE_MACHTYPE.
|
| - |
|
330 |
</tr>
|
| - |
|
331 |
<%End If%>
|
| - |
|
332 |
</tr>
|
| - |
|
333 |
</table>
|
| - |
|
334 |
</td>
|
| - |
|
335 |
<td></td>
|
| - |
|
336 |
</tr>
|
| - |
|
337 |
<%End If%>
|
| - |
|
338 |
<tr>
|
| - |
|
339 |
<!-- ACTION BUTTONS ---------------------------------------------->
|
| - |
|
340 |
<td background="images/bg_action_norm.gif" ></td>
|
| - |
|
341 |
<td align="right" background="images/bg_action_norm.gif" >
|
| - |
|
342 |
|
| - |
|
343 |
<%=objFormComponent.CancelButton ( "OK", "class='form_btn'", "build_status.asp?rtag_id="& parRtagId )%>
|
| - |
|
344 |
<%=objPMod.ComposeHiddenTags()%>
|
| - |
|
345 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
| - |
|
346 |
<input name="btn" type="submit" class="form_btn" value="Unlink">
|
| - |
|
347 |
<input name="btn" type="submit" class="form_btn" value="Delete">
|
| - |
|
348 |
<%End If%>
|
| - |
|
349 |
<input type="hidden" name="rcon_id_list" value="<%=Request("rcon_id_list")%>">
|
| - |
|
350 |
<input type="hidden" name="action" value="true">
|
| - |
|
351 |
</td>
|
| - |
|
352 |
<td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="30"></td>
|
| - |
|
353 |
<!-- ACTION BUTTONS END ------------------------------------------></td>
|
| - |
|
354 |
</tr>
|
| - |
|
355 |
</table>
|
| - |
|
356 |
</tr>
|
| - |
|
357 |
</table>
|
| - |
|
358 |
<%
|
| - |
|
359 |
Call objFormComponent.FormEnd()
|
| - |
|
360 |
'-- FROM END ----------------------------------------------------------------------------------------------------------------
|
| - |
|
361 |
End Sub
|
| - |
|
362 |
'---------------------------------------------------------------------
|
| 190 |
%>
|
363 |
%>
|
| 191 |
|
- |
|
| 192 |
<html>
|
364 |
<html>
|
| 193 |
<head>
|
365 |
<head>
|
| 194 |
<title>Release Manager</title>
|
366 |
<title>Release Manager</title>
|
| 195 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
367 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 196 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
368 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
| Line 205... |
Line 377... |
| 205 |
</head>
|
377 |
</head>
|
| 206 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
378 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
| 207 |
<!-- HEADER -->
|
379 |
<!-- HEADER -->
|
| 208 |
<!--#include file="_header.asp"-->
|
380 |
<!--#include file="_header.asp"-->
|
| 209 |
<!-- BODY ---->
|
381 |
<!-- BODY ---->
|
| 210 |
|
- |
|
| 211 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
- |
|
| 212 |
<%
|
- |
|
| 213 |
'-- FROM START ---------------------------------------------------------------------------------------------------------
|
- |
|
| 214 |
objFormComponent.FormName = "FormName"
|
- |
|
| 215 |
objFormComponent.Action = ScriptName
|
- |
|
| 216 |
Call objFormComponent.FormStart()
|
382 |
<table class="full_table">
|
| 217 |
%>
|
- |
|
| 218 |
<tr>
|
383 |
<tr>
|
| 219 |
<td width="146px" class="panel_bg" valign="top"><%Call BuildMenuPane%></td>
|
384 |
<td width="146px" class="panel_bg" valign="top">
|
| 220 |
<td width="100%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
|
- |
|
| 221 |
<table width="10" border="0" cellspacing="0" cellpadding="0">
|
- |
|
| 222 |
<tr>
|
- |
|
| 223 |
<td width="1%"></td>
|
- |
|
| 224 |
<td width="100%">
|
- |
|
| 225 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
- |
|
| 226 |
<tr>
|
- |
|
| 227 |
<td nowrap class="body_txt"></td>
|
- |
|
| 228 |
</tr>
|
- |
|
| 229 |
</table>
|
- |
|
| 230 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
- |
|
| 231 |
<tr>
|
- |
|
| 232 |
<td nowrap class="form_ttl">
|
- |
|
| 233 |
<p> </p>
|
- |
|
| 234 |
<p>
|
- |
|
| 235 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
- |
|
| 236 |
ADMINISTER
|
- |
|
| 237 |
<%Else%>
|
- |
|
| 238 |
VIEW
|
- |
|
| 239 |
<%End If%>
|
- |
|
| 240 |
BUILD CONFIGURATION
|
- |
|
| 241 |
</p>
|
- |
|
| 242 |
</td>
|
- |
|
| 243 |
<td align="right" valign="bottom"></td>
|
- |
|
| 244 |
</tr>
|
- |
|
| 245 |
</table>
|
- |
|
| 246 |
</td>
|
- |
|
| 247 |
<td width="1%"></td>
|
- |
|
| 248 |
</tr>
|
- |
|
| 249 |
<tr>
|
- |
|
| 250 |
<td align="left" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
|
- |
|
| 251 |
<td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="600" height="15"></td>
|
- |
|
| 252 |
<td align="right" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
|
- |
|
| 253 |
</tr>
|
- |
|
| 254 |
<tr>
|
- |
|
| 255 |
<td bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
|
- |
|
| 256 |
<td bgcolor="#FFFFFF" valign="top">
|
- |
|
| 257 |
<!-- MESSAGE +++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
- |
|
| 258 |
<!--#include file="messages/_msg_inline.asp"-->
|
- |
|
| 259 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
- |
|
| 260 |
<br>
|
- |
|
| 261 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
- |
|
| 262 |
<%
|
- |
|
| 263 |
If canActionControlInProject("BuildConfiguration") Then
|
- |
|
| 264 |
Call Action_Buttons ( "Add Daemon" )
|
- |
|
| 265 |
End If
|
- |
|
| 266 |
|
- |
|
| 267 |
' Load some action buttons
|
- |
|
| 268 |
Call objBtnControl.LoadActionButtons ( Array("btnEditDaemon", "btnRemoveDaemon", "btnDeleteDaemon"), OraDatabase )
|
- |
|
| 269 |
objBtnControl.ButtonSpacer = 1
|
- |
|
| 270 |
|
- |
|
| 271 |
%>
|
- |
|
| 272 |
|
- |
|
| 273 |
<!-- +++++++++++++++++++++++++++++++++++ -->
|
- |
|
| 274 |
|
- |
|
| 275 |
<table width="100%" border="0" cellspacing="2" cellpadding="0">
|
- |
|
| 276 |
</td>
|
- |
|
| 277 |
<td width="9%" valign="top"></td>
|
- |
|
| 278 |
</tr>
|
- |
|
| 279 |
<tr>
|
- |
|
| 280 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col"></td>
|
- |
|
| 281 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON HOST</td>
|
- |
|
| 282 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">GBE_MACHTYPE</td>
|
- |
|
| 283 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">DAEMON MODE</td>
|
- |
|
| 284 |
<td valign="top" wrap background="images/bg_table_col.gif" class="body_col">GBE_BUILDFILTER</td>
|
- |
|
| 285 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
- |
|
| 286 |
<td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ACTION</td>
|
- |
|
| 287 |
<%End If%>
|
- |
|
| 288 |
<td valign="top">
|
- |
|
| 289 |
</tr>
|
- |
|
| 290 |
<%
|
- |
|
| 291 |
|
- |
|
| 292 |
query_string = "select rcon_id, display_name, rc.bmcon_id, daemon_mode, gbe_value, gbe_buildfilter, NVL(active, 'U') as ACTIVE " &_
|
- |
|
| 293 |
" from release_manager.release_config rc," &_
|
- |
|
| 294 |
" release_manager.build_machine_config bm," &_
|
- |
|
| 295 |
" release_manager.gbe_machtype gbe" &_
|
- |
|
| 296 |
" where rc.rtag_id=" & parRtagId &_
|
- |
|
| 297 |
" and rc.bmcon_id=bm.bmcon_id(+)" &_
|
- |
|
| 298 |
" and rc.gbe_id=gbe.gbe_id" &_
|
- |
|
| 299 |
" order by daemon_mode, bm.display_name"
|
- |
|
| 300 |
Set rsQry = OraDatabase.DbCreateDynaset( query_string, ORADYN_DEFAULT )
|
- |
|
| 301 |
Dim daemon_mode, daemon, cbtype, bActive, bInactiveMachine, dClass
|
- |
|
| 302 |
bInactiveMachine = false
|
- |
|
| 303 |
|
- |
|
| 304 |
cbtype = "hidden"
|
- |
|
| 305 |
If canActionControlInProject("BuildConfiguration") Then
|
- |
|
| 306 |
cbtype = "checkbox"
|
- |
|
| 307 |
End If
|
- |
|
| 308 |
|
- |
|
| 309 |
'--- Render rows ---
|
- |
|
| 310 |
Do While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
- |
|
| 311 |
rcon_id = rsQry("rcon_id")
|
- |
|
| 312 |
daemon = rsQry("display_name")
|
- |
|
| 313 |
If IsNull(daemon) Then
|
- |
|
| 314 |
daemon = ""
|
- |
|
| 315 |
End If
|
- |
|
| 316 |
|
- |
|
| 317 |
If rsQry("daemon_mode") = "M" Then
|
- |
|
| 318 |
daemon_mode = "MASTER"
|
- |
|
| 319 |
Else
|
- |
|
| 320 |
daemon_mode = "SLAVE"
|
- |
|
| 321 |
End If
|
- |
|
| 322 |
|
- |
|
| 323 |
bActive = rsQry("active")
|
- |
|
| 324 |
dClass = ""
|
- |
|
| 325 |
If bActive = "N" Then
|
- |
|
| 326 |
bInactiveMachine = true
|
- |
|
| 327 |
dClass = " err_alert strike"
|
- |
|
| 328 |
End If
|
- |
|
| 329 |
|
- |
|
| 330 |
%>
|
- |
|
| 331 |
<tr>
|
- |
|
| 332 |
<td colspan="5" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
- |
|
| 333 |
</tr>
|
- |
|
| 334 |
<tr>
|
- |
|
| 335 |
<td valign="top" align="center"><input type=<%=cbtype%> name="rcon_id_list" value="<%=rsQry("rcon_id")%>"></td>
|
- |
|
| 336 |
<td valign="top" nowrap class="body_rowg<%=dClass%>"><%=daemon%></td>
|
- |
|
| 337 |
<td valign="top" nowrap class="body_rowg"><%=rsQry("gbe_value")%></td>
|
- |
|
| 338 |
<td valign="top" nowrap class="body_rowg"><%=daemon_mode%></td>
|
- |
|
| 339 |
<td valign="top" wrap class="body_rowg"><%=rsQry("gbe_buildfilter")%></td>
|
- |
|
| 340 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
- |
|
| 341 |
<td valign="top" nowrap class="body_rowg"><%Call objBtnControl.Render ( Array("btnEditDaemon", "btnRemoveDaemon", "btnDeleteDaemon"), objAccessControl )%></td>
|
- |
|
| 342 |
<%End If%>
|
385 |
<%Call BuildMenuPane%>
|
| 343 |
</tr>
|
- |
|
| 344 |
<%
|
- |
|
| 345 |
rsQry.MoveNext
|
- |
|
| 346 |
Loop
|
- |
|
| 347 |
rsQry.Close()
|
- |
|
| 348 |
Set rsQry = nothing
|
- |
|
| 349 |
%>
|
- |
|
| 350 |
</table>
|
- |
|
| 351 |
</td>
|
386 |
</td>
|
| 352 |
<td background="images/lbox_bgside_white.gif"> </td>
|
- |
|
| 353 |
</tr>
|
- |
|
| 354 |
<%If masterCount <> 1 OR toolsetWarning OR bInactiveMachine Then %>
|
- |
|
| 355 |
<tr class="form_error form_btn">
|
- |
|
| 356 |
<td></td>
|
- |
|
| 357 |
<td style="padding: 10px;">
|
- |
|
| 358 |
<table class="full_table form_error">
|
- |
|
| 359 |
<%If masterCount <> 1 Then %>
|
- |
|
| 360 |
<tr>
|
- |
|
| 361 |
<td nowrap class="err_alert">Error
|
- |
|
| 362 |
<td class="body_rowg"> The set of Build Machines must have exactly one Master.
|
- |
|
| 363 |
</tr>
|
- |
|
| 364 |
<%End If%>
|
- |
|
| 365 |
<%If bInactiveMachine Then %>
|
- |
|
| 366 |
<tr>
|
- |
|
| 367 |
<td nowrap class="err_alert">Error
|
- |
|
| 368 |
<td class="body_rowg">One or more of the Build Machines have been deprecated and no longer available for use.
|
- |
|
| 369 |
</tr>
|
- |
|
| 370 |
<%End If%>
|
- |
|
| 371 |
<%If toolsetWarning Then %>
|
- |
|
| 372 |
<tr>
|
- |
|
| 373 |
<td nowrap class="err_alert">Warning
|
- |
|
| 374 |
<td class="body_rowg">There should be one TOOLSET builder within each set of machines with the same GBE_MACHTYPE.
|
- |
|
| 375 |
</tr>
|
- |
|
| 376 |
<%End If%>
|
- |
|
| 377 |
</tr>
|
- |
|
| 378 |
</table>
|
- |
|
| 379 |
</td>
|
- |
|
| 380 |
<td></td>
|
- |
|
| 381 |
</tr>
|
- |
|
| 382 |
<%End If%>
|
- |
|
| 383 |
<tr>
|
- |
|
| 384 |
<!-- ACTION BUTTONS ---------------------------------------------->
|
- |
|
| 385 |
<td background="images/bg_action_norm.gif" ></td>
|
- |
|
| 386 |
<td align="right" background="images/bg_action_norm.gif" >
|
- |
|
| 387 |
|
- |
|
| 388 |
<%=objFormComponent.CancelButton ( "OK", "class='form_btn'", "build_status.asp?rtag_id="& parRtagId )%>
|
- |
|
| 389 |
<%=objPMod.ComposeHiddenTags()%>
|
- |
|
| 390 |
<%If canActionControlInProject("BuildConfiguration") Then%>
|
- |
|
| 391 |
<input name="btn" type="submit" class="form_btn" value="Unlink">
|
- |
|
| 392 |
<input name="btn" type="submit" class="form_btn" value="Delete">
|
387 |
<td width="100%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
|
| 393 |
<%End If%>
|
388 |
<%Call ShowBuildConfig%>
|
| 394 |
<input type="hidden" name="rcon_id_list" value="<%=Request("rcon_id_list")%>">
|
- |
|
| 395 |
<input type="hidden" name="action" value="true">
|
- |
|
| 396 |
</td>
|
389 |
</td>
|
| 397 |
<td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="30"></td>
|
- |
|
| 398 |
<!-- ACTION BUTTONS END ------------------------------------------></td>
|
- |
|
| 399 |
</tr>
|
390 |
</tr>
|
| 400 |
<tr>
|
391 |
<tr>
|
| 401 |
<td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
|
392 |
<td class="panel_bg" valign="bottom" align="center" height="350">
|
| 402 |
<td background="images/lbox_bg_blue.gif"></td>
|
393 |
<img src="images/img_gears.png" vspace="20" hspace="30"></td>
|
| 403 |
<td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
|
- |
|
| 404 |
</tr>
|
394 |
</tr>
|
| 405 |
</table>
|
395 |
</table>
|
| 406 |
|
- |
|
| 407 |
<td width="1" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
- |
|
| 408 |
</tr>
|
- |
|
| 409 |
<tr>
|
- |
|
| 410 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_gear.gif" width="86" height="99" vspace="20" hspace="30"></td>
|
- |
|
| 411 |
<td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
|
- |
|
| 412 |
</tr>
|
- |
|
| 413 |
<%
|
- |
|
| 414 |
Call objFormComponent.FormEnd()
|
- |
|
| 415 |
'-- FROM END ----------------------------------------------------------------------------------------------------------------
|
- |
|
| 416 |
%>
|
- |
|
| 417 |
</table>
|
- |
|
| 418 |
<!-- FOOTER -->
|
396 |
<!-- FOOTER -->
|
| 419 |
<!--#include file="_footer.asp"-->
|
397 |
<!--#include file="_footer.asp"-->
|
| 420 |
</body>
|
398 |
</body>
|
| 421 |
</html>
|
399 |
</html>
|