Subversion Repositories DevTools

Rev

Rev 7002 | Rev 7029 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7002 Rev 7022
Line 28... Line 28...
28
Dim MAIL_SERVER
28
Dim MAIL_SERVER
29
Dim FAULT_EMAIL_LIST
29
Dim FAULT_EMAIL_LIST
30
Dim FavIcon                     ' Favorite Icon
30
Dim FavIcon                     ' Favorite Icon
31
Dim ServiceConfig               ' All service config
31
Dim ServiceConfig               ' All service config
32
Dim ForcePageLogon              ' Page Protection Mode
32
Dim ForcePageLogon              ' Page Protection Mode
33
Dim VixVerNum : VixVerNum = 21  ' Bump to force cache reload of many resources
33
Dim VixVerNum : VixVerNum = 22  ' Bump to force cache reload of many resources
34
 
34
 
35
' -- Variable Initialisation --------------------------
35
' -- Variable Initialisation --------------------------
36
'Set OraSession = CreateObject("OracleInProcServer.XOraSession")
36
'Set OraSession = CreateObject("OracleInProcServer.XOraSession")
37
'OraSession.CreateDatabasePool 1,2,1, TNS_NAME, DB_AUTHENTICATION, 0
37
'OraSession.CreateDatabasePool 1,2,1, TNS_NAME, DB_AUTHENTICATION, 0
38
'Set OraDatabase = OraSession.GetDatabaseFromPool(5000)
38
'Set OraDatabase = OraSession.GetDatabaseFromPool(5000)
Line 261... Line 261...
261
Const enum_imgPatch               = "<img src='images/i_patch.gif' width='18' height='23' border='0' align='absmiddle' hspace='5' title='This is a patch'>"
261
Const enum_imgPatch               = "<img src='images/i_patch.gif' width='18' height='23' border='0' align='absmiddle' hspace='5' title='This is a patch'>"
262
Const enum_imgPatchObsolete       = "<img src='images/i_patch_obsolete.gif' width='18' height='23' border='0' align='absmiddle' hspace='5' title='Patch is obsolete'>"
262
Const enum_imgPatchObsolete       = "<img src='images/i_patch_obsolete.gif' width='18' height='23' border='0' align='absmiddle' hspace='5' title='Patch is obsolete'>"
263
Const enum_imgUser                = "<img src='images/i_user.gif' width='10' height='13' hspace='2' border='0' align='absmiddle' title='User'>"
263
Const enum_imgUser                = "<img src='images/i_user.gif' width='10' height='13' hspace='2' border='0' align='absmiddle' title='User'>"
264
Const enum_imgUserLg              = "<img src='images/i_user.gif' hspace='3' border='0' align='absmiddle' title='User'>"
264
Const enum_imgUserLg              = "<img src='images/i_user.gif' hspace='3' border='0' align='absmiddle' title='User'>"
265
Const enum_imgGreenPin            = "<img src='images/i_green_pin.gif' width='19' height='17' border='0' title='Pegged to prevent it being ripple built'>"
265
Const enum_imgGreenPin            = "<img src='images/i_green_pin.gif' width='19' height='17' border='0' title='Pegged to prevent it being ripple built'>"
266
Const enum_imgPending             = "<img src='icons/i_pending.gif' width='12' height='14' border='0' title='Package Pending'>"
266
Const enum_imgPending             = "<img src='icons/i_pending.gif' width='11' height='17' border='0' title='Package Pending'>"
267
Const enum_imgReleasedLocked      = "<img src='images/i_locked.gif' width='13' height='15' border='0' title='Released and locked'>"
267
Const enum_imgReleasedLocked      = "<img src='images/i_locked.gif' width='13' height='15' border='0' title='Released and locked'>"
268
Const enum_imgReleasedUnlocked    = "<img src='images/i_unlocked.gif' width='16' height='15' border='0' title='Released and unlocked'>"
268
Const enum_imgReleasedUnlocked    = "<img src='images/i_unlocked.gif' width='16' height='15' border='0' title='Released and unlocked'>"
269
Const enum_imgNotInArchive        = "<img src='images/s_package_not_present.gif' width='16' height='15' border='0' title='Not found in archive'>"
269
Const enum_imgNotInArchive        = "<img src='images/s_package_not_present.gif' width='16' height='15' border='0' title='Not found in archive'>"
270
Const enum_imgNotInRelease        = "<img src='images/s_not_inrelease.gif' width='16' height='15' border='0' title='This Version is not a member of this Release'>"
270
Const enum_imgNotInRelease        = "<img src='images/s_not_inrelease.gif' width='16' height='15' border='0' title='This Version is not a member of this Release'>"
271
Const enum_imgSdkImport           = "<img src='images/i_sdkpkg.png' width='15' height='15' border='0' title='This version imported via an SDK'>"
271
Const enum_imgSdkImport           = "<img src='images/i_sdkpkg.png' width='15' height='15' border='0' title='This version imported via an SDK'>"
Line 321... Line 321...
321
'-- Sometimes it might be necessary to update wAddDaemonInstruction.asp as well.
321
'-- Sometimes it might be necessary to update wAddDaemonInstruction.asp as well.
322
 
322
 
323
'-- human readable string names
323
'-- human readable string names
324
Const OP_CODE_0_STR = "Ripple Build Package"          ' Corresponds to OP_CODE_0_RIPPLE_BUILD_PACKAGE
324
Const OP_CODE_0_STR = "Ripple Build Package"          ' Corresponds to OP_CODE_0_RIPPLE_BUILD_PACKAGE
325
Const OP_CODE_1_STR = "Test Build Package"            ' Corresponds to OP_CODE_1_TEST_BUILD_PACKAGE
325
Const OP_CODE_1_STR = "Test Build Package"            ' Corresponds to OP_CODE_1_TEST_BUILD_PACKAGE
-
 
326
Const OP_CODE_2_STR = "Future Build"                  ' Corresponds to OP_CODE_2_FUTURE_BUILD
326
 
327
 
327
'-- equivalent integer values for use in query strings
328
'-- equivalent integer values for use in query strings
328
Const OP_CODE_0_RIPPLE_BUILD_PACKAGE = "0"
329
Const OP_CODE_0_RIPPLE_BUILD_PACKAGE = "0"
329
Const OP_CODE_1_TEST_BUILD_PACKAGE   = "1"
330
Const OP_CODE_1_TEST_BUILD_PACKAGE   = "1"
-
 
331
Const OP_CODE_2_FUTURE_BUILD         = "2"
330
 
332
 
331
'-- PACKAGE AREA CONSTANTS ------------------------------
333
'-- PACKAGE AREA CONSTANTS ------------------------------
332
Const enum_PKG_AREA_WIP = 0
334
Const enum_PKG_AREA_WIP = 0
333
Const enum_PKG_AREA_PLANNED = 1
335
Const enum_PKG_AREA_PLANNED = 1
334
Const enum_PKG_AREA_RELEASED = 2
336
Const enum_PKG_AREA_RELEASED = 2