| Line 18... |
Line 18... |
| 18 |
Dim release_archiveURL
|
18 |
Dim release_archiveURL
|
| 19 |
Dim ACCESS_MANAGER_URL
|
19 |
Dim ACCESS_MANAGER_URL
|
| 20 |
Dim DEPLOYMENT_MANAGER_URL
|
20 |
Dim DEPLOYMENT_MANAGER_URL
|
| 21 |
Dim strRelativePath ' Rel Path from script to URL
|
21 |
Dim strRelativePath ' Rel Path from script to URL
|
| 22 |
Dim MAIL_SERVER
|
22 |
Dim MAIL_SERVER
|
| 23 |
Dim dpkg_archiveRoot
|
- |
|
| 24 |
|
23 |
|
| 25 |
' -- Variable Initialisation --------------------------
|
24 |
' -- Variable Initialisation --------------------------
|
| 26 |
'Set OraSession = CreateObject("OracleInProcServer.XOraSession")
|
25 |
'Set OraSession = CreateObject("OracleInProcServer.XOraSession")
|
| 27 |
'OraSession.CreateDatabasePool 1,2,1, TNS_NAME, DB_AUTHENTICATION, 0
|
26 |
'OraSession.CreateDatabasePool 1,2,1, TNS_NAME, DB_AUTHENTICATION, 0
|
| 28 |
'Set OraDatabase = OraSession.GetDatabaseFromPool(5000)
|
27 |
'Set OraDatabase = OraSession.GetDatabaseFromPool(5000)
|
| Line 82... |
Line 81... |
| 82 |
DocRepositiryLinkOld = DOC_REPOSITORY_URL & "docLinkTo.asp?old=1&fileid="
|
81 |
DocRepositiryLinkOld = DOC_REPOSITORY_URL & "docLinkTo.asp?old=1&fileid="
|
| 83 |
|
82 |
|
| 84 |
' -- Constants ----------------------------------------
|
83 |
' -- Constants ----------------------------------------
|
| 85 |
HTTP_PKG_ARCHIVE = "http://" & archive_server
|
84 |
HTTP_PKG_ARCHIVE = "http://" & archive_server
|
| 86 |
dpkg_archiveURL = HTTP_PKG_ARCHIVE & "/dpkg_archive/"
|
85 |
dpkg_archiveURL = HTTP_PKG_ARCHIVE & "/dpkg_archive/"
|
| 87 |
dpkg_archiveRoot = "\\" & archive_server & "\releasem\dpkg_archive"
|
- |
|
| 88 |
release_archiveURL = HTTP_PKG_ARCHIVE & "/releases/"
|
86 |
release_archiveURL = HTTP_PKG_ARCHIVE & "/releases/"
|
| 89 |
ACCESS_MANAGER_URL = "http://" & Request.ServerVariables("HTTP_HOST") & "/Access_Manager"
|
87 |
ACCESS_MANAGER_URL = "http://" & Request.ServerVariables("HTTP_HOST") & "/Access_Manager"
|
| 90 |
DEPLOYMENT_MANAGER_URL = "http://" & Request.ServerVariables("HTTP_HOST") & "/Deployment_Manager"
|
88 |
DEPLOYMENT_MANAGER_URL = "http://" & Request.ServerVariables("HTTP_HOST") & "/Deployment_Manager"
|
| 91 |
%>
|
89 |
%>
|
| 92 |
<%
|
90 |
<%
|
| Line 155... |
Line 153... |
| 155 |
Const enum_imgUser = "<img src='images/i_user.gif' width='10' height='13' hspace='2' border='0' align='absmiddle' title='User'>"
|
153 |
Const enum_imgUser = "<img src='images/i_user.gif' width='10' height='13' hspace='2' border='0' align='absmiddle' title='User'>"
|
| 156 |
Const enum_imgGreenPin = "<img src='images/i_green_pin.gif' width='19' height='17' border='0' title='Pegged to prevent it being ripple built'>"
|
154 |
Const enum_imgGreenPin = "<img src='images/i_green_pin.gif' width='19' height='17' border='0' title='Pegged to prevent it being ripple built'>"
|
| 157 |
Const enum_imgPending = "<img src='icons/i_pending.gif' width='12' height='14' border='0' title='Package Pending'>"
|
155 |
Const enum_imgPending = "<img src='icons/i_pending.gif' width='12' height='14' border='0' title='Package Pending'>"
|
| 158 |
Const enum_imgReleasedLocked = "<img src='images/i_locked.gif' width='13' height='15' border='0' title='Released and locked'>"
|
156 |
Const enum_imgReleasedLocked = "<img src='images/i_locked.gif' width='13' height='15' border='0' title='Released and locked'>"
|
| 159 |
Const enum_imgReleasedUnlocked = "<img src='images/i_unlocked.gif' width='16' height='15' border='0' title='Released and unlocked'>"
|
157 |
Const enum_imgReleasedUnlocked = "<img src='images/i_unlocked.gif' width='16' height='15' border='0' title='Released and unlocked'>"
|
| 160 |
Const enum_imgNotInArchive = "<img src='images/s_not_found.gif' width='16' height='15' border='0' title='Not found in archive'>"
|
158 |
Const enum_imgNotInArchive = "<img src='images/s_package_not_present.gif' width='16' height='15' border='0' title='Not found in archive'>"
|
| 161 |
|
159 |
|
| 162 |
|
160 |
|
| 163 |
'-- ICONS SMALL ------------------------------
|
161 |
'-- ICONS SMALL ------------------------------
|
| 164 |
Const enum_SMALL_imgOK = "<img src='images/si_ok.gif' width='17' height='16' border='0' align='absmiddle' vspace='1' hspace='2'>"
|
162 |
Const enum_SMALL_imgOK = "<img src='images/si_ok.gif' width='17' height='16' border='0' align='absmiddle' vspace='1' hspace='2'>"
|
| 165 |
Const enum_SMALL_imgCritical = "<img src='images/si_critical.gif' width='17' height='16' border='0' align='absmiddle' vspace='1' hspace='2'>"
|
163 |
Const enum_SMALL_imgCritical = "<img src='images/si_critical.gif' width='17' height='16' border='0' align='absmiddle' vspace='1' hspace='2'>"
|