Subversion Repositories DevTools

Rev

Go to most recent revision | Details | 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
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
<%
32
'------------ Variable Definition -------------
33
'------------ Constants Declaration -----------
34
'------------ Variable Init -------------------
35
'----------------------------------------------
36
%>
37
<html>
38
<head>
39
<title>Release Manager</title>
40
<link rel="shortcut icon" href="<%=FavIcon%>"/>
41
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
42
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
43
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
44
<link rel="stylesheet" href="images/navigation.css" type="text/css">
45
<script language="JavaScript" src="images/common.js"></script>
46
<!-- TIPS -->
47
<script language="JavaScript" src="images/tipster.js"></script>
48
<script language="JavaScript" src="images/_help_tips.js"></script>
49
 
50
<!-- DROPDOWN MENUS -->
51
<!--#include file="_menu_def.asp"-->
52
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
53
 
54
</head>
55
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
56
<!-- MENU LAYERS -------------------------------------->
57
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
58
</div>
59
<!-- TIPS LAYERS -------------------------------------->
60
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
61
<!----------------------------------------------------->
62
<!-- HEADER -->
63
<!--#include file="_header.asp"-->
64
<!-- BODY ---->
65
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
66
  <tr>
67
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
68
	<!-- MIDDLE -->
69
	<!--#include file="_form_remove_pkgs_page.asp"-->
70
	</td>
71
  </tr>
72
  <tr>
73
    <td valign="bottom" background="images/bg_lght_gray.gif">
74
	<!-- FOOTER -->
75
	<!--#include file="_footer.asp"-->
76
	</td>
77
  </tr>
78
</table>
79
</body>
80
</html>
81
<%
82
Call Destroy_All_Objects
83
%>