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