| 5008 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
| 5018 |
dpurdie |
4 |
'|
|
|
|
5 |
'| build_release_log.asp
|
|
|
6 |
'| Display the build long
|
|
|
7 |
'|
|
| 5008 |
dpurdie |
8 |
'=====================================================
|
|
|
9 |
%>
|
|
|
10 |
<%
|
|
|
11 |
Option explicit
|
|
|
12 |
' Good idea to set when using redirect
|
| 5018 |
dpurdie |
13 |
Response.Expires = 0 ' always load the page, dont store
|
| 5008 |
dpurdie |
14 |
%>
|
|
|
15 |
<!--#include file="common/conf.asp"-->
|
|
|
16 |
<!--#include file="common/globals.asp"-->
|
|
|
17 |
<!--#include file="common/formating.asp"-->
|
|
|
18 |
<!--#include file="common/qstr.asp"-->
|
|
|
19 |
<!--#include file="common/common_subs.asp"-->
|
|
|
20 |
<!--#include file="common/_form_window_common.asp"-->
|
|
|
21 |
<!--#include file="_action_buttons.asp"-->
|
| 5018 |
dpurdie |
22 |
|
| 5008 |
dpurdie |
23 |
<!--#include file="class/classActionButtonControl.asp"-->
|
|
|
24 |
<%
|
| 5018 |
dpurdie |
25 |
'------------ ACCESS CONTROL ------------------
|
|
|
26 |
'Let users view the build configuration without being logged in, but as soon as they try and submit the form, check
|
|
|
27 |
'their login status.
|
|
|
28 |
%>
|
|
|
29 |
<!--#include file="_access_control_general.asp"-->
|
|
|
30 |
<%
|
| 5008 |
dpurdie |
31 |
'------------ Variable Definition -------------
|
|
|
32 |
Dim parRtagId
|
|
|
33 |
'------------ Constants Declaration -----------
|
|
|
34 |
'------------ Variable Init -------------------
|
|
|
35 |
parRtagId = Request("rtag_id")
|
| 5018 |
dpurdie |
36 |
objPMod.PersistInQryString("rtag_id")
|
| 5008 |
dpurdie |
37 |
'----------------------------------------------
|
|
|
38 |
%>
|
|
|
39 |
<html>
|
|
|
40 |
<head>
|
| 5018 |
dpurdie |
41 |
<title>Release Manager</title>
|
|
|
42 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
43 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
44 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
|
|
45 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
|
|
46 |
<script language="JavaScript" src="images/common.js"></script>
|
| 5085 |
dpurdie |
47 |
<%bJqueryDataTables = TRUE%>
|
|
|
48 |
<!--#include file="_jquery_includes.asp"-->
|
| 5018 |
dpurdie |
49 |
<script type="text/javascript" charset="utf-8">
|
|
|
50 |
var table;
|
| 5019 |
dpurdie |
51 |
var interval = null;
|
| 5018 |
dpurdie |
52 |
$(document).ready(function() {
|
|
|
53 |
/* Init DataTables */
|
|
|
54 |
table = $("#table1").dataTable({
|
|
|
55 |
"processing": true,
|
|
|
56 |
"retrieve":true,
|
|
|
57 |
"serverSide": true,
|
|
|
58 |
"ajaxSource": "build_release_log_json.asp",
|
|
|
59 |
<%If parRtagId <> "" Then %>
|
|
|
60 |
"fnServerParams": function ( aoData ) {
|
|
|
61 |
aoData.push( { "name": "rtag_id", "value": "<%=parRtagId%>" } );
|
|
|
62 |
},
|
|
|
63 |
<%End If%>
|
|
|
64 |
"bLengthChange":false,
|
|
|
65 |
"sDom": "frtiS",
|
|
|
66 |
"sScrollY": $( document ).height()
|
|
|
67 |
<%If parRtagId <> "" Then %>
|
|
|
68 |
- 35
|
|
|
69 |
<%End If%>
|
|
|
70 |
- 200,
|
|
|
71 |
"bDeferRender": true,
|
|
|
72 |
"sScrollX": "100%",
|
|
|
73 |
"bScrollCollapse": true,
|
|
|
74 |
"iScrollLoadGap": 5,
|
|
|
75 |
"oScroller": {
|
|
|
76 |
"loadingIndicator": true,
|
|
|
77 |
"displayBuffer": 3,
|
|
|
78 |
},
|
|
|
79 |
"order": [[ 4, "desc" ]],
|
|
|
80 |
"info": true,
|
| 5063 |
dpurdie |
81 |
"columnDefs" : [
|
| 5018 |
dpurdie |
82 |
<%If parRtagId <> "" Then %>
|
| 5063 |
dpurdie |
83 |
{"visible" : false, "targets" : [0,1]},
|
| 5018 |
dpurdie |
84 |
<%End If%>
|
| 5063 |
dpurdie |
85 |
{"className" : "dt-nowrap", "targets": "_all" }
|
|
|
86 |
],
|
| 5019 |
dpurdie |
87 |
// Refresh display IFF showing the head
|
|
|
88 |
"fnInfoCallback": function( oSettings, iStart, iEnd, iMax, iTotal, sPre ) {
|
|
|
89 |
if (iStart <= 1) {
|
|
|
90 |
clearTimeout(interval);
|
|
|
91 |
interval = setTimeout( function () { table.api().ajax.reload(); }, 30000 );
|
|
|
92 |
sPre += " [AutoRefesh]"
|
|
|
93 |
} else {
|
|
|
94 |
clearTimeout(interval);
|
|
|
95 |
interval = null;
|
|
|
96 |
}
|
|
|
97 |
return sPre;
|
|
|
98 |
}
|
| 5018 |
dpurdie |
99 |
});
|
|
|
100 |
} );
|
|
|
101 |
</script>
|
|
|
102 |
|
| 5008 |
dpurdie |
103 |
<!-- DROPDOWN MENUS -->
|
|
|
104 |
<!--#include file="_menu_def.asp"-->
|
|
|
105 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
|
|
106 |
</head>
|
| 5018 |
dpurdie |
107 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
| 5008 |
dpurdie |
108 |
<!-- MENU LAYERS -------------------------------------->
|
| 5018 |
dpurdie |
109 |
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
|
|
|
110 |
</div>
|
| 5008 |
dpurdie |
111 |
<!-- TIPS LAYERS -------------------------------------->
|
|
|
112 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
|
|
113 |
<!----------------------------------------------------->
|
|
|
114 |
<!-- HEADER -->
|
|
|
115 |
<!--#include file="_header.asp"-->
|
|
|
116 |
<!-- BODY ---->
|
|
|
117 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
118 |
<tr>
|
| 5018 |
dpurdie |
119 |
<td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
|
|
|
120 |
<td width="85%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
|
|
|
121 |
<table width="50%" border="0" cellspacing="0" cellpadding="0">
|
| 5008 |
dpurdie |
122 |
<tr>
|
|
|
123 |
<td width="1%"></td>
|
|
|
124 |
<td width="100%">
|
| 5018 |
dpurdie |
125 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
126 |
<tr>
|
|
|
127 |
<td nowrap class="body_txt"></td>
|
|
|
128 |
</tr>
|
|
|
129 |
</table>
|
|
|
130 |
<!-- Section Header ---->
|
| 5008 |
dpurdie |
131 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
132 |
<tr>
|
| 5018 |
dpurdie |
133 |
<td nowrap class="form_ttl">
|
|
|
134 |
<%If parRtagId = "" Then %>
|
|
|
135 |
<td nowrap class="form_ttl">SYSTEM BUILD LOG</td>
|
|
|
136 |
<%Else%>
|
|
|
137 |
<td nowrap class="form_ttl">RELEASE BUILD LOG</td>
|
|
|
138 |
<%End If%>
|
|
|
139 |
</td>
|
| 5008 |
dpurdie |
140 |
<td align="right" valign="bottom"></td>
|
|
|
141 |
</tr>
|
|
|
142 |
</table>
|
|
|
143 |
</td>
|
|
|
144 |
<td width="1%"></td>
|
|
|
145 |
</tr>
|
| 5018 |
dpurdie |
146 |
<!-- Section Top Border ---->
|
| 5008 |
dpurdie |
147 |
<tr>
|
|
|
148 |
<td align="left" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
|
| 5018 |
dpurdie |
149 |
<td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="60" height="15"></td>
|
|
|
150 |
<td align="right" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
|
| 5008 |
dpurdie |
151 |
</tr>
|
| 5018 |
dpurdie |
152 |
<!-- Section Body Header ---->
|
|
|
153 |
<tr><td colspan="3" class="form_ifilter">
|
|
|
154 |
<!-- Main Pane -->
|
|
|
155 |
<table id="table1" width=100%>
|
|
|
156 |
<thead class="body_col">
|
|
|
157 |
<tr>
|
|
|
158 |
<th>Project</th>
|
|
|
159 |
<th>Release</th>
|
|
|
160 |
<th>Package</th>
|
|
|
161 |
<th>Version</th>
|
|
|
162 |
<th>Time</th>
|
|
|
163 |
<th>Reason</th>
|
|
|
164 |
<th>Result</th>
|
| 5044 |
dpurdie |
165 |
<th>Tests</th>
|
| 5018 |
dpurdie |
166 |
</tr>
|
|
|
167 |
</thead>
|
|
|
168 |
<tbody>
|
|
|
169 |
</tbody>
|
|
|
170 |
</table>
|
|
|
171 |
</td></tr>
|
| 5008 |
dpurdie |
172 |
</td>
|
|
|
173 |
</tr>
|
|
|
174 |
<tr>
|
| 5018 |
dpurdie |
175 |
<!-- Section Body Footer ---->
|
|
|
176 |
<td background="images/bg_action_norm.gif" ></td>
|
|
|
177 |
<td align="right" background="images/bg_action_norm.gif" ></td>
|
|
|
178 |
<td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="13"></td>
|
| 5008 |
dpurdie |
179 |
</tr>
|
| 5018 |
dpurdie |
180 |
<tr>
|
|
|
181 |
<td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
|
|
|
182 |
<td background="images/lbox_bg_blue.gif"></td>
|
|
|
183 |
<td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
|
|
|
184 |
</tr>
|
| 5008 |
dpurdie |
185 |
</table>
|
| 5018 |
dpurdie |
186 |
</tr>
|
|
|
187 |
<tr>
|
|
|
188 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
|
|
|
189 |
<td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
|
|
|
190 |
</tr>
|
|
|
191 |
</table>
|
|
|
192 |
<!-- FOOTER -->
|
|
|
193 |
<!--#include file="_footer.asp"-->
|
|
|
194 |
</body>
|
| 5008 |
dpurdie |
195 |
</html>
|
|
|
196 |
<%
|
|
|
197 |
Call Destroy_All_Objects
|
|
|
198 |
%>
|