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 parPv_id
10
Dim parRfile
11
Dim parAnchor
12
'-- CONSTANTS ---------------------------
13
'-- INITIALISATION ----------------------
14
tempArr = Split( Session(enum_RELMGR_ERRDESCRIPTION), "|" )
15
parRtag_id = tempArr(0)
16
parPv_id = tempArr(1)
17
parRfile = tempArr(2)
18
parAnchor = tempArr(3)
19
'-- DESTROY -----------------------------
20
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
21
'----------------------------------------
22
%>
23
<html>
24
<head>
25
<title>Release Manager</title>
26
<link rel="shortcut icon" href="<%=FavIcon%>"/>
27
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 28
<link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
29
<link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
5357 dpurdie 30
</head>
31
<body leftmargin="0" topmargin="0">
6879 dpurdie 32
<!--#include file="../_header.asp"-->
7458 dpurdie 33
<table height="90%" class="full_table bg_grey">
5357 dpurdie 34
  <tr>
7458 dpurdie 35
    <td align="center">
5357 dpurdie 36
      <table width="650" border="0" cellspacing="0" cellpadding="0">
37
        <tr>
7458 dpurdie 38
          <td> 
7459 dpurdie 39
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
5357 dpurdie 40
              <tr>
41
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
42
                <td bgcolor="#FFFFFF" valign="top">
43
                  <!-- Body -->
44
                  <table width="400" border="0" cellspacing="0" cellpadding="5">
45
                    <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
46
                      <tr>
47
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
48
                        <td class="err_ttl">Missing Dependencies!</td>
49
                      </tr>
50
                      <tr>
51
                        <td>&nbsp;</td>
52
                        <td class="err_sol">
53
						  <!-- Error Details --------------------------------------->
54
						  Package is NOT made official!<br>
55
						  Some dependencies of this package are missing from a release and they are indicated with <img src="../images/s_not_found.gif" width="19" height="17"> icon.
56
                        </td>
57
                      </tr>
58
                      <tr>
59
                        <td>&nbsp;</td>
60
                        <td class="err_dtl">
61
							<!-- Error Solution --------------------------------------->
62
							Make sure all dependencies are available in this release.
63
                        </td>
64
                      </tr>
65
                      <tr>
66
                        <td>&nbsp;</td>
67
                        <td><br>
68
                          <input type="submit" name="btn" value="OK" class="form_btn">
69
                        </td>
70
                      </tr>
7459 dpurdie 71
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
72
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5357 dpurdie 73
                    </form>
74
                  </table>
75
                  <!-- END Body-->
76
                </td>
77
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
78
              </tr>
7458 dpurdie 79
            </table>
80
          </td>
5357 dpurdie 81
        </tr>
82
      </table>
83
    </td>
84
  </tr>
85
</table>
5957 dpurdie 86
<!-- FOOTER -->
87
<!--#include file="../_footer.asp"-->
5357 dpurdie 88
</body>
89
</html>
90