Subversion Repositories DevTools

Rev

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