| 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 |
%>
|
| 6181 |
dpurdie |
25 |
<!--#include file="_access_control_login_optional.asp"-->
|
| 119 |
ghuddy |
26 |
<!--#include file="_access_control_general.asp"-->
|
|
|
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
|
| 5176 |
dpurdie |
49 |
|
| 5899 |
dpurdie |
50 |
If Request("RebuildIcons") <> "" Then
|
| 5176 |
dpurdie |
51 |
' Force Rebuild of all package state icons.
|
|
|
52 |
Call Rebuild_Environment_Body(parRtag_id, TRUE)
|
|
|
53 |
End If
|
| 6827 |
dpurdie |
54 |
|
|
|
55 |
If Request("RebuildMetrics") <> "" Then
|
|
|
56 |
' Force Rebuild of Release Metrics
|
|
|
57 |
Call Rebuild_Release_Metrics(parRtag_id)
|
|
|
58 |
End If
|
|
|
59 |
|
| 119 |
ghuddy |
60 |
'---------------------------------------------------------------
|
|
|
61 |
%>
|
|
|
62 |
<html>
|
|
|
63 |
<head>
|
|
|
64 |
<title><%=Title(Request("rtag_id"))%></title>
|
| 5357 |
dpurdie |
65 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 119 |
ghuddy |
66 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
67 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 6579 |
dpurdie |
68 |
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
69 |
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
70 |
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
|
|
|
71 |
<script language="JavaScript" src="scripts/remote_scripting.js?ver=<%=VixVerNum%>"></script>
|
| 6683 |
dpurdie |
72 |
<%bCsvExport = True%>
|
| 5085 |
dpurdie |
73 |
<!--#include file="_jquery_includes.asp"-->
|
| 119 |
ghuddy |
74 |
<!-- TIPS -->
|
| 6579 |
dpurdie |
75 |
<script language="JavaScript" src="images/tipster.js?ver=<%=VixVerNum%>"></script>
|
|
|
76 |
<script language="JavaScript" src="images/_help_tips.js?ver=<%=VixVerNum%>"></script>
|
| 119 |
ghuddy |
77 |
<!-- DROPDOWN MENUS -->
|
|
|
78 |
<!--#include file="_menu_def.asp"-->
|
| 6579 |
dpurdie |
79 |
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
|
| 119 |
ghuddy |
80 |
</head>
|
| 7288 |
dpurdie |
81 |
<body bgcolor="White" text="Black" leftmargin=0 topmargin=0>
|
| 119 |
ghuddy |
82 |
<!-- HEADER -->
|
|
|
83 |
<!--#include file="_header.asp"-->
|
|
|
84 |
<!-- BODY ---->
|
|
|
85 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 151 |
ghuddy |
86 |
<tr>
|
| 6876 |
dpurdie |
87 |
<td class='bg_bage'>
|
| 119 |
ghuddy |
88 |
<!-- LEFT -->
|
|
|
89 |
<!--#include file="_environment.asp"-->
|
|
|
90 |
</td>
|
|
|
91 |
<td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
|
|
92 |
<td valign="top" width="100%">
|
|
|
93 |
<!-- MIDDLE -->
|
|
|
94 |
<!--#include file="_dependencies_page.asp"-->
|
|
|
95 |
</td>
|
|
|
96 |
</tr>
|
|
|
97 |
</table>
|
|
|
98 |
<!-- FOOTER -->
|
|
|
99 |
<!--#include file="_footer.asp"-->
|
|
|
100 |
</body>
|
|
|
101 |
</html>
|