| 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
|
| 119 |
ghuddy |
22 |
' -- Variable Initialisation --------------------------
|
| 4063 |
dpurdie |
23 |
rmDebug = ""
|
|
|
24 |
isPopupWindow = FALSE
|
| 119 |
ghuddy |
25 |
parRtag_id = QStrPar("rtag_id")
|
|
|
26 |
Set objAccessControl = New AccessControl
|
|
|
27 |
Set objPMod = New PersistanceModule
|
|
|
28 |
Set objEH = New ExceptionHandler
|
| 4063 |
dpurdie |
29 |
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID ) ' These parameters are used
|
| 119 |
ghuddy |
30 |
TIMER_VALUE = DateDiff("N", "1/1/1900 00:00:00 AM", Now ) ' Find number of minutes since some very old point in time
|
|
|
31 |
' -- Constants ----------------------------------------
|
|
|
32 |
Const enumPAR_PROJ_ID = 0
|
|
|
33 |
Const enumPAR_RTAG_ID = 1
|
|
|
34 |
Const enumPAR_PV_ID = 2
|
|
|
35 |
Const enumPAR_RFILE = 3
|
|
|
36 |
Const enumPAR_ADD_TYPE = 4
|
|
|
37 |
Const enumPAR_DPV_ID = 5
|
|
|
38 |
aPersistList = Array( "proj_id","rtag_id","pv_id","rfile","add_type","dpv_id" )
|
|
|
39 |
'-------------------------------------------------------
|
|
|
40 |
%>
|