Subversion Repositories DevTools

Rev

Rev 171 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 171 Rev 177
Line 39... Line 39...
39
Dim parRtagId
39
Dim parRtagId
40
Dim parSourceRtagId
40
Dim parSourceRtagId
41
Dim query_string
41
Dim query_string
42
Dim objBtnControl
42
Dim objBtnControl
43
Dim rcon_id
43
Dim rcon_id
-
 
44
Dim shref_base
44
'------------ Constants Declaration -----------
45
'------------ Constants Declaration -----------
45
'------------ Variable Init -------------------
46
'------------ Variable Init -------------------
46
parRtagId = Request("rtag_id")
47
parRtagId = Request("rtag_id")
47
objPMod.PersistInQryString("rtag_id")
48
objPMod.PersistInQryString("rtag_id")
48
Set objBtnControl = New ActionButtonControl
49
Set objBtnControl = New ActionButtonControl
Line 134... Line 135...
134
         Get_Run_Level = "<span class='err_alert'>Unknown!</span>"
135
         Get_Run_Level = "<span class='err_alert'>Unknown!</span>"
135
      End If
136
      End If
136
   End If
137
   End If
137
 
138
 
138
End Function
139
End Function
-
 
140
 
139
'--------------------------------------------------------------------------------------------------------------------------
141
'--------------------------------------------------------------------------------------------------------------------------
140
Function Get_Package_Name( sPackageName )
142
Function Get_Package_Name( sPackageName )
141
 
143
 
142
  If IsNull(sPackageName) Then
144
  If IsNull(sPackageName) Then
143
    Get_Package_Name = "None"
145
    Get_Package_Name = "None"
Line 145... Line 147...
145
    Get_Package_Name = sPackageName
147
    Get_Package_Name = sPackageName
146
  End If
148
  End If
147
 
149
 
148
End Function
150
End Function
149
'--------------------------------------------------------------------------------------------------------------------------
151
'--------------------------------------------------------------------------------------------------------------------------
-
 
152
 
-
 
153
 
150
%>
154
%>
151
<%
155
<%
152
'------------ RUN BEFORE PAGE RENDER ----------
156
'------------ RUN BEFORE PAGE RENDER ----------
-
 
157
shref_base = "http://" & archive_server & "/abtlog/"
-
 
158
 
153
' --- Get Form details from DB ---
159
' --- Get Form details from DB ---
154
Call GetFormDetails ( Request("rtag_id"), objFormCollector )
160
Call GetFormDetails ( Request("rtag_id"), objFormCollector )
155
 
161
 
156
' --- Load Validation Rules ---
162
' --- Load Validation Rules ---
157
'Call objForm.LoadValidationRules ( Array("rtag_name","rtag_description", "config_spec_branch"), OraDatabase )    ' Load Validation Rules
163
'Call objForm.LoadValidationRules ( Array("rtag_name","rtag_description", "config_spec_branch"), OraDatabase )    ' Load Validation Rules
Line 247... Line 253...
247
                           <tr>
253
                           <tr>
248
                              <td background="images/bg_table_col.gif" class="err_alert"><b>Directly</b></td>
254
                              <td background="images/bg_table_col.gif" class="err_alert"><b>Directly</b></td>
249
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">PACKAGE NAME</td>
255
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">PACKAGE NAME</td>
250
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">PACKAGE VERSION</td>
256
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">PACKAGE VERSION</td>
251
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ROOT CAUSE
257
                              <td valign="top" nowrap background="images/bg_table_col.gif" class="body_col">ROOT CAUSE
252
                                 (<a class="txt_linked" title="" href="messages/msg_firefox_unc_downloading.asp">firefox users</a>
-
 
253
                                 <%=Quick_Help("firefox_root_cause")%>)
-
 
254
                              </td>
258
                              </td>
255
                           </tr>
259
                           </tr>
256
                           <%
260
                           <%
257
                           query_string = " select pkg.pkg_name, pv.pkg_version, pv.pv_id, dnr.rtag_id, dnr.root_cause, dnr.root_file, pv.pv_description"&_
261
                           query_string = " select pkg.pkg_name, pv.pkg_version, pv.pv_id, dnr.rtag_id, dnr.root_cause, dnr.root_file, pv.pv_description"&_
258
                                          "   from do_not_ripple dnr, package_versions pv, packages pkg"&_
262
                                          "   from do_not_ripple dnr, package_versions pv, packages pkg"&_
Line 281... Line 285...
281
                                 ' this should always prevail over the textual root_cause
285
                                 ' this should always prevail over the textual root_cause
282
                                 If IsNull(rsQry("root_file")) Then%>
286
                                 If IsNull(rsQry("root_file")) Then%>
283
                                    <td nowrap class="body_rowg"><%=rsQry("root_cause")%></td>
287
                                    <td nowrap class="body_rowg"><%=rsQry("root_cause")%></td>
284
                                 <%Else%>
288
                                 <%Else%>
285
                                    <td nowrap class="body_rowg">
289
                                    <td nowrap class="body_rowg">
286
                                       <a class="txt_linked" title="<%=rsQry("root_file")%> Log file may have expired." href="file://///auperaunx26/abtlog/<%=rsQry("root_file")%>">
290
                                       <a class="txt_linked" title="<%=rsQry("root_file")%> Log file may have expired." href="<%=shref_base & rsQry("root_file")%>">
287
                                          Build Failure Log File
291
                                          Build Failure Log File
288
                                       </a>
292
                                       </a>
289
                                    </td>
293
                                    </td>
290
                                 <%End If%>
294
                                 <%End If%>
291
                              </tr>
295
                              </tr>