Subversion Repositories DevTools

Rev

Rev 5984 | Rev 6070 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|				    	REPORTS					     |
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/reports_def.asp"-->
20
<%
21
'------------ ACCESS CONTROL ------------------
22
%>
6048 dpurdie 23
<!--#include file="_access_control_login.asp"-->
5357 dpurdie 24
<!--#include file="_access_control_general.asp"-->
25
<%
26
'------------ Variable Definition -------------
27
Dim Section
28
Dim parGroup
29
Dim parRepNum
30
Dim parPrint
31
'------------ Constants Declaration -----------
32
Const img_Advanced_Search = "<img src='images/img_reports_adv_search.jpg' width='199' height='164'>"
33
Const img_Admin_Reports   = "<img src='images/img_reports_admin.jpg' width='199' height='164'>"
34
Const img_Reports 	   	  = "<img src='images/img_reports2.jpg' width='199' height='164' border='0' alt=''>"
35
'------------ Variable Init -------------------
36
parGroup = Request("group")
37
parRepNum = Request("repnum")
38
parPrint = Request("print")
39
parRtag_id = Request("rtag_id")
40
'----------------------------------------------
41
%>
42
<%
43
Function Set_Row_Style ( SSLink )
44
	Set_Row_Style = "onMouseOver=""this.bgColor = '"& hlColor &"'"" onMouseOut =""this.bgColor = ''"" onClick=""location.href='"& SSLink &"'"""
45
End Function
46
%>
47
<%
48
'------------------------- MAIN LINE ---------------------------
49
%>
50
<html>
51
<head>
52
<title>Release Manager</title>
53
<link rel="shortcut icon" href="<%=FavIcon%>"/>
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">
5984 dpurdie 58
<!--#include file="_menu_def.asp"-->
59
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
5357 dpurdie 60
<link rel=alternate media=print href="<%
61
Response.write _
62
"print_report.asp?group="& parGroup &"&repnum="& parRepNum &"&print=true"&_
63
"&action=true"&_
64
"&FRiss_db="& Request("FRiss_db") &_
65
"&FRiss_num_list="& Request("FRiss_num_list") 
66
%>"> 
67
<script language="JavaScript" src="images/common.js"></script>
5861 dpurdie 68
<!--#include file="_jquery_includes.asp"-->
5357 dpurdie 69
</head>
70
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
5984 dpurdie 71
<!-- MENU LAYERS -------------------------------------->
72
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"></div>
5357 dpurdie 73
<!-- HEADER -->
74
<!--#include file="_header.asp"-->
75
<!-- BODY ---->
76
<table width="100%" border="0" cellspacing="0" cellpadding="0">
77
  <tr> 
78
    <td width="1%" background="images/bg_home_orange.gif" valign="top">
79
	  <!-- REPORT GROUPS ---------------------------------------------->
80
	  <!--#include file="reports_categories.asp"-->
81
	  <!-- REPORT GROUPS END ------------------------------------------>
82
	</td>
83
	<td rowspan="2" valign="top" width="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0">
84
        <tr>
5984 dpurdie 85
          <td background="images/bg_lght_gray.gif"></td>
5357 dpurdie 86
        </tr>
87
      </table>
88
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
89
        <tr> 
90
          <td width="1%" background="images/bg_lght_gray.gif">&nbsp;</td>
91
          <td width="100%" background="images/bg_lght_gray.gif" class="rep_ttl">
92
		  <!-- REPORT TITLE ----------------->
93
		  <%Section = "TITLE"%>
94
		  <!--#include file="_reports_call.asp"-->
95
		  <!-- REPORT TITLE END ------------->
96
		  </td>
97
        </tr>
98
        <tr> 
99
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="20"></td>
100
          <td background="images/bg_action_norm.gif">&nbsp;</td>
101
        </tr>
102
        <tr> 
103
          <td valign="top" background="images/bg_action_norm.gif"><!--#include file="reports_image_definition.asp"--></td>
104
          <td background="images/bg_bage.gif"> 
105
		    <!-- FORM ----------------------->
106
			<%Section = "FORM"%>
107
			<!--#include file="_reports_call.asp"-->
108
			<!-- FORM END ------------------->
109
		  </td>
110
        </tr>
111
        <tr> 
112
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
113
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
114
        </tr>
115
      </table> 
116
      <!-- REPORT ------------------------------------->
117
	  <table width="100%" border="0" cellspacing="30" cellpadding="0">
118
	  	<tr>
119
	  	  <td>
120
		  <%Section = "BODY"%>
121
	      <!--#include file="_reports_call.asp"-->
122
		  </td>
123
		</tr>
124
	  </table>
125
      <!-- REPORT END ------------------------------------->
126
    </td>
127
    <td width="1%" valign="top" background="images/bg_lght_gray.gif">&nbsp;</td>
128
  </tr>
129
  <tr> 
130
    <td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_reports.gif" width="100" height="72" vspace="20" hspace="30"></td>
131
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
132
  </tr>
133
</table>
134
<!-- FOOTER -->
135
<!--#include file="_footer.asp"-->
136
</body>
137
</html>