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
'|				     NEW VERSION                     |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
12
Response.Expires = 0	' always load the page, dont store
13
%>
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/qstr.asp"-->
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_dbedit.asp"-->
20
 
21
<%
22
' Make sure rtag_id is always present
23
If Request("rtag_id") = "" Then
24
	Response.Redirect("index.asp")
25
End If
26
%>
27
<%
28
' Set rfile parameter. This is a return page after Login
29
Call objPMod.StoreParameter ( "rfile", "dependencies.asp" )
30
'------------ ACCESS CONTROL ------------------
31
%>
32
<!--#include file="_access_control_login.asp"-->
33
<!--#include file="_access_control_general.asp"-->
34
<!--#include file="_access_control_project.asp"-->
35
<%
36
'------------ Variable Definition -------------
37
'------------ Constants Declaration -----------
38
'------------ Variable Init -------------------
39
'----------------------------------------------
40
%>
41
<html>
42
<head>
43
<title>Release Manager</title>
44
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
45
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
46
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
47
<link rel="stylesheet" href="images/navigation.css" type="text/css">
48
<script language="JavaScript" src="images/common.js"></script>
49
<!-- TIPS -->
50
<script language="JavaScript" src="images/tipster.js"></script>
51
<script language="JavaScript" src="images/_help_tips.js"></script>
52
 
53
<!-- DROPDOWN MENUS -->
54
<!--#include file="_menu_def.asp"-->
55
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
56
 
57
</head>
58
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
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
<!-- 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_new_version_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
%>