Subversion Repositories DevTools

Rev

Rev 6876 | 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
%>
6181 dpurdie 23
<!--#include file="_access_control_login_optional.asp"-->
5357 dpurdie 24
<!--#include file="_access_control_general.asp"-->
25
<%
26
'------------ Variable Definition -------------
27
Dim parGroup
28
Dim parRepNum
29
Dim parPrint
30
'------------ Constants Declaration -----------
31
Const img_Advanced_Search = "<img src='images/img_reports_adv_search.jpg' width='199' height='164'>"
32
Const img_Admin_Reports   = "<img src='images/img_reports_admin.jpg' width='199' height='164'>"
33
Const img_Reports 	   	  = "<img src='images/img_reports2.jpg' width='199' height='164' border='0' alt=''>"
34
'------------ Variable Init -------------------
35
parGroup = Request("group")
36
parRepNum = Request("repnum")
37
parPrint = Request("print")
38
parRtag_id = Request("rtag_id")
39
'----------------------------------------------
40
%>
41
<%
42
Function Set_Row_Style ( SSLink )
43
	Set_Row_Style = "onMouseOver=""this.bgColor = '"& hlColor &"'"" onMouseOut =""this.bgColor = ''"" onClick=""location.href='"& SSLink &"'"""
44
End Function
45
%>
46
<%
47
'------------------------- MAIN LINE ---------------------------
48
%>
49
<html>
50
<head>
51
<title>Release Manager</title>
52
<link rel="shortcut icon" href="<%=FavIcon%>"/>
53
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
54
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 55
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
56
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
57
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
5984 dpurdie 58
<!--#include file="_menu_def.asp"-->
6579 dpurdie 59
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 60
</head>
61
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
62
<!-- HEADER -->
63
<!--#include file="_header.asp"-->
64
<!-- BODY ---->
65
<table width="100%" border="0" cellspacing="0" cellpadding="0">
66
  <tr> 
6876 dpurdie 67
    <td class='bg_panel'>
5357 dpurdie 68
	  <!-- REPORT GROUPS ---------------------------------------------->
69
	  <!--#include file="reports_categories.asp"-->
70
	  <!-- REPORT GROUPS END ------------------------------------------>
71
	</td>
5984 dpurdie 72
	<td rowspan="2" valign="top" width="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0"></td>
73
</table>
5357 dpurdie 74
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
75
        <tr> 
76
          <td width="1%" background="images/bg_lght_gray.gif">&nbsp;</td>
77
          <td width="100%" background="images/bg_lght_gray.gif" class="rep_ttlb">
78
		  <!-- REPORT TITLE ----------------->
79
		  <!-- REPORT TITLE END ------------->
80
		  </td>
81
        </tr>
82
        <tr> 
6877 dpurdie 83
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="20"></td>
84
          <td class='bg_dialog'>&nbsp;</td>
5357 dpurdie 85
        </tr>
86
        <tr> 
6877 dpurdie 87
          <td valign="top" class='bg_dialog'><!--#include file="reports_image_definition.asp"--></td>
6876 dpurdie 88
          <td class='bg_bage'> 
5357 dpurdie 89
		    <!-- FORM ----------------------->
90
			<!-- FORM END ------------------->
91
		  </td>
92
        </tr>
93
        <tr> 
6877 dpurdie 94
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="1"></td>
95
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="1"></td>
5357 dpurdie 96
        </tr>
97
        <tr> 
98
          <td>&nbsp;</td>
99
          <td class="body_txt"><br>
100
            <%Call Reports_List ( parGroup )%>	
101
          </td>
102
        </tr>
103
      </table> 
104
      <!-- REPORT ------------------------------------->
105
	  <table width="100%" border="0" cellspacing="5" cellpadding="0">
106
	  	<tr>
107
	  	  <td>
108
	      <!--#include file="_reports_call.asp"-->
109
		  </td>
110
		</tr>
111
	  </table>
112
      <!-- REPORT END ------------------------------------->
113
    </td>
114
    <td width="1%" valign="top" background="images/bg_lght_gray.gif">&nbsp;</td>
115
  </tr>
116
  <tr> 
6876 dpurdie 117
    <td class='bg_panel_btm'><img src="images/img_reports.gif" width="100" height="72" vspace="20" hspace="30"></td>
5357 dpurdie 118
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
119
  </tr>
120
</table>
121
<!-- FOOTER -->
122
<!--#include file="_footer.asp"-->
123
</body>
119 ghuddy 124
</html>