Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
7457 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">
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">
30
</head>
31
<body leftmargin="0" topmargin="0">
7458 dpurdie 32
<!--#include file="../_header.asp"-->
33
<table height="90%" class="full_table bg_grey">
7457 dpurdie 34
  <tr>
35
    <td align="center">
36
    <div style="width:650px" class="Panel rounded_box">
37
        <div class=PanelFrame>
38
            <form name="message" method="get" action="../<%=parRfile & parAnchor%>">
39
                <div class=textPanel>
40
                    <img class=PanelCellMid src="../images/i_warning.gif" width="32" height="32">
41
                    <span class="PanelCellMid err_ttl">Package released under incorrect VCS!</span>
42
              </div>
43
              <div class="textPanel err_sol PanelPadTop">
44
                  <!-- Error Details --------------------------------------->
45
                    Package is NOT released!
46
 
47
                    <p>This version of the package is not being released under the current Version Control System (VCS)
48
                    in use by this package.
49
 
50
                    <p>The package has been migrated to a different VCS, but this version is being released under a previous type of VCS.
51
                    This is not allowed.
52
 
53
                    <p>Possible senarios:
54
                    <ul>
55
                        <li>
56
                            The package was migrated from ClearCase to Subversion, but this version of the package is being released under ClearCase.
57
                        </li>
58
                        <li>
59
                            The package was migrated from Subversion to GIT, but this version of the package is being released under Subversion or ClearCase.
60
                        </li>
61
                    </ul>
62
              </div>
63
              <div class="textPanel err_dtl">
64
                <!-- Error Solution --------------------------------------->
65
                Release the package-version under same VCS as other versions of the package.
66
              </div>
67
              <div class='PanelSep'></div>
68
              <div class="buttonPanelWhite err_dtl">
69
                  <input type="submit" name="btn" value="OK" class="form_btn">
70
                  <input type="hidden" name="pv_id" value="<%=parPv_id%>">
71
                  <input type="hidden" name="rtag_id" value="<%=parRtag_id%>">
72
              </div>
73
            </form>
74
        </div>
75
    </div>
76
    </td>
77
  </tr>
78
</table>
79
  </td>
80
  </tr>
81
</table>
82
<!-- FOOTER -->
83
<!--#include file="../_footer.asp"-->
84
</body>
85
</html>
86