Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'		Approve a Single Package merge candidate
9
'=====================================================
10
%>
11
<!--#include file="common/conf.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/formating.asp"-->
14
<!--#include file="common/qstr.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="common/common_dbedit.asp"-->
123 ghuddy 17
<!--#include file="common/common_make_release_subs.asp"-->
119 ghuddy 18
<%
19
'------------ ACCESS CONTROL ------------------
20
%>
21
<!--#include file="_access_control_login.asp"-->
22
<!--#include file="_access_control_general.asp"-->
23
<!--#include file="_access_control_project.asp"-->
24
<%
25
'------------ Variable Definition -------------
26
Dim parPv_id
27
'------------ Constants Declaration -----------
28
 
29
'------------ Variable Init -------------------
30
parPv_id = QStrPar("pv_id")
31
'----------------------------------------------
32
 
33
'-------------------------------------------------------------------------------------
34
'---------------------------------- MAIN LINE ----------------------------------------
35
 
36
 
37
' All Requirements OK
123 ghuddy 38
Call PUBLIC_ApproveMerge ( parRtag_id, parPv_id )
119 ghuddy 39
 
40
If objEH.Finally Then
41
	Call OpenInWindow ( "dependencies.asp?rtag_id="&parRtag_id&"&pv_id="&parPv_id )
42
End If
43
 
44
%>
45
 
46
 
47
<!-- DESTRUCTOR ------->
48
<!--#include file="common/destructor.asp"-->