Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%Option Explicit%>
3
<%Response.Expires = 0%>
4
<!--#include file="../common/conf.asp"-->
5
<%
6
'-- VARIABLE DECLARATION ----------------
7
Dim tempArr
8
Dim parRtag_id
9
Dim missingPrereq
10
Dim rsNotOfficial
11
'-- CONSTANTS ---------------------------
12
'-- INITIALISATION ----------------------
13
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
14
parRtag_id = tempArr(0)
15
missingPrereq = tempArr(1)
16
'-- DESTROY -----------------------------
17
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
18
'----------------------------------------
19
%>
20
<%
21
Sub Not_Made_Official( NNmissingPrereqList, OOrs )
22
	Dim Query_String
23
	Query_String = _
24
	" SELECT pkg.pkg_name, pv.pkg_version"&_
25
	"	FROM packages pkg,"&_
26
	"	     package_versions pv"&_
27
	"	WHERE pv.pkg_id = pkg.pkg_id"&_
28
	"	  AND pv.pv_id IN ( "& NNmissingPrereqList &" )"&_
29
	"	ORDER BY UPPER(pkg.pkg_name)"
30
	Set OOrs = OraDatabase.DbCreateDynaset( Query_String, cint(0))
31
End Sub
32
%>
33
<html>
34
<head>
35
<title>Release Manager</title>
36
<link rel="shortcut icon" href="<%=FavIcon%>"/>
37
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 38
<link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
39
<link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
5357 dpurdie 40
</head>
41
 
42
<body leftmargin="0" topmargin="0">
7458 dpurdie 43
<!--#include file="../_header.asp"-->
44
<table height="90%" class="full_table bg_grey">
5357 dpurdie 45
  <tr>
7458 dpurdie 46
    <td align="center">
5357 dpurdie 47
      <table width="650" border="0" cellspacing="0" cellpadding="0">
48
        <tr>
7458 dpurdie 49
          <td> 
7459 dpurdie 50
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
5357 dpurdie 51
              <tr>
52
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
53
                <td bgcolor="#FFFFFF" valign="top">
54
                  <!-- Body -->
55
                  <table width="400" border="0" cellspacing="0" cellpadding="5">
56
                    <form name="message" method="get" action="../dependencies.asp">
57
                      <tr>
58
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
59
                        <td class="err_ttl">Some Packages Not Released!</td>
60
                      </tr>
61
                      <tr>
62
                        <td>&nbsp;</td>
63
                        <td class="err_dtl">
7459 dpurdie 64
                        <!-- Error Details --------------------------------------->
5357 dpurdie 65
						Following packages may be missing Label, Source Path, Reason for release or Fixed Issues List.<br><br>
66
						<table width="100%" border="0" cellspacing="2" cellpadding="0">
67
							<%Call Not_Made_Official( missingPrereq, rsNotOfficial )%>
68
						    <%While ((NOT rsNotOfficial.BOF) AND (NOT rsNotOfficial.EOF))%>
69
							<tr>
70
							<td width="1%" nowrap class="form_item"><%=rsNotOfficial("pkg_name")%></td>
71
							<td width="100%" nowrap class="form_item">&nbsp;<%=rsNotOfficial("pkg_version")%></td>
72
							</tr>
73
							<%rsNotOfficial.MoveNext
74
	 	   					Wend%>
75
						</table>
7459 dpurdie 76
                        </td>
5357 dpurdie 77
                      </tr>
78
                      <tr>
79
                        <td>&nbsp;</td>
80
                        <td class="err_sol">
7459 dpurdie 81
                        <!-- Error Solution --------------------------------------->
5357 dpurdie 82
						Please, go to Release Notes tab for each package listed above and fix this problem.
7459 dpurdie 83
                        </td>
5357 dpurdie 84
                      </tr>
85
                      <tr>
86
                        <td>&nbsp;</td>
87
                        <td><br>
88
                          <input type="submit" name="btn" value="OK" class="form_btn">
89
                        </td>
90
                      </tr>
91
					  <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
92
                    </form>
93
                  </table>
94
                  <!-- END Body-->
95
                </td>
96
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
97
              </tr>
7458 dpurdie 98
            </table>
99
          </td>
5357 dpurdie 100
        </tr>
101
      </table>
102
    </td>
103
  </tr>
104
</table>
5957 dpurdie 105
<!-- FOOTER -->
106
<!--#include file="../_footer.asp"-->
5357 dpurdie 107
</body>
108
</html>
109