Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|				      UPDATE JANTS 					 |
6
'|					  DEPENDENCIES					 |
7
'|                                                   |
8
'=====================================================
9
%>
10
<%
11
Option explicit
12
' Good idea to set when using redirect
13
Response.Expires = 0	' always load the page, dont store
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
24
	Response.Redirect("index.asp")
25
End If
26
%>
27
<%
28
'------------ ACCESS CONTROL ------------------
29
%>
30
<!--#include file="_access_control_login.asp"-->
31
<!--#include file="_access_control_general.asp"-->
32
<!--#include file="_access_control_project.asp"-->
33
<%
34
'------------ Variable Definition -------------
35
'------------ Constants Declaration -----------
36
'------------ Variable Init -------------------
37
'----------------------------------------------
38
%>
5020 dpurdie 39
<%Response.Cookies(COOKIE_RELEASEMANAGER_MEMORY)("devl_environment") = "ant"%>
119 ghuddy 40
<html>
41
<head>
42
<title>Release Manager</title>
43
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
44
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
45
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
46
<link rel="stylesheet" href="images/navigation.css" type="text/css">
47
<script language="JavaScript" src="images/common.js"></script>
48
<!-- TIPS -->
49
<script language="JavaScript" src="images/tipster.js"></script>
50
<script language="JavaScript" src="images/_help_tips.js"></script>
51
 
52
<!-- DROPDOWN MENUS -->
53
<!--#include file="_menu_def.asp"-->
54
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
55
 
56
</head>
57
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="document.updatedeps.FRdeps.focus();ProgressBar.style.visibility='hidden';">
58
<!-- MENU LAYERS -------------------------------------->
59
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
60
</div>
61
<!-- TIPS LAYERS -------------------------------------->
62
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
63
<!----------------------------------------------------->
64
 
65
<!-- HEADER -->
66
<!--#include file="_header.asp"-->
67
<!-- BODY ---->
68
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
69
  <tr>
70
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
71
	<!-- MIDDLE -->
72
	<!--#include file="_form_update_jant_dependencies_page.asp"-->
73
	</td>
74
  </tr>
75
  <tr>
76
    <td valign="bottom" background="images/bg_lght_gray.gif">
77
	<!-- FOOTER -->
78
	<!--#include file="_footer.asp"-->
79
	</td>
80
  </tr>
81
</table>
82
</body>
83
</html>
84
<%
85
Call Destroy_All_Objects
86
%>