Subversion Repositories DevTools

Rev

Rev 5893 | Rev 5983 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5893 dpurdie 5
'|      UPDATE JATS                                  |
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"-->
5893 dpurdie 20
 
5357 dpurdie 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") = "jats"%>
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">
47
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
48
<link rel="stylesheet" href="images/navigation.css" type="text/css">
49
<script language="JavaScript" src="images/common.js"></script>
50
<!--#include file="_jquery_includes.asp"-->
51
<!-- TIPS -->
52
<script language="JavaScript" src="images/tipster.js"></script>
53
<script language="JavaScript" src="images/_help_tips.js"></script>
54
 
55
<!-- DROPDOWN MENUS -->
56
<!--#include file="_menu_def.asp"-->
57
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
58
 
59
</head>
60
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="document.updatedeps.FRdeps.focus();ProgressBar.style.visibility='hidden';">
61
<!-- MENU LAYERS -------------------------------------->
62
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
63
</div>
64
<!-- TIPS LAYERS -------------------------------------->
65
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
66
<!----------------------------------------------------->
67
 
68
<!-- HEADER -->
69
<!--#include file="_header.asp"-->
70
<!-- BODY ---->
71
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
72
  <tr>
73
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
5893 dpurdie 74
    <!-- MIDDLE -->
75
    <!--#include file="_form_update_jats_dependencies_page.asp"-->
76
    </td>
5357 dpurdie 77
  </tr>
78
</table>
5957 dpurdie 79
<!-- FOOTER -->
80
<!--#include file="_footer.asp"-->
5357 dpurdie 81
</body>
82
</html>