Subversion Repositories DevTools

Rev

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

<%
'=====================================================
'                                         GLOBALS
'=====================================================
%>
<!--#include file="../class/classPersistanceModule.asp"-->
<!--#include file="../class/classAccessControl.asp"-->
<!--#include file="../class/classExceptionHandler.asp"-->
<%
' -- Variable Definition ------------------------------
Dim parRtag_id
Dim pkgInfoHash                             ' See Get_Pkg_Info
Dim releaseInfoHash
Dim objAccessControl
Dim objPMod
Dim objEH
Dim objTabControl
Dim aPersistList
Dim isPopupWindow
Dim DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID
Dim TIMER_VALUE
Dim rmDebug                                 ' Will display text in the footer area
Dim sJqueryIformCancel                      ' ID of Cancel Button in Iframe
Dim bJqueryDataTables                       ' Include datatable support
Dim bJqueryForms                            ' Include Jquery Form support
Dim bJqueryVix                              ' Include vix jquery components
Dim bJqueryTimePicker                       ' Include Date-Time picker
Dim bJqueryCommonLoaded                     ' Prevent multiple loads
' -- Variable Initialisation --------------------------
Set releaseInfoHash = Nothing
rmDebug = ""
isPopupWindow = FALSE
parRtag_id = QStrPar("rtag_id")
Set objAccessControl = New AccessControl
Set objPMod = New PersistanceModule
Set objEH = New ExceptionHandler
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID )   ' These parameters are used
'-- rmDebug = rmDebug &  "Proj:" &  DB_PROJ_ID  & ",Rtag:" &  DB_RTAG_ID & ",Pvid:" & DB_PV_ID
TIMER_VALUE = DateDiff("N", "1/1/1900 00:00:00 AM", Now )       ' Find number of minutes since some very old point in time
bJqueryDataTables = FALSE
bJqueryForms = FALSE
bJqueryVix = TRUE
bJqueryTimePicker = FALSE
bJqueryCommonLoaded = FALSE
' -- Constants ----------------------------------------
Const enumPAR_PROJ_ID   = 0
Const enumPAR_RTAG_ID   = 1
Const enumPAR_PV_ID     = 2
Const enumPAR_RFILE     = 3
Const enumPAR_ADD_TYPE  = 4
Const enumPAR_DPV_ID    = 5
aPersistList = Array( "proj_id","rtag_id","pv_id","rfile","add_type","dpv_id","pkg_id" )
'-------------------------------------------------------
%>