Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
7536 dpurdie 5
'|                   NEW VERSION                     |
5357 dpurdie 6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
7536 dpurdie 12
Response.Expires = 0    ' always load the page, dont store
5590 dpurdie 13
Dim bInIframe : bInIframe = False
5357 dpurdie 14
%>
15
<!--#include file="common/conf.asp"-->
16
<!--#include file="common/globals.asp"-->
17
<!--#include file="common/formating.asp"-->
18
<!--#include file="common/qstr.asp"-->
19
<!--#include file="common/common_subs.asp"-->
20
<!--#include file="common/common_dbedit.asp"-->
21
 
22
<%
23
' Make sure rtag_id is always present
24
If Request("rtag_id") = "" Then
5957 dpurdie 25
    Call Destroy_All_Objects
7536 dpurdie 26
    Response.Redirect("index.asp")
5357 dpurdie 27
End If
28
%>
29
<%
30
' Set rfile parameter. This is a return page after Login
31
Call objPMod.StoreParameter ( "rfile", "form_new_version.asp" )
32
'------------ ACCESS CONTROL ------------------
33
%>
34
<!--#include file="_access_control_login.asp"-->
35
<!--#include file="_access_control_general.asp"-->
36
<!--#include file="_access_control_project.asp"-->
37
<%
38
'------------ Variable Definition -------------
39
'------------ Constants Declaration -----------
40
'------------ Variable Init -------------------
41
'----------------------------------------------
7536 dpurdie 42
If NOT canAddToRelease(Request("rtag_id"),Request("pv_id") ) Then
43
    Call RaiseMsg ( enum_MSG_ERROR, "<h3>Cannot create a new version of a package that is a part of an SDK.</h3>" )
44
End If
5357 dpurdie 45
%>
46
<html>
47
<head>
48
<title>Release Manager</title>
49
<link rel="shortcut icon" href="<%=FavIcon%>"/>
50
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
51
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6579 dpurdie 52
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
53
<link rel="stylesheet" href="images/navigation.css?ver=<%=VixVerNum%>" type="text/css">
54
<script language="JavaScript" src="images/common.js?ver=<%=VixVerNum%>"></script>
5983 dpurdie 55
<!--#include file="_jquery_includes.asp"-->
5357 dpurdie 56
<!-- DROPDOWN MENUS -->
57
<!--#include file="_menu_def.asp"-->
6579 dpurdie 58
<script language="JavaScript1.2" src="images/popup_menu.js?ver=<%=VixVerNum%>"></script>
5357 dpurdie 59
</head>
60
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
61
<!-- HEADER -->
62
<!--#include file="_header.asp"-->
63
<!-- BODY ---->
64
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
65
  <tr>
6874 dpurdie 66
    <td align="center" valign="top" class='bg_grey'>
7536 dpurdie 67
    <!-- MIDDLE -->
68
    <!--#include file="_form_new_version_page.asp"-->
69
    </td>
5357 dpurdie 70
  </tr>
71
</table>
5957 dpurdie 72
<!-- FOOTER -->
73
<!--#include file="_footer.asp"-->
5357 dpurdie 74
</body>
75
</html>