Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5898 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">
5898 dpurdie 30
</head>
31
 
32
<body leftmargin="0" topmargin="0">
7458 dpurdie 33
<!--#include file="../_header.asp"-->
34
<table height="90%" class="full_table bg_grey">
5898 dpurdie 35
  <tr>
7458 dpurdie 36
    <td align="center">
5898 dpurdie 37
      <table width="650" border="0" cellspacing="0" cellpadding="0">
38
        <tr>
7458 dpurdie 39
          <td> 
7459 dpurdie 40
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
5898 dpurdie 41
              <tr>
42
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
43
                <td bgcolor="#FFFFFF" valign="top">
44
                  <!-- Body -->
45
                  <table width="500" border="0" cellspacing="0" cellpadding="5">
46
                    <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
47
                      <tr>
48
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
49
                        <td class="err_ttl">Unbuildable Package</td>
50
                      </tr>
51
                      <tr>
52
                        <td>&nbsp;</td>
53
                        <td class="err_sol">
54
						  <!-- Error Details --------------------------------------->
55
						  Package is NOT released!<br>
56
						  This package has been marked as unbuildable.
57
                          <hr>
58
                          Unbuildable packages are packages that have been created outside of the build system
59
                          <br>The packages may have been created by 'Deployment Manager' or some other mechanism that
60
                          has caused the package version to spring into existence outside of the normal creation mechanisms.
61
                          </td>
62
                      </tr>
63
                      <tr>
64
                        <td>&nbsp;</td>
65
                        <td class="err_dtl">
66
							<!-- Error Solution --------------------------------------->
67
                        </td>
68
                      </tr>
69
                      <tr>
70
                        <td>&nbsp;</td>
71
                        <td><br>
72
                          <input type="submit" name="btn" value="OK" class="form_btn">
73
                        </td>
74
                      </tr>
7459 dpurdie 75
                      <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
76
                      <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
5898 dpurdie 77
                    </form>
78
                  </table>
79
                  <!-- END Body-->
80
                </td>
81
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
82
              </tr>
7458 dpurdie 83
            </table>
84
          </td>
5898 dpurdie 85
        </tr>
86
      </table>
87
    </td>
88
  </tr>
89
</table>
5957 dpurdie 90
<!-- FOOTER -->
91
<!--#include file="../_footer.asp"-->
5898 dpurdie 92
</body>
93
</html>
94