Subversion Repositories DevTools

Rev

Go to most recent revision | Details | 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
13
Dim objAccessControl
14
Dim objPMod
15
Dim objEH
16
Dim objTabControl
17
Dim aPersistList
18
Dim isPopupWindow
19
Dim DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID
20
Dim TIMER_VALUE
3959 dpurdie 21
Dim rmDebug                                 ' Will display text in the footer area
5085 dpurdie 22
Dim bJqueryDataTables
23
Dim bJqueryForms
5190 dpurdie 24
Dim bJqueryVix
119 ghuddy 25
' -- Variable Initialisation --------------------------
4063 dpurdie 26
rmDebug = ""
27
isPopupWindow = FALSE
119 ghuddy 28
parRtag_id = QStrPar("rtag_id")
29
Set objAccessControl = New AccessControl
30
Set objPMod = New PersistanceModule
31
Set objEH = New ExceptionHandler
4063 dpurdie 32
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID )	' These parameters are used
5102 dpurdie 33
'-- rmDebug = rmDebug &  "Proj:" &  DB_PROJ_ID  & ",Rtag:" &  DB_RTAG_ID & ",Pvid:" & DB_PV_ID
119 ghuddy 34
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 35
bJqueryDataTables = FALSE
36
bJqueryForms = FALSE
5190 dpurdie 37
bJqueryVix = TRUE
119 ghuddy 38
' -- Constants ----------------------------------------
39
Const enumPAR_PROJ_ID 	= 0
40
Const enumPAR_RTAG_ID 	= 1
41
Const enumPAR_PV_ID 	= 2
42
Const enumPAR_RFILE 	= 3
43
Const enumPAR_ADD_TYPE 	= 4
44
Const enumPAR_DPV_ID 	= 5
45
aPersistList = Array( "proj_id","rtag_id","pv_id","rfile","add_type","dpv_id" )
46
'-------------------------------------------------------
47
%>