Subversion Repositories DevTools

Rev

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