Subversion Repositories DevTools

Rev

Rev 5957 | Rev 7458 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1375 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>
5357 dpurdie 26
<link rel="shortcut icon" href="<%=FavIcon%>"/>
1375 dpurdie 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">
1375 dpurdie 30
</head>
31
 
32
<body leftmargin="0" topmargin="0">
33
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
34
  <tr>
35
    <td valign="top" background="../images/bg_lght_gray.gif">
2365 dpurdie 36
         <!--#include file="../_header.asp"-->
1375 dpurdie 37
    </td>
38
  </tr>
39
  <tr>
40
    <td align="center" background="../images/bg_lght_gray.gif">
41
      <table width="650" border="0" cellspacing="0" cellpadding="0">
42
        <tr>
43
          <td> <table width="100%" border="0" cellspacing="0" cellpadding="0">
44
              <tr>
3959 dpurdie 45
                <td align="left" valign="top" width="1%" background="../images/lbox_bg_blue.gif"><img src="../images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
1375 dpurdie 46
                <td background="../images/lbox_bg_blue.gif"></td>
3959 dpurdie 47
                <td align="right" valign="top" width="1%" background="../images/lbox_bg_blue.gif"><img src="../images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
1375 dpurdie 48
              </tr>
49
              <tr>
50
                <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td>
51
                <td bgcolor="#FFFFFF" valign="top">
52
                  <!-- Body -->
53
                  <table width="500" border="0" cellspacing="0" cellpadding="5">
54
                    <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
55
                      <tr>
56
                        <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td>
57
                        <td class="err_ttl">Manually Versioned Package must be Pegged!</td>
58
                      </tr>
59
                      <tr>
60
                        <td>&nbsp;</td>
61
                        <td class="err_sol">
62
						  <!-- Error Details --------------------------------------->
63
						  Package is NOT released!<br>
64
						  Subversion Packages that have been manually versioned must be pegged.
65
                          <hr>
66
                          The Subversion 'Tag' must end in a '@' followed by a digit string.
67
                          <br>ie: myPackage_1.0.0.0000.cr@1234
68
                          <hr>This restriction does not apply to automatically versioned packages
69
                          as the build system will generate a pegged tag when the package is built.
70
                          </td>
71
                      </tr>
72
                      <tr>
73
                        <td>&nbsp;</td>
74
                        <td class="err_dtl">
75
							<!-- Error Solution --------------------------------------->
76
                        </td>
77
                      </tr>
78
                      <tr>
79
                        <td>&nbsp;</td>
80
                        <td><br>
81
                          <input type="submit" name="btn" value="OK" class="form_btn">
82
                        </td>
83
                      </tr>
84
					  <input type="hidden" name="pv_id" value="<%=parPv_id%>">
85
					  <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
86
                    </form>
87
                  </table>
88
                  <!-- END Body-->
89
                </td>
90
                <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
91
              </tr>
92
              <tr>
3959 dpurdie 93
                <td width="1%" background="../images/lbox_bg_blue.gif" valign="bottom"><img src="../images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
1375 dpurdie 94
                <td background="../images/lbox_bg_blue.gif"></td>
3959 dpurdie 95
                <td width="1%" background="../images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="../images/lbox_br_cnr_b.gif" width="13" height="13"></td>
1375 dpurdie 96
              </tr>
97
            </table></td>
98
        </tr>
99
      </table>
100
    </td>
101
  </tr>
102
</table>
3959 dpurdie 103
  </td>
1375 dpurdie 104
  </tr>
105
</table>
5957 dpurdie 106
<!-- FOOTER -->
107
<!--#include file="../_footer.asp"-->
1375 dpurdie 108
</body>
109
</html>
3959 dpurdie 110