Subversion Repositories DevTools

Rev

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