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
 
32
<body leftmargin="0" topmargin="0">
7458 dpurdie 33
<!--#include file="../_header.asp"-->
34
<table height="90%" class="full_table bg_grey">
35
  <tr>
36
    <td align="center">
7459 dpurdie 37
      <table width="650" border="0" cellspacing="0" cellpadding="0">
38
        <tr>
39
          <td> 
40
            <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
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 -->
5596 dpurdie 45
                           <table border="0" cellspacing="0" cellpadding="5">
5357 dpurdie 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">Package Information Section Incorrect!</td>
50
                                 </tr>
51
                                 <tr>
52
                                    <td>&nbsp;</td>
53
                                    <td class="err_sol">
54
                                       <!-- Error Details --------------------------------------->
55
                                       Package is NOT released!<br><br>
5596 dpurdie 56
                                       An auto-buildable package cannot have a Version Control System type of "Uncontrolled" or "CVS".
5357 dpurdie 57
                                    </td>
58
                                 </tr>
59
                                 <tr>
60
                                    <td>&nbsp;</td>
61
                                    <td class="err_dtl">
62
                                       <!-- Error Solution --------------------------------------->
63
                                       Re-version the package to a manual-build type, or change the version control system.
64
                                    </td>
65
                                 </tr>
66
                                 <tr>
67
                                    <td>&nbsp;</td>
68
                                    <td>
69
                                       <br>
70
                                       <input type="submit" name="btn" value="OK" class="form_btn">
71
                                    </td>
72
                                 </tr>
73
                                 <input type="hidden" name="pv_id" value="<%=parPv_id%>">
74
                                 <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
75
                              </form>
76
                           </table>
7459 dpurdie 77
                  <!-- END Body-->
78
                </td>
79
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
80
              </tr>
81
            </table>
82
          </td>
83
        </tr>
84
      </table>
85
    </td>
86
  </tr>
5357 dpurdie 87
</table>
5957 dpurdie 88
<!-- FOOTER -->
89
<!--#include file="../_footer.asp"-->
5357 dpurdie 90
</body>
91
</html>
7459 dpurdie 92