Subversion Repositories DevTools

Rev

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

Rev 6184 Rev 6185
Line 190... Line 190...
190
                Response.write enum_imgUnBuildable
190
                Response.write enum_imgUnBuildable
191
                Response.write "</td>"
191
                Response.write "</td>"
192
            End If
192
            End If
193
 
193
 
194
            ' check if a daemon instruction exists for this package
194
            ' check if a daemon instruction exists for this package
195
            If pkgInfoHash.Item("hasRippleInstr") <> "" OR pkgInfoHash.Item("hasTestInstr") <> "" Then
195
            If pkgInfoHash.Item("hasRippleInstr") Then
196
                Dim sDmInstr : sDmInstr = ""
-
 
197
                Dim sJoin : sJoin = "" 
-
 
198
                If pkgInfoHash.Item("hasRippleInstr") Then sDmInstr = sDmInstr + "Ripple Build" : sJoin = ", " 
-
 
199
                If pkgInfoHash.Item("hasTestInstr")   Then sDmInstr = sDmInstr + sJoin + "Test Build" 
-
 
200
                Response.write "<td>"
196
                Response.write "<td>"
201
                Response.write "<img src='icons/i_daemon_instr.gif' width='19' height='17' border='0' title='Daemon instruction:" & "&#13;" & sDmInstr & "&#13;" & "Click to view details." & "' onClick=""location.href='build_status.asp?rtag_id=" & irtag_id & "';"" >"
197
                Response.write "<img src='images/Cascade.gif' width='19' height='17' border='0' title='Ripple Build Request." & "&#13;" & "Click to view details." & "' onClick=""location.href='build_status.asp?rtag_id=" & irtag_id & "';"" >"
202
                Response.write "</td>"
198
                Response.write "</td>"
203
            End If
199
            End If
204
 
200
 
-
 
201
            If pkgInfoHash.Item("hasTestInstr") <> "" Then
-
 
202
                Response.write "<td>"
-
 
203
                Response.write "<img src='images/test.png' width='19' height='17' border='0' title='Test Build Request." & "&#13;" & "Click to view details." & "' onClick=""location.href='build_status.asp?rtag_id=" & irtag_id & "';"" >"
-
 
204
                Response.write "</td>"
-
 
205
            End If
-
 
206
 
-
 
207
 
205
            ' check if this package has a build failure file
208
            ' check if this package has a build failure file
206
            If pkgInfoHash("has_build_failure") Then
209
            If pkgInfoHash("has_build_failure") Then
207
                Response.write "<td>"
210
                Response.write "<td>"
208
                Response.write "<img src='icons/i_build_failure.gif' width='19' height='17' border='0' title='Package build failure." & "&#13;" & "Click to view details." &"' onClick=""location.href='build_status.asp?rtag_id=" & irtag_id & "';"" >"
211
                Response.write "<img src='icons/i_build_failure.gif' width='19' height='17' border='0' title='Package build failure." & "&#13;" & "Click to view details." &"' onClick=""location.href='build_status.asp?rtag_id=" & irtag_id & "';"" >"
209
                Response.write "</td>"
212
                Response.write "</td>"