Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|			           PACKAGE SEARCH			     |
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
%>
23
<!--#include file="_access_control_general.asp"-->
24
<%
25
'------------ Variable Definition -------------
26
Dim Section
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
<html>
42
<head>
43
<title>Release Manager</title>
44
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
45
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
46
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
47
<link rel="stylesheet" href="images/navigation.css" type="text/css">
48
<script language="JavaScript" src="images/common.js"></script>
49
<!-- DROPDOWN MENUS -->
50
<!--#include file="_menu_def.asp"-->
51
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
52
</head>
53
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
54
<!-- MENU LAYERS -------------------------------------->
55
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
56
</div>
57
<!-- HEADER -->
1499 dpurdie 58
<!--#include file="_header.asp"-->
119 ghuddy 59
<!-- BODY ---->
60
<table width="100%" border="0" cellspacing="0" cellpadding="0">
61
  <tr> 
62
    <td background="images/bg_lght_gray.gif" align="left" valign="top"> 
63
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
64
        <tr> 
65
          <td valign="top" width="1%"><img src="images/h_trsp_dot.gif" width="10" height="10"></td>
66
          <td valign="top" width="1%"> 
67
            <!-- LEFT -->
68
 
69
          </td>
70
          <td valign="top" width="1%"><img src="images/h_trsp_dot.gif" width="30" height="10"></td>
71
          <td valign="top" width="100%"> 
72
            <!-- MIDDLE -->
73
            <!-- PACKAGE PAGES ------------------------------------------>
74
            <table width="800" border="0" cellspacing="0" cellpadding="0">
75
              <tr> 
76
                <td> 
77
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
78
                    <tr> 
79
                      <td width="1%"></td>
80
                      <td width="100%" align="right"><img src="images/h_trsp_dot.gif" width="30" height="30"></td>
81
                      <td width="1%"></td>
82
                    </tr>
83
                    <tr> 
84
                      <td width="1%"></td>
85
                      <td align="right"> 
86
                      </td>
87
                      <td width="1%"></td>
88
                    </tr>
89
                    <tr> 
90
                      <td width="1%" bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="480"></td>
91
                      <td bgcolor="#FFFFFF" valign="top"> 
92
                        <!-- PACKAGE SEARCH ------------------------------------------------>
93
                        <br>
94
                        <span class="form_field">Search results for <%="'"& Request("FRpkg_name") &"'"%></span><br>
95
                        <br> 
96
						<br>
97
                        <a href='index.asp' class="txt_linked"><img src="images/i_home.gif" width="13" height="12" border="0" align="absmiddle" hspace="3">Back to home</a><br>
98
                        <br>
99
						<br>
100
						<%Section = "BODY"%>
101
	      				<!--#include file="_reports_call.asp"-->
102
						<br>
103
                        <a href='index.asp' class="txt_linked"><img src="images/i_home.gif" width="13" height="12" border="0" align="absmiddle" hspace="3">Back to home</a><br>
104
                        <br> 
105
                        <!------------------------------------------------------------>
106
                      </td>
107
                      <td width="1%" background="images/lbox_bgside_white.gif">&nbsp;</td>
108
                    </tr>
109
                    <tr> 
110
                      <td width="1%" background="images/lbox_bg_orange.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
111
                      <td background="images/lbox_bg_orange.gif"></td>
112
                      <td width="1%" background="images/lbox_bgside_orange.gif"></td>
113
                    </tr>
114
                  </table>
115
                </td>
116
              </tr>
117
            </table>
118
            <!-- END MIDDLE -->
119
          </td>
120
        </tr>
121
      </table>
122
    </td>
123
  </tr>
124
</table>
125
<!-- FOOTER -->
126
<!--#include file="_footer.asp"-->
127
</body>
128
</html>
129
<%
130
Call Destroy_All_Objects
131
%>