Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|				    DEPENDENCIES					 |
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
<!--#include file="common/_package_common.asp"-->
21
<%
22
'------------ ACCESS CONTROL ------------------
23
%>
24
<!--#include file="_access_control_general.asp"-->
25
 
26
<%
27
'------------ Variable Definition -------------
28
Dim	rsQry
29
'------------ Constants Declaration -----------
30
'------------ Variable Init -------------------
31
'----------------------------------------------
32
%>
33
<%
34
'------------------------- MAIN LINE ---------------------------
35
If Request("btn") = "Hide" Then
36
	' Store filter in cookie
37
	Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_HIDE_FILES_FILTER) = Request("filefilter")
38
End If
39
 
40
If Request("btn2") = "Hide" Then
41
	' Store filter in cookie
42
	Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_HIDE_DEPS_FILTER) = Request("depfilter")
43
End If
44
'---------------------------------------------------------------
45
%>
46
<html>
47
<head>
48
<title><%=Title(Request("rtag_id"))%></title>
49
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
50
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
51
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
52
<link rel="stylesheet" href="images/navigation.css" type="text/css">
53
<script language="JavaScript" src="images/common.js"></script>
54
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
55
 
56
<!-- TIPS -->
57
<script language="JavaScript" src="images/tipster.js"></script>
58
<script language="JavaScript" src="images/_help_tips.js"></script>
59
 
60
<!-- DROPDOWN MENUS -->
61
<!--#include file="_menu_def.asp"-->
62
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
63
</head>
64
<body bgcolor="White" text="Black" leftmargin=0 topmargin=0 onLoad="ProgressBar.style.visibility='hidden'">
65
<!-- MENU LAYERS -------------------------------------->
66
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
67
<!-- TIPS LAYERS -------------------------------------->
68
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
69
<!----------------------------------------------------->
70
<!-- HEADER -->
71
<!--#include file="_header.asp"-->
72
<!-- BODY ---->
73
<table width="100%" border="0" cellspacing="0" cellpadding="0">
74
	<tr> 
75
		<td valign="top" width="1" background="images/bg_bage.gif">
76
		<!-- LEFT -->
77
		<!--#include file="_environment.asp"-->
78
		</td>
79
		<td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
80
		<td valign="top" width="100%">
81
		<!-- MIDDLE -->
82
		<!--#include file="_dependencies_page.asp"-->
83
		</td>
84
	</tr>
85
</table>
86
 
87
<!-- FOOTER -->
88
<!--#include file="_footer.asp"-->
89
</body>
90
</html>
91
<%
92
Call Destroy_All_Objects
93
%>