Subversion Repositories DevTools

Rev

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

Rev 6176 Rev 6184
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
            Dim sDmInstr
196
                Dim sDmInstr : sDmInstr = ""
-
 
197
                Dim sJoin : sJoin = "" 
196
            sDmInstr = GetOpCodeListForRtagIdAndPvId( "", Request("rtag_id"), pkgInfoHash.Item("pv_id"), "" )
198
                If pkgInfoHash.Item("hasRippleInstr") Then sDmInstr = sDmInstr + "Ripple Build" : sJoin = ", " 
197
            If sDmInstr <> "" Then
199
                If pkgInfoHash.Item("hasTestInstr")   Then sDmInstr = sDmInstr + sJoin + "Test Build" 
198
                Response.write "<td>"
200
                Response.write "<td>"
199
                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 & "';"" >"
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 & "';"" >"
200
                Response.write "</td>"
202
                Response.write "</td>"
201
            End If
203
            End If
202
 
204
 
Line 239... Line 241...
239
 
241
 
240
      </td>
242
      </td>
241
   </tr>
243
   </tr>
242
   <tr>
244
   <tr>
243
      <td style=color:Red>
245
      <td style=color:Red>
244
         <%'=GetOpCodeListForRtagIdAndPvId( "NOTE: '", Request("rtag_id"), pkgInfoHash.Item("pv_id"), "' has been requested" )%>
-
 
245
      </td>
246
      </td>
246
   </tr>
247
   </tr>
247
   </table>
248
   </table>
248
<%
249
<%
249
End Sub
250
End Sub