| Line 46... |
Line 46... |
| 46 |
],
|
46 |
],
|
| 47 |
});
|
47 |
});
|
| 48 |
});
|
48 |
});
|
| 49 |
</script>
|
49 |
</script>
|
| 50 |
|
50 |
|
| - |
|
51 |
<!-- USED BY ALL ------------------------------------------------>
|
| 51 |
<%If pkgInfoHash.Exists("pv_id") Then%>
|
52 |
<%If pkgInfoHash.Exists("pv_id") Then%>
|
| 52 |
<%If Request("rtag_id") <> "" Then%>
|
53 |
<%If Request("rtag_id") <> "" Then%>
|
| 53 |
<br>
|
54 |
<br>
|
| 54 |
<span class="body_sect">Used by Packages In This Release - Complete list</span>
|
55 |
<span class="body_sect">Used by Packages In This Release - Complete list</span>
|
| 55 |
<br>
|
56 |
<br>
|
| 56 |
<!-- USED BY ALL ------------------------------------------------>
|
- |
|
| 57 |
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="etable" id="pkgDeps">
|
57 |
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="etable stdGrey" id="pkgDeps">
|
| 58 |
<thead class="body_hcol">
|
58 |
<thead>
|
| 59 |
<tr class="body_col form_field_bg">
|
59 |
<tr>
|
| 60 |
<th class="form_field nowrap noCsv"></th>
|
60 |
<th class="noCsv"></th>
|
| 61 |
<th class="form_field nowrap noCsv">Build<br>Level<%=Quick_Help("h_buildLevel")%></th>
|
61 |
<th class="noCsv">Build<br>Level<%=Quick_Help("h_buildLevel")%></th>
|
| 62 |
<th class="form_field nowrap ">Name</th>
|
62 |
<th >Name</th>
|
| 63 |
<th class="form_field nowrap ">Version</th>
|
63 |
<th >Version</th>
|
| 64 |
<th class="form_field nowrap ">Build<br>Time<%=Quick_Help("h_buildTime")%></th>
|
64 |
<th >Build<br>Time<%=Quick_Help("h_buildTime")%></th>
|
| 65 |
<th class="form_field nowrap noCsv"></th>
|
65 |
<th class="noCsv"></th>
|
| 66 |
<th class="form_field nowrap noCsv">Last Modified</th>
|
66 |
<th class="noCsv">Last Modified</th>
|
| 67 |
</tr>
|
67 |
</tr>
|
| 68 |
</thead>
|
68 |
</thead>
|
| 69 |
<%
|
69 |
<%
|
| 70 |
OraDatabase.Parameters.Add "RTAG_ID", parRtag_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
70 |
OraDatabase.Parameters.Add "RTAG_ID", parRtag_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 71 |
OraDatabase.Parameters.Add "PV_ID", pkgInfoHash.Item("pv_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
71 |
OraDatabase.Parameters.Add "PV_ID", pkgInfoHash.Item("pv_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| Line 74... |
Line 74... |
| 74 |
|
74 |
|
| 75 |
OraDatabase.Parameters.Remove "PV_ID"
|
75 |
OraDatabase.Parameters.Remove "PV_ID"
|
| 76 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
76 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
| 77 |
%>
|
77 |
%>
|
| 78 |
<%If rsTemp.RecordCount < 1 Then%>
|
78 |
<%If rsTemp.RecordCount < 1 Then%>
|
| 79 |
<tr class="form_item_pad form_field_grey_bg">
|
79 |
<tr>
|
| 80 |
<td nowrap> </td>
|
80 |
<td> </td>
|
| 81 |
<td class="form_item_pad" colspan=5>Leaf Package - Is not used by any other package in this Release</td>
|
81 |
<td colspan=5>Leaf Package - Is not used by any other package in this Release</td>
|
| 82 |
</tr>
|
82 |
</tr>
|
| 83 |
<%End If%>
|
83 |
<%End If%>
|
| 84 |
<%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))
|
84 |
<%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))
|
| 85 |
Dim buildTime : buildTime = rsTemp("build_time")
|
85 |
Dim buildTime : buildTime = rsTemp("build_time")
|
| 86 |
If ISNULL(buildTime) Then
|
86 |
If ISNULL(buildTime) Then
|
| Line 89... |
Line 89... |
| 89 |
Else
|
89 |
Else
|
| 90 |
buildTime = CLng(buildTime)
|
90 |
buildTime = CLng(buildTime)
|
| 91 |
totalBuildTime = totalBuildTime + buildTime
|
91 |
totalBuildTime = totalBuildTime + buildTime
|
| 92 |
End If
|
92 |
End If
|
| 93 |
%>
|
93 |
%>
|
| 94 |
<tr class="form_item_pad form_field_grey_bg csvData">
|
94 |
<tr class="csvData">
|
| 95 |
<%If rsTemp("deprecated_state") <> "" AND rsTemp("pkg_state") = 0 Then%>
|
95 |
<%If rsTemp("deprecated_state") <> "" AND rsTemp("pkg_state") = 0 Then%>
|
| 96 |
<td><%=DefineStateIcon ( rsTemp("deprecated_state"), rsTemp("dlocked"), NULL, NULL, pkgInfoHash.Item("build_type"), TRUE )%></td>
|
96 |
<td><%=DefineStateIcon ( rsTemp("deprecated_state"), rsTemp("dlocked"), NULL, NULL, pkgInfoHash.Item("build_type"), TRUE )%></td>
|
| 97 |
<%Else%>
|
97 |
<%Else%>
|
| 98 |
<td><%=DefineStateIcon ( rsTemp("pkg_state"), rsTemp("dlocked"), NULL, NULL, pkgInfoHash.Item("build_type"), TRUE )%></td>
|
98 |
<td><%=DefineStateIcon ( rsTemp("pkg_state"), rsTemp("dlocked"), NULL, NULL, pkgInfoHash.Item("build_type"), TRUE )%></td>
|
| 99 |
<%End If%>
|
99 |
<%End If%>
|
| 100 |
|
100 |
|
| 101 |
<td class="form_item_pad" nowrap><%=rsTemp("BuildLevel")%></td>
|
101 |
<td><%=rsTemp("BuildLevel")%></td>
|
| 102 |
<td class="form_item_pad" nowrap><a href="<%=ScriptName%>?pv_id=<%=rsTemp("pv_id")%>&rtag_id=<%=parRtag_id%>" class="txt_linked"><%=rsTemp("pkg_name")%></a></td>
|
102 |
<td><a href="view_by_version.asp?pkg_id=<%=rsTemp("pkg_id")%>#<%=rsTemp("pv_id")%>" class="txt_linked"><%=rsTemp("pkg_name")%></a></td>
|
| 103 |
<td class="form_item_pad nowrap"><%=rsTemp("pkg_version")%></td>
|
103 |
<td><a href="<%=ScriptName%>?pv_id=<%=rsTemp("pv_id")%>&rtag_id=<%=parRtag_id%>" class="txt_linked"><%=rsTemp("pkg_version")%></a></td>
|
| 104 |
<td class="form_item_pad nowrap"><%=buildTime%></td>
|
104 |
<td><%=buildTime%></td>
|
| 105 |
<td class="form_item_pad"></td>
|
105 |
<td ></td>
|
| 106 |
<td class="form_item_pad nowrap"><%=emailField(enum_imgUser & rsTemp("full_name"), rsTemp("user_email"))%> <%=DisplayDate ( rsTemp("modified_stamp") )%></td>
|
106 |
<td><%=emailField(enum_imgUser & rsTemp("full_name"), rsTemp("user_email"))%> <%=DisplayDate ( rsTemp("modified_stamp") )%></td>
|
| 107 |
</tr>
|
107 |
</tr>
|
| 108 |
<%rsTemp.MoveNext
|
108 |
<%rsTemp.MoveNext
|
| 109 |
WEnd%>
|
109 |
WEnd%>
|
| 110 |
<tfoot>
|
110 |
<tfoot>
|
| 111 |
<tr class="form_item_pad form_field_grey_bg">
|
111 |
<tr>
|
| 112 |
<td class="form_item_pad" nowrap colspan=4>Total Packages: <%=rsTemp.RecordCount%></td>
|
112 |
<td colspan=4>Total Packages: <%=rsTemp.RecordCount%></td>
|
| 113 |
<td class="form_item_pad" nowrap colspan=3>Total Built Time <%=totalBuildTime%> [<%=NiceDuration(totalBuildTime)%>]
|
113 |
<td colspan=3>Total Built Time <%=totalBuildTime%> [<%=NiceDuration(totalBuildTime)%>]
|
| 114 |
<%If bUnknown Then%>
|
114 |
<%If bUnknown Then%>
|
| 115 |
<SPAN class="err_alert"> Note:Some package build times not known</SPAN>
|
115 |
<SPAN class="err_alert"> Note:Some package build times not known</SPAN>
|
| 116 |
<%End If%>
|
116 |
<%End If%>
|
| 117 |
</td>
|
117 |
</td>
|
| 118 |
</tr>
|
118 |
</tr>
|
| 119 |
</tfoot>
|
119 |
</tfoot>
|
| 120 |
</table>
|
120 |
</table>
|
| 121 |
<%End If%>
|
- |
|
| 122 |
<%rsTemp.Close()%>
|
121 |
<%rsTemp.Close()%>
|
| 123 |
<%Set rsTemp = nothing%>
|
122 |
<%Set rsTemp = nothing%>
|
| - |
|
123 |
<%Else%>
|
| - |
|
124 |
<SPAN class="err_alert">Note: Usage tree cannot be determined without an associated Release. </SPAN>
|
| 124 |
<!-- END - USED BY ALL -->
|
125 |
<%End If%>
|
| 125 |
<%End If%>
|
126 |
<%End If%>
|
| - |
|
127 |
<!-- END - USED BY ALL -->
|
| - |
|
128 |
|