Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
119 ghuddy 1
<%
2
'=====================================================
3
'					  GLOBALS
4
'=====================================================
5
%>
6
<!--#include file="../class/classPersistanceModule.asp"-->
7
<!--#include file="../class/classAccessControl.asp"-->
8
<!--#include file="../class/classExceptionHandler.asp"-->
9
<%
10
' -- Variable Definition ------------------------------
11
Dim parRtag_id
12
Dim pkgInfoHash
5207 dpurdie 13
Dim releaseInfoHash
119 ghuddy 14
Dim objAccessControl
15
Dim objPMod
16
Dim objEH
17
Dim objTabControl
18
Dim aPersistList
19
Dim isPopupWindow
20
Dim DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID
21
Dim TIMER_VALUE
3959 dpurdie 22
Dim rmDebug                                 ' Will display text in the footer area
5590 dpurdie 23
Dim sJqueryIformCancel                      ' ID of Cancel Button in Iframe
24
Dim bJqueryDataTables                       ' Include datatable support
25
Dim bJqueryForms                            ' Include Jquery Form support
26
Dim bJqueryVix                              ' Include vix jquery components
27
Dim bJqueryCommonLoaded                     ' Prevent multiple loads
119 ghuddy 28
' -- Variable Initialisation --------------------------
5246 dpurdie 29
Set releaseInfoHash = Nothing
4063 dpurdie 30
rmDebug = ""
31
isPopupWindow = FALSE
119 ghuddy 32
parRtag_id = QStrPar("rtag_id")
33
Set objAccessControl = New AccessControl
34
Set objPMod = New PersistanceModule
35
Set objEH = New ExceptionHandler
4063 dpurdie 36
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID )	' These parameters are used
5102 dpurdie 37
'-- rmDebug = rmDebug &  "Proj:" &  DB_PROJ_ID  & ",Rtag:" &  DB_RTAG_ID & ",Pvid:" & DB_PV_ID
119 ghuddy 38
TIMER_VALUE = DateDiff("N", "1/1/1900 00:00:00 AM", Now )	' Find number of minutes since some very old point in time
5085 dpurdie 39
bJqueryDataTables = FALSE
40
bJqueryForms = FALSE
5190 dpurdie 41
bJqueryVix = TRUE
5590 dpurdie 42
bJqueryCommonLoaded = FALSE
119 ghuddy 43
' -- Constants ----------------------------------------
44
Const enumPAR_PROJ_ID 	= 0
45
Const enumPAR_RTAG_ID 	= 1
46
Const enumPAR_PV_ID 	= 2
47
Const enumPAR_RFILE 	= 3
48
Const enumPAR_ADD_TYPE 	= 4
49
Const enumPAR_DPV_ID 	= 5
5266 dpurdie 50
aPersistList = Array( "proj_id","rtag_id","pv_id","rfile","add_type","dpv_id","pkg_id" )
119 ghuddy 51
'-------------------------------------------------------
52
%>