Subversion Repositories DevTools

Rev

Rev 5983 | Rev 6579 | 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
'|                                                   |
5
'|				       REMOVE 	                     |
6
'|					  PACKAGES					     |
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("rtag_id") = "" Then
5957 dpurdie 23
    Call Destroy_All_Objects
5357 dpurdie 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
<%
33
'------------ Variable Definition -------------
34
'------------ Constants Declaration -----------
35
'------------ Variable Init -------------------
36
'----------------------------------------------
37
%>
38
<html>
39
<head>
40
<title>Release Manager</title>
41
<link rel="shortcut icon" href="<%=FavIcon%>"/>
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
<!-- DROPDOWN MENUS -->
5983 dpurdie 51
<!--#include file="_jquery_includes.asp"-->
5357 dpurdie 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" >
57
<!-- HEADER -->
58
<!--#include file="_header.asp"-->
59
<!-- BODY ---->
60
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
61
  <tr>
62
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
63
	<!-- MIDDLE -->
64
	<!--#include file="_form_remove_pkgs_page.asp"-->
65
	</td>
66
  </tr>
67
</table>
5957 dpurdie 68
<!-- FOOTER -->
69
<!--#include file="_footer.asp"-->
5357 dpurdie 70
</body>
71
</html>