| 5357 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
| 5893 |
dpurdie |
5 |
'| UPDATE ANT |
|
|
|
6 |
'| DEPENDENCIES |
|
| 5357 |
dpurdie |
7 |
'| |
|
|
|
8 |
'=====================================================
|
|
|
9 |
%>
|
|
|
10 |
<%
|
|
|
11 |
Option explicit
|
|
|
12 |
' Good idea to set when using redirect
|
| 5893 |
dpurdie |
13 |
Response.Expires = 0 ' always load the page, dont store
|
| 5357 |
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 |
|
|
|
21 |
<%
|
|
|
22 |
' Make sure rtag_id is always present
|
|
|
23 |
If Request("pv_id") = "" Then
|
| 5957 |
dpurdie |
24 |
Call Destroy_All_Objects
|
| 5893 |
dpurdie |
25 |
Response.Redirect("index.asp")
|
| 5357 |
dpurdie |
26 |
End If
|
|
|
27 |
%>
|
|
|
28 |
<%
|
|
|
29 |
'------------ ACCESS CONTROL ------------------
|
|
|
30 |
%>
|
|
|
31 |
<!--#include file="_access_control_login.asp"-->
|
|
|
32 |
<!--#include file="_access_control_general.asp"-->
|
|
|
33 |
<!--#include file="_access_control_project.asp"-->
|
|
|
34 |
<%
|
|
|
35 |
'------------ Variable Definition -------------
|
|
|
36 |
'------------ Constants Declaration -----------
|
|
|
37 |
'------------ Variable Init -------------------
|
|
|
38 |
'----------------------------------------------
|
|
|
39 |
%>
|
|
|
40 |
<%Response.Cookies(COOKIE_RELEASEMANAGER_MEMORY)("devl_environment") = "ant"%>
|
|
|
41 |
<html>
|
|
|
42 |
<head>
|
|
|
43 |
<title>Release Manager</title>
|
|
|
44 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
|
|
45 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
46 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 6579 |
dpurdie |
47 |
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
48 |
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
49 |
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
|
| 5357 |
dpurdie |
50 |
<!--#include file="_jquery_includes.asp"-->
|
|
|
51 |
<!-- TIPS -->
|
| 6579 |
dpurdie |
52 |
<script language="JavaScript" src="images/tipster.js?ver=<%=VixVerNum%>"></script>
|
|
|
53 |
<script language="JavaScript" src="images/_help_tips.js?ver=<%=VixVerNum%>"></script>
|
| 5357 |
dpurdie |
54 |
<!-- DROPDOWN MENUS -->
|
|
|
55 |
<!--#include file="_menu_def.asp"-->
|
| 6579 |
dpurdie |
56 |
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
|
| 5357 |
dpurdie |
57 |
</head>
|
|
|
58 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="document.updatedeps.FRdeps.focus();ProgressBar.style.visibility='hidden';">
|
|
|
59 |
<!-- HEADER -->
|
|
|
60 |
<!--#include file="_header.asp"-->
|
|
|
61 |
<!-- BODY ---->
|
|
|
62 |
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
|
|
|
63 |
<tr>
|
|
|
64 |
<td align="center" valign="top" background="images/bg_lght_gray.gif">
|
| 5893 |
dpurdie |
65 |
<!-- MIDDLE -->
|
|
|
66 |
<!--#include file="_form_update_ant_dependencies_page.asp"-->
|
|
|
67 |
</td>
|
| 5357 |
dpurdie |
68 |
</tr>
|
|
|
69 |
</table>
|
| 5957 |
dpurdie |
70 |
<!-- FOOTER -->
|
|
|
71 |
<!--#include file="_footer.asp"-->
|
| 5357 |
dpurdie |
72 |
</body>
|
|
|
73 |
</html>
|