Subversion Repositories DevTools

Rev

Rev 119 | Details | Compare with Previous | Last modification | View Log | RSS feed

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