Subversion Repositories DevTools

Rev

Rev 5846 | Rev 6577 | 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
5846 dpurdie 12
Dim pkgInfoHash                             ' See Get_Pkg_Info
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
5636 dpurdie 27
Dim bJqueryTimePicker                       ' Include Date-Time picker
5590 dpurdie 28
Dim bJqueryCommonLoaded                     ' Prevent multiple loads
119 ghuddy 29
' -- Variable Initialisation --------------------------
5246 dpurdie 30
Set releaseInfoHash = Nothing
4063 dpurdie 31
rmDebug = ""
32
isPopupWindow = FALSE
5951 dpurdie 33
parRtag_id = QStrPar("rtag_id") : If parRtag_id = "" Then parRtag_id = Empty 
119 ghuddy 34
Set objAccessControl = New AccessControl
35
Set objPMod = New PersistanceModule
36
Set objEH = New ExceptionHandler
4063 dpurdie 37
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID )	' These parameters are used
5102 dpurdie 38
'-- rmDebug = rmDebug &  "Proj:" &  DB_PROJ_ID  & ",Rtag:" &  DB_RTAG_ID & ",Pvid:" & DB_PV_ID
119 ghuddy 39
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 40
bJqueryDataTables = FALSE
41
bJqueryForms = FALSE
5190 dpurdie 42
bJqueryVix = TRUE
5636 dpurdie 43
bJqueryTimePicker = FALSE
5590 dpurdie 44
bJqueryCommonLoaded = FALSE
119 ghuddy 45
' -- Constants ----------------------------------------
46
Const enumPAR_PROJ_ID 	= 0
47
Const enumPAR_RTAG_ID 	= 1
48
Const enumPAR_PV_ID 	= 2
49
Const enumPAR_RFILE 	= 3
50
Const enumPAR_ADD_TYPE 	= 4
51
Const enumPAR_DPV_ID 	= 5
5266 dpurdie 52
aPersistList = Array( "proj_id","rtag_id","pv_id","rfile","add_type","dpv_id","pkg_id" )
119 ghuddy 53
'-------------------------------------------------------
54
%>