| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| 3 |
'=====================================================
|
3 |
'=====================================================
|
| 4 |
'| |
|
4 |
'| |
|
| 5 |
'| INDEX |
|
5 |
'| INDEX |
|
| 6 |
'| |
|
6 |
'| |
|
| 7 |
'=====================================================
|
7 |
'=====================================================
|
| 8 |
%>
|
8 |
%>
|
| 9 |
<%
|
9 |
<%
|
| 10 |
Option explicit
|
10 |
Option explicit
|
| 11 |
' Good idea to set when using redirect
|
11 |
' Good idea to set when using redirect
|
| 12 |
Response.Expires = 0 ' always load the page, dont store
|
12 |
Response.Expires = 0 ' always load the page, dont store
|
| 13 |
%>
|
13 |
%>
|
| 14 |
<!--#include file="common/conf.asp"-->
|
14 |
<!--#include file="common/conf.asp"-->
|
| 15 |
<!--#include file="common/globals.asp"-->
|
15 |
<!--#include file="common/globals.asp"-->
|
| 16 |
<!--#include file="common/formating.asp"-->
|
16 |
<!--#include file="common/formating.asp"-->
|
| 17 |
<!--#include file="common/qstr.asp"-->
|
17 |
<!--#include file="common/qstr.asp"-->
|
| 18 |
<!--#include file="common/common_subs.asp"-->
|
18 |
<!--#include file="common/common_subs.asp"-->
|
| 19 |
<%
|
19 |
<%
|
| 20 |
'------------ ACCESS CONTROL ------------------
|
20 |
'------------ ACCESS CONTROL ------------------
|
| 21 |
%>
|
21 |
%>
|
| 22 |
<!--#include file="_access_control_general.asp"-->
|
22 |
<!--#include file="_access_control_general.asp"-->
|
| 23 |
<%
|
23 |
<%
|
| 24 |
'------------ Variable Definition -------------
|
24 |
'------------ Variable Definition -------------
|
| 25 |
Dim parMsg
|
25 |
Dim parMsg
|
| 26 |
Dim msgScript
|
26 |
Dim msgScript
|
| 27 |
Dim userId
|
27 |
Dim userId
|
| 28 |
Dim rsQry
|
28 |
Dim rsQry
|
| 29 |
Dim rsLastRelease
|
29 |
Dim rsLastRelease
|
| 30 |
Dim AutomatedPackages, TotalPackages
|
30 |
Dim AutomatedPackages, TotalPackages
|
| 31 |
Dim Query_String
|
31 |
Dim Query_String
|
| 32 |
Dim Auto
|
32 |
Dim Auto
|
| 33 |
'------------ Constants Declaration -----------
|
33 |
'------------ Constants Declaration -----------
|
| 34 |
'------------ Variable Init -------------------
|
34 |
'------------ Variable Init -------------------
|
| 35 |
parMsg = QStrPar("msg") ' Messages
|
35 |
parMsg = QStrPar("msg") ' Messages
|
| 36 |
'----------------------------------------------
|
36 |
'----------------------------------------------
|
| 37 |
%>
|
37 |
%>
|
| 38 |
<%
|
38 |
<%
|
| 39 |
'-----------------------------------------------------------------------------------------------------------------------
|
39 |
'-----------------------------------------------------------------------------------------------------------------------
|
| 40 |
Function Get_Messages
|
40 |
Function Get_Messages
|
| 41 |
Get_Messages = _
|
41 |
Get_Messages = _
|
| 42 |
" SELECT * FROM message_board WHERE expiry_date > "& ORA_SYSDATE &" OR due_date >= "& ORA_SYSDATE &"+2"
|
42 |
" SELECT * FROM message_board WHERE expiry_date > "& ORA_SYSDATE &" OR due_date >= "& ORA_SYSDATE &"+2"
|
| 43 |
End Function
|
43 |
End Function
|
| 44 |
'-----------------------------------------------------------------------------------------------------------------------
|
44 |
'-----------------------------------------------------------------------------------------------------------------------
|
| 45 |
%>
|
45 |
%>
|
| 46 |
<html>
|
46 |
<html>
|
| 47 |
<head>
|
47 |
<head>
|
| 48 |
<title>Release Manager</title>
|
48 |
<title>Release Manager</title>
|
| 49 |
<meta http-equiv="Pragma" content="no-cache">
|
49 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 50 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
50 |
<meta http-equiv="Pragma" content="no-cache">
|
| 51 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
51 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 52 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
52 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
| 53 |
<script language="JavaScript" src="images/common.js"></script>
|
53 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
| 54 |
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
|
54 |
<script language="JavaScript" src="images/common.js"></script>
|
| 55 |
<!-- TIPS -->
|
55 |
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
|
| 56 |
<script language="JavaScript" src="images/tipster.js"></script>
|
56 |
<!-- TIPS -->
|
| 57 |
<script language="JavaScript" src="images/_help_tips.js"></script>
|
57 |
<script language="JavaScript" src="images/tipster.js"></script>
|
| 58 |
<!-- DROPDOWN MENUS -->
|
58 |
<script language="JavaScript" src="images/_help_tips.js"></script>
|
| 59 |
<!--#include file="_menu_def.asp"-->
|
59 |
<!-- DROPDOWN MENUS -->
|
| 60 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
60 |
<!--#include file="_menu_def.asp"-->
|
| 61 |
<script language="JavaScript" type="text/javascript">
|
61 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
| 62 |
<!--
|
62 |
<script language="JavaScript" type="text/javascript">
|
| 63 |
|
63 |
<!--
|
| 64 |
function RequestUserWip( paramString, rowId ){
|
64 |
|
| 65 |
var requestURL = 'RequestUserWip.asp';
|
65 |
function RequestUserWip( paramString, rowId ){
|
| 66 |
|
66 |
var requestURL = 'RequestUserWip.asp';
|
| 67 |
// Show div
|
67 |
|
| 68 |
ToggleDisplay( 'DIVWIP_'+ rowId, 'IMG_EXPAND_WIP_' + rowId, 'IMG_COLLAPSE_WIP_' + rowId );
|
68 |
// Show div
|
| 69 |
|
69 |
ToggleDisplay( 'DIVWIP_'+ rowId, 'IMG_EXPAND_WIP_' + rowId, 'IMG_COLLAPSE_WIP_' + rowId );
|
| 70 |
// Set ajax divname
|
70 |
|
| 71 |
ajaxdivname = 'DIVWIP_'+ rowId;
|
71 |
// Set ajax divname
|
| 72 |
|
72 |
ajaxdivname = 'DIVWIP_'+ rowId;
|
| 73 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
73 |
|
| 74 |
{
|
74 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 75 |
//Append the name to search for to the requestURL
|
75 |
{
|
| 76 |
var url = requestURL + paramString;
|
76 |
//Append the name to search for to the requestURL
|
| 77 |
|
77 |
var url = requestURL + paramString;
|
| 78 |
//Create the xmlHttp object to use in the request
|
78 |
|
| 79 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
79 |
//Create the xmlHttp object to use in the request
|
| 80 |
// This is non-blocking (asynchronous)
|
80 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 81 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
81 |
// This is non-blocking (asynchronous)
|
| 82 |
|
82 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 83 |
//Send the xmlHttp get to the specified url
|
83 |
|
| 84 |
xmlHttp_Get(xmlHttp, url);
|
84 |
//Send the xmlHttp get to the specified url
|
| 85 |
}
|
85 |
xmlHttp_Get(xmlHttp, url);
|
| 86 |
}
|
86 |
}
|
| 87 |
|
87 |
}
|
| 88 |
function RequestProjectRelease( paramString, rowId ){
|
88 |
|
| 89 |
var requestURL = 'RequestProjectRelease.asp';
|
89 |
function RequestProjectRelease( paramString, rowId ){
|
| 90 |
|
90 |
var requestURL = 'RequestProjectRelease.asp';
|
| 91 |
// Show div
|
91 |
|
| 92 |
ToggleDisplay( 'DIVPROJ_'+ rowId, 'IMG_EXPAND_PROJ_' + rowId, 'IMG_COLLAPSE_PROJ_' + rowId );
|
92 |
// Show div
|
| 93 |
|
93 |
ToggleDisplay( 'DIVPROJ_'+ rowId, 'IMG_EXPAND_PROJ_' + rowId, 'IMG_COLLAPSE_PROJ_' + rowId );
|
| 94 |
// Set ajax divname
|
94 |
|
| 95 |
ajaxdivname = 'DIVPROJ_'+ rowId;
|
95 |
// Set ajax divname
|
| 96 |
|
96 |
ajaxdivname = 'DIVPROJ_'+ rowId;
|
| 97 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
97 |
|
| 98 |
{
|
98 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 99 |
//Append the name to search for to the requestURL
|
99 |
{
|
| 100 |
var url = requestURL + paramString;
|
100 |
//Append the name to search for to the requestURL
|
| 101 |
|
101 |
var url = requestURL + paramString;
|
| 102 |
//Create the xmlHttp object to use in the request
|
102 |
|
| 103 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
103 |
//Create the xmlHttp object to use in the request
|
| 104 |
// This is non-blocking (asynchronous)
|
104 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 105 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
105 |
// This is non-blocking (asynchronous)
|
| 106 |
|
106 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 107 |
//Send the xmlHttp get to the specified url
|
107 |
|
| 108 |
xmlHttp_Get(xmlHttp, url);
|
108 |
//Send the xmlHttp get to the specified url
|
| 109 |
}
|
109 |
xmlHttp_Get(xmlHttp, url);
|
| 110 |
}
|
110 |
}
|
| 111 |
|
111 |
}
|
| 112 |
function RequestReleasePackages( paramString, rowId ){
|
112 |
|
| 113 |
var requestURL = 'RequestReleasePackages.asp';
|
113 |
function RequestReleasePackages( paramString, rowId ){
|
| 114 |
|
114 |
var requestURL = 'RequestReleasePackages.asp';
|
| 115 |
// Show div
|
115 |
|
| 116 |
ToggleDisplay( 'DIVRTAG_'+ rowId, 'IMG_EXPAND_RTAG_' + rowId, 'IMG_COLLAPSE_RTAG_' + rowId );
|
116 |
// Show div
|
| 117 |
|
117 |
ToggleDisplay( 'DIVRTAG_'+ rowId, 'IMG_EXPAND_RTAG_' + rowId, 'IMG_COLLAPSE_RTAG_' + rowId );
|
| 118 |
// Set ajax divname
|
118 |
|
| 119 |
ajaxdivname = 'DIVRTAG_'+ rowId;
|
119 |
// Set ajax divname
|
| 120 |
|
120 |
ajaxdivname = 'DIVRTAG_'+ rowId;
|
| 121 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
121 |
|
| 122 |
{
|
122 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 123 |
//Append the name to search for to the requestURL
|
123 |
{
|
| 124 |
var url = requestURL + paramString;
|
124 |
//Append the name to search for to the requestURL
|
| 125 |
|
125 |
var url = requestURL + paramString;
|
| 126 |
//Create the xmlHttp object to use in the request
|
126 |
|
| 127 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
127 |
//Create the xmlHttp object to use in the request
|
| 128 |
// This is non-blocking (asynchronous)
|
128 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 129 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
129 |
// This is non-blocking (asynchronous)
|
| 130 |
|
130 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 131 |
//Send the xmlHttp get to the specified url
|
131 |
|
| 132 |
xmlHttp_Get(xmlHttp, url);
|
132 |
//Send the xmlHttp get to the specified url
|
| 133 |
}
|
133 |
xmlHttp_Get(xmlHttp, url);
|
| 134 |
}
|
134 |
}
|
| 135 |
|
135 |
}
|
| 136 |
function RequestTop10ChangesInLastWeek( paramString, rowId ){
|
136 |
|
| 137 |
var requestURL = 'RequestTop10Changes.asp';
|
137 |
function RequestTop10ChangesInLastWeek( paramString, rowId ){
|
| 138 |
|
138 |
var requestURL = 'RequestTop10Changes.asp';
|
| 139 |
// Show div
|
139 |
|
| 140 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_1_WEEK', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_1_WEEK', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_1_WEEK' );
|
140 |
// Show div
|
| 141 |
|
141 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_1_WEEK', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_1_WEEK', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_1_WEEK' );
|
| 142 |
// Set ajax divname
|
142 |
|
| 143 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_1_WEEK';
|
143 |
// Set ajax divname
|
| 144 |
|
144 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_1_WEEK';
|
| 145 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
145 |
|
| 146 |
{
|
146 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 147 |
//Append the name to search for to the requestURL
|
147 |
{
|
| 148 |
var url = requestURL + paramString;
|
148 |
//Append the name to search for to the requestURL
|
| 149 |
|
149 |
var url = requestURL + paramString;
|
| 150 |
//Create the xmlHttp object to use in the request
|
150 |
|
| 151 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
151 |
//Create the xmlHttp object to use in the request
|
| 152 |
// This is non-blocking (asynchronous)
|
152 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 153 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
153 |
// This is non-blocking (asynchronous)
|
| 154 |
|
154 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 155 |
//Send the xmlHttp get to the specified url
|
155 |
|
| 156 |
xmlHttp_Get(xmlHttp, url);
|
156 |
//Send the xmlHttp get to the specified url
|
| 157 |
}
|
157 |
xmlHttp_Get(xmlHttp, url);
|
| 158 |
}
|
158 |
}
|
| 159 |
|
159 |
}
|
| 160 |
function RequestTop10ChangesInLastMonth( paramString, rowId ){
|
160 |
|
| 161 |
var requestURL = 'RequestTop10Changes.asp';
|
161 |
function RequestTop10ChangesInLastMonth( paramString, rowId ){
|
| 162 |
|
162 |
var requestURL = 'RequestTop10Changes.asp';
|
| 163 |
// Show div
|
163 |
|
| 164 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_1_MONTH', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_1_MONTH', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_1_MONTH' );
|
164 |
// Show div
|
| 165 |
|
165 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_1_MONTH', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_1_MONTH', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_1_MONTH' );
|
| 166 |
// Set ajax divname
|
166 |
|
| 167 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_1_MONTH';
|
167 |
// Set ajax divname
|
| 168 |
|
168 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_1_MONTH';
|
| 169 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
169 |
|
| 170 |
{
|
170 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 171 |
//Append the name to search for to the requestURL
|
171 |
{
|
| 172 |
var url = requestURL + paramString;
|
172 |
//Append the name to search for to the requestURL
|
| 173 |
|
173 |
var url = requestURL + paramString;
|
| 174 |
//Create the xmlHttp object to use in the request
|
174 |
|
| 175 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
175 |
//Create the xmlHttp object to use in the request
|
| 176 |
// This is non-blocking (asynchronous)
|
176 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 177 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
177 |
// This is non-blocking (asynchronous)
|
| 178 |
|
178 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 179 |
//Send the xmlHttp get to the specified url
|
179 |
|
| 180 |
xmlHttp_Get(xmlHttp, url);
|
180 |
//Send the xmlHttp get to the specified url
|
| 181 |
}
|
181 |
xmlHttp_Get(xmlHttp, url);
|
| 182 |
}
|
182 |
}
|
| 183 |
|
183 |
}
|
| 184 |
function RequestTop10ChangesInLast3Months( paramString, rowId ){
|
184 |
|
| 185 |
var requestURL = 'RequestTop10Changes.asp';
|
185 |
function RequestTop10ChangesInLast3Months( paramString, rowId ){
|
| 186 |
|
186 |
var requestURL = 'RequestTop10Changes.asp';
|
| 187 |
// Show div
|
187 |
|
| 188 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_3_MONTHS', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_3_MONTHS', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_3_MONTHS' );
|
188 |
// Show div
|
| 189 |
|
189 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_TOP10_3_MONTHS', 'IMG_EXPAND_RTAG_' + rowId + '_TOP10_3_MONTHS', 'IMG_COLLAPSE_RTAG_' + rowId + '_TOP10_3_MONTHS' );
|
| 190 |
// Set ajax divname
|
190 |
|
| 191 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_3_MONTHS';
|
191 |
// Set ajax divname
|
| 192 |
|
192 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_TOP10_3_MONTHS';
|
| 193 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
193 |
|
| 194 |
{
|
194 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 195 |
//Append the name to search for to the requestURL
|
195 |
{
|
| 196 |
var url = requestURL + paramString;
|
196 |
//Append the name to search for to the requestURL
|
| 197 |
|
197 |
var url = requestURL + paramString;
|
| 198 |
//Create the xmlHttp object to use in the request
|
198 |
|
| 199 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
199 |
//Create the xmlHttp object to use in the request
|
| 200 |
// This is non-blocking (asynchronous)
|
200 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 201 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
201 |
// This is non-blocking (asynchronous)
|
| 202 |
|
202 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 203 |
//Send the xmlHttp get to the specified url
|
203 |
|
| 204 |
xmlHttp_Get(xmlHttp, url);
|
204 |
//Send the xmlHttp get to the specified url
|
| 205 |
}
|
205 |
xmlHttp_Get(xmlHttp, url);
|
| 206 |
}
|
206 |
}
|
| 207 |
|
207 |
}
|
| 208 |
function RequestPreviousPackageVersions( paramString, rowId ){
|
208 |
|
| 209 |
var requestURL = 'RequestPackageVersionHistoryMetrics.asp';
|
209 |
function RequestPreviousPackageVersions( paramString, rowId ){
|
| 210 |
|
210 |
var requestURL = 'RequestPackageVersionHistoryMetrics.asp';
|
| 211 |
// Show div
|
211 |
|
| 212 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_PREV_PKG_VERS', 'IMG_EXPAND_RTAG_' + rowId + '_PREV_PKG_VERS', 'IMG_COLLAPSE_RTAG_' + rowId + '_PREV_PKG_VERS' );
|
212 |
// Show div
|
| 213 |
|
213 |
ToggleDisplay( 'DIVRTAG_'+ rowId + '_PREV_PKG_VERS', 'IMG_EXPAND_RTAG_' + rowId + '_PREV_PKG_VERS', 'IMG_COLLAPSE_RTAG_' + rowId + '_PREV_PKG_VERS' );
|
| 214 |
// Set ajax divname
|
214 |
|
| 215 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_PREV_PKG_VERS';
|
215 |
// Set ajax divname
|
| 216 |
|
216 |
ajaxdivname = 'DIVRTAG_'+ rowId + '_PREV_PKG_VERS';
|
| 217 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
217 |
|
| 218 |
{
|
218 |
if ( MM_findObj( ajaxdivname ).innerHTML == '<%=enumLOADING%>')
|
| 219 |
//Append the name to search for to the requestURL
|
219 |
{
|
| 220 |
var url = requestURL + paramString;
|
220 |
//Append the name to search for to the requestURL
|
| 221 |
|
221 |
var url = requestURL + paramString;
|
| 222 |
//Create the xmlHttp object to use in the request
|
222 |
|
| 223 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
223 |
//Create the xmlHttp object to use in the request
|
| 224 |
// This is non-blocking (asynchronous)
|
224 |
//stateChangeHandler will fire when the state has changed, i.e. data is received back
|
| 225 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
225 |
// This is non-blocking (asynchronous)
|
| 226 |
|
226 |
xmlHttp = GetXmlHttpObject(stateChangeHandler);
|
| 227 |
//Send the xmlHttp get to the specified url
|
227 |
|
| 228 |
xmlHttp_Get(xmlHttp, url);
|
228 |
//Send the xmlHttp get to the specified url
|
| 229 |
}
|
229 |
xmlHttp_Get(xmlHttp, url);
|
| 230 |
}
|
230 |
}
|
| 231 |
|
231 |
}
|
| 232 |
//-->
|
232 |
|
| 233 |
</script>
|
233 |
//-->
|
| 234 |
<style type="text/css">
|
234 |
</script>
|
| 235 |
<!--
|
235 |
<style type="text/css">
|
| 236 |
.style1 {
|
236 |
<!--
|
| 237 |
font-family: Arial, Helvetica, sans-serif;
|
237 |
.style1 {
|
| 238 |
font-size: 12px;
|
238 |
font-family: Arial, Helvetica, sans-serif;
|
| 239 |
}
|
239 |
font-size: 12px;
|
| 240 |
.style3 {
|
240 |
}
|
| 241 |
font-size: 11px;
|
241 |
.style3 {
|
| 242 |
font-family: tahoma, sans-serif;
|
242 |
font-size: 11px;
|
| 243 |
}
|
243 |
font-family: tahoma, sans-serif;
|
| 244 |
-->
|
244 |
}
|
| 245 |
</style>
|
245 |
-->
|
| 246 |
</head>
|
246 |
</style>
|
| 247 |
<!-- TIPS LAYERS -------------------------------------->
|
247 |
</head>
|
| 248 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
248 |
<!-- TIPS LAYERS -------------------------------------->
|
| 249 |
|
249 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
| 250 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="login.user_name.focus();">
|
250 |
|
| 251 |
<!-- MENU LAYERS -------------------------------------->
|
251 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="login.user_name.focus();">
|
| 252 |
<div id="popmenu" class="menuskin" onmouseover="clearhidemenu();highlightmenu(event,'on')"
|
252 |
<!-- MENU LAYERS -------------------------------------->
|
| 253 |
onmouseout="highlightmenu(event,'off');dynamichide(event)">
|
253 |
<div id="popmenu" class="menuskin" onmouseover="clearhidemenu();highlightmenu(event,'on')"
|
| 254 |
</div>
|
254 |
onmouseout="highlightmenu(event,'off');dynamichide(event)">
|
| 255 |
<!-- HEADER -->
|
255 |
</div>
|
| 256 |
<!--#include file="_header.asp"-->
|
256 |
<!-- HEADER -->
|
| 257 |
<!-- BODY ---->
|
257 |
<!--#include file="_header.asp"-->
|
| 258 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
258 |
<!-- BODY ---->
|
| 259 |
<tr>
|
259 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 260 |
<td width="1%" background="images/bg_home_orange.gif" valign="top">
|
260 |
<tr>
|
| 261 |
<!--#include file="_front_explorer.asp"-->
|
261 |
<td width="1%" background="images/bg_home_orange.gif" valign="top">
|
| 262 |
</td>
|
262 |
<!--#include file="_front_explorer.asp"-->
|
| 263 |
<td rowspan="2" width="1%" valign="top">
|
263 |
</td>
|
| 264 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
264 |
<td rowspan="2" width="1%" valign="top">
|
| 265 |
<tr>
|
265 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 266 |
<td width="1%">
|
266 |
<tr>
|
| 267 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
267 |
<td width="1%">
|
| 268 |
<tr>
|
268 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 269 |
<td colspan="3">
|
269 |
<tr>
|
| 270 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
270 |
<td colspan="3">
|
| 271 |
<tr>
|
271 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 272 |
<td background="images/bg_comp_gear.gif"><img src="images/img_comp_gear_left.jpg" width="436" height="88"></td>
|
272 |
<tr>
|
| 273 |
<td align="right" background="images/bg_comp_gear.gif"><img src="images/img_comp_gear_right.jpg" width="70" height="88"></td>
|
273 |
<td background="images/bg_comp_gear.gif"><img src="images/img_comp_gear_left.jpg" width="436" height="88"></td>
|
| 274 |
</tr>
|
274 |
<td align="right" background="images/bg_comp_gear.gif"><img src="images/img_comp_gear_right.jpg" width="70" height="88"></td>
|
| 275 |
</table>
|
275 |
</tr>
|
| 276 |
</td>
|
276 |
</table>
|
| 277 |
<td background="images/bg_action_norm.gif"></td>
|
277 |
</td>
|
| 278 |
<td background="images/bg_action_norm.gif" valign="top" align="center"><img src="images/h_trsp_dot.gif" width="150" height="10"></td>
|
278 |
<td background="images/bg_action_norm.gif"></td>
|
| 279 |
</tr>
|
279 |
<td background="images/bg_action_norm.gif" valign="top" align="center"><img src="images/h_trsp_dot.gif" width="150" height="10"></td>
|
| 280 |
<tr>
|
280 |
</tr>
|
| 281 |
<td width="1%"><img src="images/h_trsp_dot.gif" width="15" height="518"></td>
|
281 |
<tr>
|
| 282 |
<td width="100%" valign="top" class="body_txt">
|
282 |
<td width="1%"><img src="images/h_trsp_dot.gif" width="15" height="518"></td>
|
| 283 |
<br>
|
283 |
<td width="100%" valign="top" class="body_txt">
|
| 284 |
<!-- MESSAGE BOARD ---------------------------------------------->
|
284 |
<br>
|
| 285 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
285 |
<!-- MESSAGE BOARD ---------------------------------------------->
|
| 286 |
<tr>
|
286 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 287 |
<td colspan="2" class="body_sect">Message Board</td>
|
287 |
<tr>
|
| 288 |
</tr>
|
288 |
<td colspan="2" class="body_sect">Message Board</td>
|
| 289 |
<tr>
|
289 |
</tr>
|
| 290 |
<td align="center" width="1%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif">Due Date</td>
|
290 |
<tr>
|
| 291 |
<td width="100%" background="images/bg_form_lightbluedark.gif" align="right">
|
291 |
<td align="center" width="1%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif">Due Date</td>
|
| 292 |
<a href="javascript:;" onclick="MM_openBrWindow('_wform_schedule_add.asp','ReleaseManager','resizable=yes,width=400,height=300')"><img src="images/i_schedule.gif" width="16" height="15" border="0" hspace="4" vspace="2" alt="Schedule a Task" title="Schedule a Task"></a><a href="javascript:;" onclick="MM_openBrWindow('_wform_memo_add.asp','ReleaseManager','resizable=yes,width=400,height=300')"><img src="images/i_memo.gif" width="12" height="15" border="0" hspace="4" vspace="2" alt="Memo" title="Memo"></a>
|
292 |
<td width="100%" background="images/bg_form_lightbluedark.gif" align="right">
|
| 293 |
</td>
|
293 |
<a href="javascript:;" onclick="MM_openBrWindow('_wform_schedule_add.asp','ReleaseManager','resizable=yes,width=400,height=300')"><img src="images/i_schedule.gif" width="16" height="15" border="0" hspace="4" vspace="2" alt="Schedule a Task" title="Schedule a Task"></a><a href="javascript:;" onclick="MM_openBrWindow('_wform_memo_add.asp','ReleaseManager','resizable=yes,width=400,height=300')"><img src="images/i_memo.gif" width="12" height="15" border="0" hspace="4" vspace="2" alt="Memo" title="Memo"></a>
|
| 294 |
</tr>
|
294 |
</td>
|
| 295 |
<%
|
295 |
</tr>
|
| 296 |
Set rsTemp = OraDatabase.DbCreateDynaset( Get_Messages, cint(0))
|
296 |
<%
|
| 297 |
If rsTemp.RecordCount < 1 Then Response.write "<tr><td colspan='2' class='msgb_item'> No messages at this time.</td></tr>"
|
297 |
Set rsTemp = OraDatabase.DbCreateDynaset( Get_Messages, cint(0))
|
| 298 |
While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))
|
298 |
If rsTemp.RecordCount < 1 Then Response.write "<tr><td colspan='2' class='msgb_item'> No messages at this time.</td></tr>"
|
| 299 |
If rsTemp.Fields("due_date") <> "" Then
|
299 |
While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))
|
| 300 |
msgScript = "schedule"
|
300 |
If rsTemp.Fields("due_date") <> "" Then
|
| 301 |
Else
|
301 |
msgScript = "schedule"
|
| 302 |
msgScript = "memo"
|
302 |
Else
|
| 303 |
End If
|
303 |
msgScript = "memo"
|
| 304 |
%>
|
304 |
End If
|
| 305 |
<tr>
|
305 |
%>
|
| 306 |
<td align="center" valign="top" nowrap>
|
306 |
<tr>
|
| 307 |
<%If rsTemp.Fields("due_date") <> "" Then%>
|
307 |
<td align="center" valign="top" nowrap>
|
| 308 |
<a href="javascript:;" onClick="MM_openBrWindow('_wform_<%=msgScript%>_edit.asp?FRmsg_id=<%=rsTemp.Fields("msg_id")%>','ReleaseManager','resizable=yes,width=400,height=300')" class="msgb_item">
|
308 |
<%If rsTemp.Fields("due_date") <> "" Then%>
|
| 309 |
<%=EuroDate(rsTemp.Fields("due_date"))%>
|
309 |
<a href="javascript:;" onClick="MM_openBrWindow('_wform_<%=msgScript%>_edit.asp?FRmsg_id=<%=rsTemp.Fields("msg_id")%>','ReleaseManager','resizable=yes,width=400,height=300')" class="msgb_item">
|
| 310 |
<br>
|
310 |
<%=EuroDate(rsTemp.Fields("due_date"))%>
|
| 311 |
<img src="images/i_clock.gif" width="14" height="14" border="0">
|
311 |
<br>
|
| 312 |
</a>
|
312 |
<img src="images/i_clock.gif" width="14" height="14" border="0">
|
| 313 |
<%Else%>
|
313 |
</a>
|
| 314 |
<img src="images/h_trsp_dot.gif" width="1" height="25">
|
314 |
<%Else%>
|
| 315 |
<%End If%>
|
315 |
<img src="images/h_trsp_dot.gif" width="1" height="25">
|
| 316 |
</td>
|
316 |
<%End If%>
|
| 317 |
<td valign="top"><a href="javascript:;" onClick="MM_openBrWindow('_wform_<%=msgScript%>_edit.asp?FRmsg_id=<%=rsTemp.Fields("msg_id")%>','ReleaseManager','resizable=yes,width=400,height=300')" class="msgb_item"><%=Replace(rsTemp.Fields("msg_details"), VBNewLine, "<br>")%></a>
|
317 |
</td>
|
| 318 |
</td>
|
318 |
<td valign="top"><a href="javascript:;" onClick="MM_openBrWindow('_wform_<%=msgScript%>_edit.asp?FRmsg_id=<%=rsTemp.Fields("msg_id")%>','ReleaseManager','resizable=yes,width=400,height=300')" class="msgb_item"><%=Replace(rsTemp.Fields("msg_details"), VBNewLine, "<br>")%></a>
|
| 319 |
</tr>
|
319 |
</td>
|
| 320 |
<tr>
|
320 |
</tr>
|
| 321 |
<td colspan="2" background="images/bg_form_lightbluedark.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
321 |
<tr>
|
| 322 |
</tr>
|
322 |
<td colspan="2" background="images/bg_form_lightbluedark.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 323 |
<%
|
323 |
</tr>
|
| 324 |
rsTemp.MoveNext
|
324 |
<%
|
| 325 |
WEnd
|
325 |
rsTemp.MoveNext
|
| 326 |
rsTemp.Close
|
326 |
WEnd
|
| 327 |
Set rsTemp = nothing
|
327 |
rsTemp.Close
|
| 328 |
%>
|
328 |
Set rsTemp = nothing
|
| 329 |
<tr>
|
329 |
%>
|
| 330 |
<td><img src="images/h_trsp_dot.gif" width="80" height="1"></td>
|
330 |
<tr>
|
| 331 |
<td align="right"></td>
|
331 |
<td><img src="images/h_trsp_dot.gif" width="80" height="1"></td>
|
| 332 |
</tr>
|
332 |
<td align="right"></td>
|
| 333 |
</table>
|
333 |
</tr>
|
| 334 |
<!-- MESSAGE BOARD END ---------------------------------------------->
|
334 |
</table>
|
| 335 |
<br>
|
335 |
<!-- MESSAGE BOARD END ---------------------------------------------->
|
| 336 |
<br>
|
336 |
<br>
|
| 337 |
<!-- WORK IN PROGRESS ---------------------------------------------->
|
337 |
<br>
|
| 338 |
<table width="100%" border="0" cellspacing="1" cellpadding="1">
|
338 |
<!-- WORK IN PROGRESS ---------------------------------------------->
|
| 339 |
<tr>
|
339 |
<table width="100%" border="0" cellspacing="1" cellpadding="1">
|
| 340 |
<td colspan="4" class="body_sect">Work In Progress</td>
|
340 |
<tr>
|
| 341 |
</tr>
|
341 |
<td colspan="4" class="body_sect">Work In Progress</td>
|
| 342 |
<tr>
|
342 |
</tr>
|
| 343 |
<td width="40%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif"> User</td>
|
343 |
<tr>
|
| 344 |
<td width="50%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif"> Package Count</td>
|
344 |
<td width="40%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif"> User</td>
|
| 345 |
<td width="1%" background="images/bg_form_lightbluedark.gif"><img src="images/h_trsp_dot.gif" width="1" height="17"></td>
|
345 |
<td width="50%" nowrap class="body_txt" background="images/bg_form_lightbluedark.gif"> Package Count</td>
|
| 346 |
</tr>
|
346 |
<td width="1%" background="images/bg_form_lightbluedark.gif"><img src="images/h_trsp_dot.gif" width="1" height="17"></td>
|
| 347 |
<!-- PERSONAL WORK IN PROGRESS -->
|
347 |
</tr>
|
| 348 |
<%
|
348 |
<!-- PERSONAL WORK IN PROGRESS -->
|
| 349 |
If objAccessControl.UserLogedIn Then
|
349 |
<%
|
| 350 |
|
350 |
If objAccessControl.UserLogedIn Then
|
| 351 |
OraDatabase.Parameters.Add "USER_ID", objAccessControl.UserId, ORAPARM_INPUT, ORATYPE_NUMBER
|
351 |
|
| 352 |
|
352 |
OraDatabase.Parameters.Add "USER_ID", objAccessControl.UserId, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 353 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("WorkInProgressByUser.sql"), cint(0))
|
353 |
|
| 354 |
|
354 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("WorkInProgressByUser.sql"), cint(0))
|
| 355 |
OraDatabase.Parameters.Remove "USER_ID"
|
355 |
|
| 356 |
|
356 |
OraDatabase.Parameters.Remove "USER_ID"
|
| 357 |
userId = rsTemp("user_id")
|
357 |
|
| 358 |
%>
|
358 |
userId = rsTemp("user_id")
|
| 359 |
<tr>
|
359 |
%>
|
| 360 |
<td nowrap>
|
360 |
<tr>
|
| 361 |
<span id="IMG_EXPAND_WIP_<%=userId%>" style="display:block;">
|
361 |
<td nowrap>
|
| 362 |
<a href="javascript:;" class="txt_linked" onClick="RequestUserWip('?user_id=<%=userId%>', '<%=userId%>');"><img src="images/bt_plus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_user.gif" border="0" align="absmiddle" hspace="3"><%=rsTemp("full_name")%></a>
|
362 |
<span id="IMG_EXPAND_WIP_<%=userId%>" style="display:block;">
|
| 363 |
</span>
|
363 |
<a href="javascript:;" class="txt_linked" onClick="RequestUserWip('?user_id=<%=userId%>', '<%=userId%>');"><img src="images/bt_plus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_user.gif" border="0" align="absmiddle" hspace="3"><%=rsTemp("full_name")%></a>
|
| 364 |
<span id="IMG_COLLAPSE_WIP_<%=userId%>" style="display:none;">
|
364 |
</span>
|
| 365 |
<a href="javascript:;" class="txt_linked" onClick="ToggleDisplay( 'DIVWIP_<%=userId%>', 'IMG_EXPAND_WIP_<%=userId%>', 'IMG_COLLAPSE_WIP_<%=userId%>');"><img src="images/bt_minus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_user.gif" border="0" align="absmiddle" hspace="3"><%=rsTemp("full_name")%></a>
|
365 |
<span id="IMG_COLLAPSE_WIP_<%=userId%>" style="display:none;">
|
| 366 |
</span>
|
366 |
<a href="javascript:;" class="txt_linked" onClick="ToggleDisplay( 'DIVWIP_<%=userId%>', 'IMG_EXPAND_WIP_<%=userId%>', 'IMG_COLLAPSE_WIP_<%=userId%>');"><img src="images/bt_minus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_user.gif" border="0" align="absmiddle" hspace="3"><%=rsTemp("full_name")%></a>
|
| 367 |
</td>
|
367 |
</span>
|
| 368 |
<td nowrap class="body_txt"><%=rsTemp("counter")%></td>
|
368 |
</td>
|
| 369 |
<td nowrap class="body_txt"><a href="mailto:<%=rsTemp("user_email")%>"><img src="images/bt_send_email.gif" width="36" height="13" border="0" alt="<%=rsTemp("user_email")%>"></a>
|
369 |
<td nowrap class="body_txt"><%=rsTemp("counter")%></td>
|
| 370 |
</td>
|
370 |
<td nowrap class="body_txt"><a href="mailto:<%=rsTemp("user_email")%>"><img src="images/bt_send_email.gif" width="36" height="13" border="0" alt="<%=rsTemp("user_email")%>"></a>
|
| 371 |
</tr>
|
371 |
</td>
|
| 372 |
<tr>
|
372 |
</tr>
|
| 373 |
<td nowrap class="body_txt" colspan="3">
|
373 |
<tr>
|
| 374 |
<div id="DIVWIP_<%=userId%>" style="display:none;"><%=enumLOADING%></div>
|
374 |
<td nowrap class="body_txt" colspan="3">
|
| 375 |
</td>
|
375 |
<div id="DIVWIP_<%=userId%>" style="display:none;"><%=enumLOADING%></div>
|
| 376 |
</tr>
|
376 |
</td>
|
| 377 |
<tr>
|
377 |
</tr>
|
| 378 |
<td colspan="3" background="images/bg_form_lightbluedark_line.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
378 |
<tr>
|
| 379 |
</tr>
|
379 |
<td colspan="3" background="images/bg_form_lightbluedark_line.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 380 |
<%
|
380 |
</tr>
|
| 381 |
rsTemp.Close
|
381 |
<%
|
| 382 |
Set rsTemp = nothing
|
382 |
rsTemp.Close
|
| 383 |
End If%>
|
383 |
Set rsTemp = nothing
|
| 384 |
</table>
|
384 |
End If%>
|
| 385 |
<!-- WORK IN PROGRESS END ------------------------------------------>
|
385 |
</table>
|
| 386 |
<br>
|
386 |
<!-- WORK IN PROGRESS END ------------------------------------------>
|
| 387 |
<br>
|
387 |
<br>
|
| 388 |
<!-- RELEASE METRICS -------------------------------------------------------->
|
388 |
<br>
|
| 389 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
389 |
<!-- RELEASE METRICS -------------------------------------------------------->
|
| 390 |
<tr>
|
390 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 391 |
<td colspan="4" class="body_sect">Release Metrics</td>
|
391 |
<tr>
|
| 392 |
</tr>
|
392 |
<td colspan="4" class="body_sect">Release Metrics</td>
|
| 393 |
<tr>
|
393 |
</tr>
|
| 394 |
<td colspan="2">
|
394 |
<tr>
|
| 395 |
<table width="100%" border="0" cellspacing="1" cellpadding="1">
|
395 |
<td colspan="2">
|
| 396 |
<tr>
|
396 |
<table width="100%" border="0" cellspacing="1" cellpadding="1">
|
| 397 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Project</td>
|
397 |
<tr>
|
| 398 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Last Autobuilt<br>Release</td>
|
398 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Project</td>
|
| 399 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Last Autobuild<br>Completed</td>
|
399 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Last Autobuilt<br>Release</td>
|
| 400 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Autobuilt Packages</td>
|
400 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Last Autobuild<br>Completed</td>
|
| 401 |
</tr>
|
401 |
<td nowrap class="body_txt" valign="top" background="images/bg_form_lightbluedark.gif">Autobuilt Packages</td>
|
| 402 |
<%
|
402 |
</tr>
|
| 403 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery("ProjectsWithMetrics.sql"), cint(0))
|
403 |
<%
|
| 404 |
|
404 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery("ProjectsWithMetrics.sql"), cint(0))
|
| 405 |
While ((NOT rsQry.BOF) AND (NOT rsQry.EOF))
|
405 |
|
| 406 |
OraDatabase.Parameters.Add "PROJ_ID", rsQry("proj_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
406 |
While ((NOT rsQry.BOF) AND (NOT rsQry.EOF))
|
| 407 |
|
407 |
OraDatabase.Parameters.Add "PROJ_ID", rsQry("proj_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 408 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("ReleaseMetrics.sql"), cint(0))
|
408 |
|
| 409 |
|
409 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("ReleaseMetrics.sql"), cint(0))
|
| 410 |
If rsTemp.RecordCount > 0 Then
|
410 |
|
| 411 |
Auto=FormatPercent(rsTemp("autobuilt")/rsTemp("total_packages"), 2)
|
411 |
If rsTemp.RecordCount > 0 Then
|
| 412 |
End If
|
412 |
Auto=FormatPercent(rsTemp("autobuilt")/rsTemp("total_packages"), 2)
|
| 413 |
%>
|
413 |
End If
|
| 414 |
<tr>
|
414 |
%>
|
| 415 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt">
|
415 |
<tr>
|
| 416 |
<span id="IMG_EXPAND_PROJ_<%=rsQry("proj_id")%>" style="display:block;">
|
416 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt">
|
| 417 |
<a href="javascript:;" class="txt_linked" onClick="RequestProjectRelease('?proj_id=<%=rsQry("proj_id")%>', '<%=rsQry("proj_id")%>');"><img src="images/bt_plus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_world.gif" border="0" align="absmiddle" hspace="3"><%=rsQry("proj_name")%></a>
|
417 |
<span id="IMG_EXPAND_PROJ_<%=rsQry("proj_id")%>" style="display:block;">
|
| 418 |
</span>
|
418 |
<a href="javascript:;" class="txt_linked" onClick="RequestProjectRelease('?proj_id=<%=rsQry("proj_id")%>', '<%=rsQry("proj_id")%>');"><img src="images/bt_plus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_world.gif" border="0" align="absmiddle" hspace="3"><%=rsQry("proj_name")%></a>
|
| 419 |
<span id="IMG_COLLAPSE_PROJ_<%=rsQry("proj_id")%>" style="display:none;">
|
419 |
</span>
|
| 420 |
<a href="javascript:;" class="txt_linked" onClick="ToggleDisplay( 'DIVPROJ_<%=rsQry("proj_id")%>', 'IMG_EXPAND_PROJ_<%=rsQry("proj_id")%>', 'IMG_COLLAPSE_PROJ_<%=rsQry("proj_id")%>');"><img src="images/bt_minus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_world.gif" border="0" align="absmiddle" hspace="3"><%=rsQry("proj_name")%></a>
|
420 |
<span id="IMG_COLLAPSE_PROJ_<%=rsQry("proj_id")%>" style="display:none;">
|
| 421 |
</span>
|
421 |
<a href="javascript:;" class="txt_linked" onClick="ToggleDisplay( 'DIVPROJ_<%=rsQry("proj_id")%>', 'IMG_EXPAND_PROJ_<%=rsQry("proj_id")%>', 'IMG_COLLAPSE_PROJ_<%=rsQry("proj_id")%>');"><img src="images/bt_minus.gif" border="0" align="absmiddle" hspace="3"><img src="images/i_world.gif" border="0" align="absmiddle" hspace="3"><%=rsQry("proj_name")%></a>
|
| 422 |
</td>
|
422 |
</span>
|
| 423 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("rtag_name")%></td>
|
423 |
</td>
|
| 424 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("last_build_time")%></td>
|
424 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("rtag_name")%></td>
|
| 425 |
<%If rsTemp.RecordCount > 0 Then%>
|
425 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("last_build_time")%></td>
|
| 426 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("autobuilt")%>/<%=rsTemp("total_packages")%>
|
426 |
<%If rsTemp.RecordCount > 0 Then%>
|
| 427 |
(<%=Auto%>)</td>
|
427 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("autobuilt")%>/<%=rsTemp("total_packages")%>
|
| 428 |
<%Else%>
|
428 |
(<%=Auto%>)</td>
|
| 429 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"></td>
|
429 |
<%Else%>
|
| 430 |
<%End If%>
|
430 |
<td background="images/bg_form_lightgray.gif" nowrap class="body_txt"></td>
|
| 431 |
</tr>
|
431 |
<%End If%>
|
| 432 |
<tr>
|
432 |
</tr>
|
| 433 |
<td nowrap class="body_txt" colspan="4">
|
433 |
<tr>
|
| 434 |
<div id="DIVPROJ_<%=rsQry("proj_id")%>" style="display:none;"><%=enumLOADING%></div>
|
434 |
<td nowrap class="body_txt" colspan="4">
|
| 435 |
</td>
|
435 |
<div id="DIVPROJ_<%=rsQry("proj_id")%>" style="display:none;"><%=enumLOADING%></div>
|
| 436 |
</tr>
|
436 |
</td>
|
| 437 |
<tr>
|
437 |
</tr>
|
| 438 |
<td colspan="5" background="images/bg_form_lightbluedark_line.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
438 |
<tr>
|
| 439 |
</tr>
|
439 |
<td colspan="5" background="images/bg_form_lightbluedark_line.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 440 |
<%
|
440 |
</tr>
|
| 441 |
OraDatabase.Parameters.Remove "PROJ_ID"
|
441 |
<%
|
| 442 |
rsTemp.Close()
|
442 |
OraDatabase.Parameters.Remove "PROJ_ID"
|
| 443 |
Set rsTemp = Nothing
|
443 |
rsTemp.Close()
|
| 444 |
rsQry.MoveNext
|
444 |
Set rsTemp = Nothing
|
| 445 |
Wend
|
445 |
rsQry.MoveNext
|
| 446 |
|
446 |
Wend
|
| 447 |
rsQry.Close()
|
447 |
|
| 448 |
Set rsQry = Nothing
|
448 |
rsQry.Close()
|
| 449 |
%>
|
449 |
Set rsQry = Nothing
|
| 450 |
</table>
|
450 |
%>
|
| 451 |
</td>
|
451 |
</table>
|
| 452 |
</tr>
|
452 |
</td>
|
| 453 |
</table>
|
453 |
</tr>
|
| 454 |
<!-- DASH BOARD END ---------------------------------------------------->
|
454 |
</table>
|
| 455 |
</td>
|
455 |
<!-- DASH BOARD END ---------------------------------------------------->
|
| 456 |
<td width="1%"><img src="images/h_trsp_dot.gif" width="15" height="10"></td>
|
456 |
</td>
|
| 457 |
<td background="images/bg_action_norm.gif" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="10"></td>
|
457 |
<td width="1%"><img src="images/h_trsp_dot.gif" width="15" height="10"></td>
|
| 458 |
<td background="images/bg_bage.gif" width="1%" valign="top" align="center">
|
458 |
<td background="images/bg_action_norm.gif" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="10"></td>
|
| 459 |
<br>
|
459 |
<td background="images/bg_bage.gif" width="1%" valign="top" align="center">
|
| 460 |
<%If NOT objAccessControl.UserLogedIn Then%>
|
460 |
<br>
|
| 461 |
<table width="100" border="0" cellspacing="0" cellpadding="0">
|
461 |
<%If NOT objAccessControl.UserLogedIn Then%>
|
| 462 |
<form name="login" method="post" action="Login.asp">
|
462 |
<table width="100" border="0" cellspacing="0" cellpadding="0">
|
| 463 |
<tr>
|
463 |
<form name="login" method="post" action="Login.asp">
|
| 464 |
<td class="form_field_lg">Members</td>
|
464 |
<tr>
|
| 465 |
</tr>
|
465 |
<td class="form_field_lg">Members</td>
|
| 466 |
<tr>
|
466 |
</tr>
|
| 467 |
<td class="form_item">Username</td>
|
467 |
<tr>
|
| 468 |
</tr>
|
468 |
<td class="form_item">Username</td>
|
| 469 |
<tr>
|
469 |
</tr>
|
| 470 |
<td><input type="text" name="user_name" class="form_item" size="20"></td>
|
470 |
<tr>
|
| 471 |
</tr>
|
471 |
<td><input type="text" name="user_name" class="form_item" size="20"></td>
|
| 472 |
<tr>
|
472 |
</tr>
|
| 473 |
<td class="form_item">Password</td>
|
473 |
<tr>
|
| 474 |
</tr>
|
474 |
<td class="form_item">Password</td>
|
| 475 |
<tr>
|
475 |
</tr>
|
| 476 |
<td>
|
476 |
<tr>
|
| 477 |
<input type="password" name="user_password" class="form_item" size="20" <%If objAccessControl.isDevSystem Then Response.write"disabled"%>>
|
477 |
<td>
|
| 478 |
<input type="hidden" name="rfile" value="index.asp">
|
478 |
<input type="password" name="user_password" class="form_item" size="20" <%If objAccessControl.isDevSystem Then Response.write"disabled"%>>
|
| 479 |
<input type="hidden" name="action" value="true">
|
479 |
<input type="hidden" name="rfile" value="index.asp">
|
| 480 |
</td>
|
480 |
<input type="hidden" name="action" value="true">
|
| 481 |
</tr>
|
481 |
</td>
|
| 482 |
<tr>
|
482 |
</tr>
|
| 483 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
483 |
<tr>
|
| 484 |
</tr>
|
484 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
| 485 |
<tr>
|
485 |
</tr>
|
| 486 |
<td align="center">
|
486 |
<tr>
|
| 487 |
<input type="submit" name="Submit" value="Login" class="form_btn" onclick="MM_validateForm('user_name','Username','R'<%If NOT objAccessControl.isDevSystem Then Response.write",'user_password','Password','R'"%>);return document.MM_returnValue">
|
487 |
<td align="center">
|
| 488 |
<br>
|
488 |
<input type="submit" name="Submit" value="Login" class="form_btn" onclick="MM_validateForm('user_name','Username','R'<%If NOT objAccessControl.isDevSystem Then Response.write",'user_password','Password','R'"%>);return document.MM_returnValue">
|
| 489 |
<br>
|
489 |
<br>
|
| 490 |
</td>
|
490 |
<br>
|
| 491 |
</tr>
|
491 |
</td>
|
| 492 |
<tr>
|
492 |
</tr>
|
| 493 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
493 |
<tr>
|
| 494 |
</tr>
|
494 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 495 |
<tr>
|
495 |
</tr>
|
| 496 |
<td class="form_field_lg"><br>New Members</td>
|
496 |
<tr>
|
| 497 |
</tr>
|
497 |
<td class="form_field_lg"><br>New Members</td>
|
| 498 |
<tr>
|
498 |
</tr>
|
| 499 |
<td class="form_txt" align="center"><a href="mailto:<%=ADMIN_EMAIL%>?subject=Request for Release Manager Account" class="txt_linked"><img src="images/img_signup_here.gif" width="92" height="43" border="0" alt="New Members SignUp Here."></a><br>
|
499 |
<tr>
|
| 500 |
<br>
|
500 |
<td class="form_txt" align="center"><a href="mailto:<%=ADMIN_EMAIL%>?subject=Request for Release Manager Account" class="txt_linked"><img src="images/img_signup_here.gif" width="92" height="43" border="0" alt="New Members SignUp Here."></a><br>
|
| 501 |
</td>
|
501 |
<br>
|
| 502 |
</tr>
|
502 |
</td>
|
| 503 |
<tr>
|
503 |
</tr>
|
| 504 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
504 |
<tr>
|
| 505 |
</tr>
|
505 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 506 |
</form>
|
506 |
</tr>
|
| 507 |
</table>
|
507 |
</form>
|
| 508 |
<span class="style3">
|
508 |
</table>
|
| 509 |
Forgot your <a href="mailto:<%=ADMIN_EMAIL%>?subject=Request for Password Reset" class="body_link"> password</a>?<br><br>
|
509 |
<span class="style3">
|
| 510 |
</span>
|
510 |
Forgot your <a href="mailto:<%=ADMIN_EMAIL%>?subject=Request for Password Reset" class="body_link"> password</a>?<br><br>
|
| 511 |
<%Else%>
|
511 |
</span>
|
| 512 |
<table width="120" border="0" cellspacing="0" cellpadding="0">
|
512 |
<%Else%>
|
| 513 |
<tr>
|
513 |
<table width="120" border="0" cellspacing="0" cellpadding="0">
|
| 514 |
<td class="form_txt" nowrap>G'day <b><%=Format_Full_Name( objAccessControl.FullName )%></b>!</td>
|
514 |
<tr>
|
| 515 |
</tr>
|
515 |
<td class="form_txt" nowrap>G'day <b><%=Format_Full_Name( objAccessControl.FullName )%></b>!</td>
|
| 516 |
<tr>
|
516 |
</tr>
|
| 517 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
517 |
<tr>
|
| 518 |
</tr>
|
518 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
| 519 |
<tr>
|
519 |
</tr>
|
| 520 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
520 |
<tr>
|
| 521 |
</tr>
|
521 |
<td class="form_field_lg" bgcolor="#CAC5B8"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
| 522 |
<tr>
|
522 |
</tr>
|
| 523 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
523 |
<tr>
|
| 524 |
</tr>
|
524 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
| 525 |
<tr>
|
525 |
</tr>
|
| 526 |
<td class="form_txt">Options below are shortcuts to your account.</td>
|
526 |
<tr>
|
| 527 |
</tr>
|
527 |
<td class="form_txt">Options below are shortcuts to your account.</td>
|
| 528 |
<tr>
|
528 |
</tr>
|
| 529 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
529 |
<tr>
|
| 530 |
</tr>
|
530 |
<td><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
|
| 531 |
</table>
|
531 |
</tr>
|
| 532 |
<br>
|
532 |
</table>
|
| 533 |
<!--#include file="members_menu_def.asp"-->
|
533 |
<br>
|
| 534 |
<%Call Member_Menu( empty )%>
|
534 |
<!--#include file="members_menu_def.asp"-->
|
| 535 |
<%End If%>
|
535 |
<%Call Member_Menu( empty )%>
|
| 536 |
<img src="images/h_trsp_dot.gif" width="140" height="10">
|
536 |
<%End If%>
|
| 537 |
</td>
|
537 |
<img src="images/h_trsp_dot.gif" width="140" height="10">
|
| 538 |
</tr>
|
538 |
</td>
|
| 539 |
</table>
|
539 |
</tr>
|
| 540 |
</td>
|
540 |
</table>
|
| 541 |
</tr>
|
541 |
</td>
|
| 542 |
</table>
|
542 |
</tr>
|
| 543 |
</td>
|
543 |
</table>
|
| 544 |
<td width="100%"> </td>
|
544 |
</td>
|
| 545 |
</tr>
|
545 |
<td width="100%"> </td>
|
| 546 |
<tr>
|
546 |
</tr>
|
| 547 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_gear.gif" width="107" height="107" vspace="20" hspace="30"></td>
|
547 |
<tr>
|
| 548 |
<td> </td>
|
548 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_gear.gif" width="107" height="107" vspace="20" hspace="30"></td>
|
| 549 |
</tr>
|
549 |
<td> </td>
|
| 550 |
</table>
|
550 |
</tr>
|
| 551 |
<!-- FOOTER -->
|
551 |
</table>
|
| 552 |
<div align="left">
|
552 |
<!-- FOOTER -->
|
| 553 |
<!--#include file="_footer.asp"-->
|
553 |
<div align="left">
|
| 554 |
</div>
|
554 |
<!--#include file="_footer.asp"-->
|
| 555 |
</body>
|
555 |
</div>
|
| 556 |
</html>
|
556 |
</body>
|
| - |
|
557 |
</html>
|