Subversion Repositories DevTools

Rev

Rev 5513 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5355 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/config.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
17
 
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/reports_def.asp"-->
20
<!--#include file="common/_explorer_common.asp"-->
21
<%
22
'------------ ACCESS CONTROL ------------------
23
%>
24
<!--#include file="_access_control_general.asp"-->
25
<%
26
'------------ Variable Definition -------------
27
Dim parGroup
28
Dim parRepNum
29
Dim parPrint
30
Dim parRtag_id
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>Deployment Manager Reports</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">
6663 dpurdie 56
<link href="scripts/deployment_manager.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
57
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
58
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
59
<script language="JavaScript" src="scripts/common.js?ver=<%=VixVerNum%>"></script>
5355 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> 
67
    <td width="1%" background="images/bg_lite_blue.gif" valign="top">
68
	  <!-- REPORT GROUPS ---------------------------------------------->
69
	  <!--#include file="reports_categories.asp"-->
70
	  <!-- REPORT GROUPS END ------------------------------------------>
71
	</td>
72
	<td rowspan="2" valign="top" width="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0">
73
        <tr>
74
          <td background="images/bg_lght_gray.gif"><a href="default.asp" class="body_txt"><img src="images/i_home.gif" width="13" height="12" hspace="1" vspace="2" border="0" align="absmiddle">Exit</a></td>
75
        </tr>
76
      </table>
77
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
78
        <tr> 
79
          <td width="1%" background="images/bg_lght_gray.gif">&nbsp;</td>
80
          <td width="100%" background="images/bg_lght_gray.gif" class="rep_ttlb">
81
		  <!-- REPORT TITLE ----------------->
82
		  <!-- REPORT TITLE END ------------->
83
		  </td>
84
        </tr>
85
        <tr> 
86
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="20"></td>
87
          <td background="images/bg_action_norm.gif">&nbsp;</td>
88
        </tr>
89
        <tr> 
90
          <td valign="top" background="images/bg_action_norm.gif"><!--#include file="reports_image_definition.asp"--></td>
91
          <td background="images/bg_bage.gif"> 
92
		    <!-- FORM ----------------------->
93
			<!-- FORM END ------------------->
94
		  </td>
95
        </tr>
96
        <tr> 
97
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
98
          <td background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
99
        </tr>
100
        <tr> 
101
          <td>&nbsp;</td>
102
          <td class="body_txt"><br>
103
            <%Call Reports_List ( parGroup )%>	
104
          </td>
105
        </tr>
106
      </table> 
107
      <!-- REPORT ------------------------------------->
108
	  <table width="100%" border="0" cellspacing="5" cellpadding="0">
109
	  	<tr>
110
	  	  <td>
111
	      <!--#include file="_reports_call.asp"-->
112
		  </td>
113
		</tr>
114
	  </table>
115
      <!-- REPORT END ------------------------------------->
116
    </td>
117
    <td width="1%" valign="top" background="images/bg_lght_gray.gif">&nbsp;</td>
118
  </tr>
119
  <tr> 
120
    <td valign="bottom" align="center" background="images/bg_lite_blue.gif"><img src="images/img_reports.gif" width="100" height="72" vspace="20" hspace="30"></td>
121
    <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
122
  </tr>
123
</table>
124
<!-- FOOTER -->
125
<!--#include file="_footer.asp"-->
126
</body>
17 rsolanki 127
</html>