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 JATS  					 |
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
' Make sure rtag_id is always present
22
If Request("pv_id") = "" Then
23
	Response.Redirect("index.asp")
24
End If
25
%>
26
<%
27
'------------ ACCESS CONTROL ------------------
28
%>
29
<!--#include file="_access_control_login.asp"-->
30
<!--#include file="_access_control_general.asp"-->
31
<!--#include file="_access_control_project.asp"-->
32
<%
33
'------------ Variable Definition -------------
34
'------------ Constants Declaration -----------
35
'------------ Variable Init -------------------
36
'----------------------------------------------
37
%>
38
<%Response.Cookies("RELEASEMANAGER_MEMORY")("devl_environment") = "jats"%>
39
<html>
40
<head>
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>
47
<!-- TIPS -->
48
<script language="JavaScript" src="images/tipster.js"></script>
49
<script language="JavaScript" src="images/_help_tips.js"></script>
50
 
51
<!-- DROPDOWN MENUS -->
52
<!--#include file="_menu_def.asp"-->
53
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
54
 
55
</head>
56
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="document.updatedeps.FRdeps.focus();ProgressBar.style.visibility='hidden';">
57
<!-- MENU LAYERS -------------------------------------->
58
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
59
</div>
60
<!-- TIPS LAYERS -------------------------------------->
61
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
62
<!----------------------------------------------------->
63
 
64
<!-- HEADER -->
65
<!--#include file="_header.asp"-->
66
<!-- BODY ---->
67
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
68
  <tr>
69
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
70
	<!-- MIDDLE -->
71
	<!--#include file="_form_update_jats_dependencies_page.asp"-->
72
	</td>
73
  </tr>
74
  <tr>
75
    <td valign="bottom" background="images/bg_lght_gray.gif">
76
	<!-- FOOTER -->
77
	<!--#include file="_footer.asp"-->
78
	</td>
79
  </tr>
80
</table>
81
</body>
82
</html>
83
<%
84
Call Destroy_All_Objects
85
%>
86