Subversion Repositories DevTools

Rev

Rev 5957 | Rev 6070 | 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
<!-- DROPDOWN MENUS -->
55
<!--#include file="_menu_def.asp"-->
56
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
57
</head>
58
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="document.updatedeps.FRdeps.focus();ProgressBar.style.visibility='hidden';">
59
<!-- MENU LAYERS -------------------------------------->
60
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
61
</div>
62
<!-- TIPS LAYERS -------------------------------------->
63
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
64
<!----------------------------------------------------->
65
 
66
<!-- HEADER -->
67
<!--#include file="_header.asp"-->
68
<!-- BODY ---->
69
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
70
  <tr>
71
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
5893 dpurdie 72
    <!-- MIDDLE -->
73
    <!--#include file="_form_update_jats_dependencies_page.asp"-->
74
    </td>
5357 dpurdie 75
  </tr>
76
</table>
5957 dpurdie 77
<!-- FOOTER -->
78
<!--#include file="_footer.asp"-->
5357 dpurdie 79
</body>
80
</html>