Subversion Repositories DevTools

Rev

Rev 6877 | 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>
7063 dpurdie 58
<!--#include file="_jquery_includes.asp"-->
5984 dpurdie 59
<!--#include file="_menu_def.asp"-->
6579 dpurdie 60
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 61
</head>
62
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
63
<!-- HEADER -->
64
<!--#include file="_header.asp"-->
65
<!-- BODY ---->
66
<table width="100%" border="0" cellspacing="0" cellpadding="0">
67
  <tr> 
6876 dpurdie 68
    <td class='bg_panel'>
5357 dpurdie 69
	  <!-- REPORT GROUPS ---------------------------------------------->
70
	  <!--#include file="reports_categories.asp"-->
71
	  <!-- REPORT GROUPS END ------------------------------------------>
72
	</td>
5984 dpurdie 73
	<td rowspan="2" valign="top" width="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0"></td>
74
</table>
5357 dpurdie 75
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
76
        <tr> 
77
          <td width="1%" background="images/bg_lght_gray.gif">&nbsp;</td>
78
          <td width="100%" background="images/bg_lght_gray.gif" class="rep_ttlb">
79
		  <!-- REPORT TITLE ----------------->
80
		  <!-- REPORT TITLE END ------------->
81
		  </td>
82
        </tr>
83
        <tr> 
6877 dpurdie 84
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="20"></td>
85
          <td class='bg_dialog'>&nbsp;</td>
5357 dpurdie 86
        </tr>
87
        <tr> 
6877 dpurdie 88
          <td valign="top" class='bg_dialog'><!--#include file="reports_image_definition.asp"--></td>
6876 dpurdie 89
          <td class='bg_bage'> 
5357 dpurdie 90
		    <!-- FORM ----------------------->
91
			<!-- FORM END ------------------->
92
		  </td>
93
        </tr>
94
        <tr> 
6877 dpurdie 95
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="1"></td>
96
          <td class='bg_dialog'><img src="images/spacer.gif" width="1" height="1"></td>
5357 dpurdie 97
        </tr>
98
        <tr> 
99
          <td>&nbsp;</td>
100
          <td class="body_txt"><br>
101
            <%Call Reports_List ( parGroup )%>	
102
          </td>
103
        </tr>
104
      </table> 
105
      <!-- REPORT ------------------------------------->
106
	  <table width="100%" border="0" cellspacing="5" cellpadding="0">
107
	  	<tr>
108
	  	  <td>
109
	      <!--#include file="_reports_call.asp"-->
110
		  </td>
111
		</tr>
112
	  </table>
113
      <!-- REPORT END ------------------------------------->
114
    </td>
115
    <td width="1%" valign="top" background="images/bg_lght_gray.gif">&nbsp;</td>
116
  </tr>
117
  <tr> 
6876 dpurdie 118
    <td class='bg_panel_btm'><img src="images/img_reports.gif" width="100" height="72" vspace="20" hspace="30"></td>
5357 dpurdie 119
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
120
  </tr>
121
</table>
122
<!-- FOOTER -->
123
<!--#include file="_footer.asp"-->
124
</body>
119 ghuddy 125
</html>