| Line 8... |
Line 8... |
| 8 |
Const MenuHeaderDefined = 1
|
8 |
Const MenuHeaderDefined = 1
|
| 9 |
Const LMENU_TICK = "<img src=""images/i_boxtick_on.gif"" width=""13"" height=""13"" border=""0"" vspace=""2"" align=""absmiddle"">"
|
9 |
Const LMENU_TICK = "<img src=""images/i_boxtick_on.gif"" width=""13"" height=""13"" border=""0"" vspace=""2"" align=""absmiddle"">"
|
| 10 |
Const LMENU_BLANK = "<img src=""images/spacer.gif"" width=""13"" height=""13"" border=""0"" vspace=""2"" align=""absmiddle"">"
|
10 |
Const LMENU_BLANK = "<img src=""images/spacer.gif"" width=""13"" height=""13"" border=""0"" vspace=""2"" align=""absmiddle"">"
|
| 11 |
'------------ Variable Definition -------------
|
11 |
'------------ Variable Definition -------------
|
| 12 |
Dim TABarray1, TABarray2, TABarray3, TABarray4, TABarray5, TABarray5D, TABarray6, TABarray6D
|
12 |
Dim TABarray1, TABarray2, TABarray3, TABarray4, TABarray5, TABarray5D, TABarray6, TABarray6D
|
| 13 |
Dim ppClick
|
- |
|
| 14 |
Dim imgDependenciesIcon, imgReleaseNotesIcon, imgPatchesIcon
|
13 |
Dim imgDependenciesIcon, imgReleaseNotesIcon, imgPatchesIcon
|
| 15 |
Dim ReleaseMode
|
14 |
Dim ReleaseMode
|
| 16 |
|
15 |
|
| 17 |
'-- GLOBAL VARIABLES --------------------------
|
16 |
'-- GLOBAL VARIABLES --------------------------
|
| 18 |
imgDependenciesIcon = "<img src='images/i_dependency.gif' border='0' align='absmiddle' hspace='3'>"
|
17 |
imgDependenciesIcon = "<img src='images/i_dependency.gif' border='0' align='absmiddle' hspace='3'>"
|
| 19 |
imgReleaseNotesIcon = "<img src='images/i_release_note.gif' border='0' align='absmiddle' hspace='3'>"
|
18 |
imgReleaseNotesIcon = "<img src='images/i_release_note.gif' border='0' align='absmiddle' hspace='3'>"
|
| 20 |
imgPatchesIcon = "<img src='images/i_patch_small.gif' border='0' align='absmiddle' hspace='3'>"
|
19 |
imgPatchesIcon = "<img src='images/i_patch_small.gif' border='0' align='absmiddle' hspace='3'>"
|
| 21 |
|
- |
|
| 22 |
' Used for cancel button history
|
- |
|
| 23 |
If Request("click") <> "" Then
|
- |
|
| 24 |
ppClick = Request("click")
|
- |
|
| 25 |
Else
|
- |
|
| 26 |
ppClick = 1
|
- |
|
| 27 |
End If
|
- |
|
| 28 |
|
- |
|
| 29 |
ReleaseMode = GetReleaseMode( Request("rtag_id") )
|
20 |
ReleaseMode = GetReleaseMode( Request("rtag_id") )
|
| 30 |
|
21 |
|
| 31 |
'----------------------------------------------
|
22 |
'----------------------------------------------
|
| 32 |
If IsObject(pkgInfoHash) Then
|
23 |
If IsObject(pkgInfoHash) Then
|
| 33 |
If IsNull(pkgInfoHash.Item ("is_patch")) Then
|
24 |
If IsNull(pkgInfoHash.Item ("is_patch")) Then
|
| Line 74... |
Line 65... |
| 74 |
End If
|
65 |
End If
|
| 75 |
|
66 |
|
| 76 |
End If
|
67 |
End If
|
| 77 |
|
68 |
|
| 78 |
' Tabs for Import / Export Dependencies
|
69 |
' Tabs for Import / Export Dependencies
|
| 79 |
TABarray2 = Array ( "JATS style@form_update_jats_dependencies.asp?click="& CInt(ppClick) + 1 &"&pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
70 |
TABarray2 = Array ( "JATS style@form_update_jats_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
| 80 |
"ANT-using style@form_update_ant_dependencies.asp?click="& CInt(ppClick) + 1 &"&pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
|
71 |
"ANT-using style@form_update_ant_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
|
| 81 |
|
72 |
|
| 82 |
TABarray3 = Array ( "JATS style@form_export_jats_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
73 |
TABarray3 = Array ( "JATS style@form_export_jats_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
| 83 |
"ClearCase style@form_export_clearcase_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
74 |
"ClearCase style@form_export_clearcase_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"), _
|
| 84 |
"ANT-using style@form_export_ant_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
|
75 |
"ANT-using style@form_export_ant_dependencies.asp?pv_id="& Request("pv_id") &"&rtag_id="& Request("rtag_id"))
|
| 85 |
|
76 |
|