Subversion Repositories DevTools

Rev

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

Rev 159 Rev 161
Line 436... Line 436...
436
   Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("CodeReviewURLs.sql"), cint(0))
436
   Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("CodeReviewURLs.sql"), cint(0))
437
 
437
 
438
   OraDatabase.Parameters.Remove "PV_ID"
438
   OraDatabase.Parameters.Remove "PV_ID"
439
 
439
 
440
End Sub
440
End Sub
-
 
441
 
-
 
442
 
-
 
443
'---------------------------------------------------------------
-
 
444
Sub Query_Config_Spec (NNRtag_id, NNPv_id)
-
 
445
   OraDatabase.Parameters.Add "RTAG_ID", NNRtag_id,   ORAPARM_INPUT, ORATYPE_NUMBER
-
 
446
   OraDatabase.Parameters.Add "PV_ID", NNPv_id,   ORAPARM_INPUT, ORATYPE_NUMBER
-
 
447
   If NNRtag_id <> "" Then
-
 
448
      If pkgInfoHash.Item ("dlocked") <> "Y" Then
-
 
449
         Set rsQry = OraDatabase.DbCreateDynaset( GetQuery("config_spec.sql"), cint(0))
-
 
450
      Else
-
 
451
         Set rsQry = OraDatabase.DbCreateDynaset( Replace(GetQuery("config_spec.sql"), "PV.LAST_PV_ID", "PV.PV_ID"), cint(0))
-
 
452
      End If
-
 
453
   Else
-
 
454
      If pkgInfoHash.Item ("dlocked") <> "Y" Then
-
 
455
         Set rsQry = OraDatabase.DbCreateDynaset( GetQuery("config_spec_nortag.sql"), cint(0))
-
 
456
      Else
-
 
457
         Set rsQry = OraDatabase.DbCreateDynaset( Replace(GetQuery("config_spec_nortag.sql"), "PV.LAST_PV_ID", "PV.PV_ID"), cint(0))
-
 
458
      End If
-
 
459
   End If
-
 
460
   OraDatabase.Parameters.Remove "RTAG_ID"
-
 
461
   OraDatabase.Parameters.Remove "PV_ID"
-
 
462
End Sub
-
 
463
 
-
 
464
'---------------------------------------------------------------
-
 
465
Sub Jats_Extract_Command (ByRef ajats_cmd, ByRef ajats_cmd_test)
-
 
466
 
-
 
467
   Call Query_Config_Spec (Request("rtag_id"), Request("pv_id"))
-
 
468
 
-
 
469
   Dim config_branch: config_branch = rsQry("config_spec_branch")
-
 
470
   Dim dlocked: dlocked = pkgInfoHash.Item("dlocked")
-
 
471
   Dim src_path: src_path = rsQry("src_path")
-
 
472
   Dim pkg_label: pkg_label = rsQry("pkg_label")
-
 
473
   Dim pkg_vcs_tag
-
 
474
 
-
 
475
   OraDatabase.Parameters.Add "PV_ID", Request("pv_id"), ORAPARM_INPUT, ORATYPE_NUMBER
-
 
476
   OraDatabase.Parameters.Add "RETURN_CODE","", ORAPARM_OUTPUT, ORATYPE_VARCHAR2
-
 
477
   OraDatabase.ExecuteSQL _
-
 
478
    "BEGIN   :RETURN_CODE := PK_RMAPI.RETURN_VCS_TAG( :PV_ID );   END;"
-
 
479
   pkg_vcs_tag = OraDatabase.Parameters("RETURN_CODE").Value
-
 
480
   OraDatabase.Parameters.Remove "PV_ID"
-
 
481
   OraDatabase.Parameters.Remove "RETURN_CODE"
-
 
482
 
-
 
483
   If (pkg_label <> "" AND src_path <> "") Then
-
 
484
      If (dlocked <> "Y" AND NOT IsNull(config_branch) AND config_branch <> "" ) Then
-
 
485
        ajats_cmd =   "jats vcsrelease -extract -label """ & pkg_vcs_tag & """ " & config_branch
-
 
486
      Else
-
 
487
        ajats_cmd =   "jats vcsrelease -extract -label """ & pkg_vcs_tag & """"
-
 
488
      End If
-
 
489
      ajats_cmd_test = "jats vcsrelease -test -label """ & pkg_vcs_tag & """"
-
 
490
   Else
-
 
491
      ajats_cmd = "UNAVAILABLE - missing package vcs tag"
-
 
492
      ajats_cmd_test = "UNAVAILABLE - missing package vcs tag"
-
 
493
   End If
-
 
494
 
-
 
495
   rsQry.Close()
-
 
496
   Set rsQry = nothing
-
 
497
 
-
 
498
End Sub
-
 
499
 
-
 
500
 
-
 
501
 
-
 
502
 
441
'----------------------------------------------------------------------------------------------------------------------------------------
503
'----------------------------------------------------------------------------------------------------------------------------------------
442
 
504
 
443
 
505
 
444
'----------------------------------------------------------------------------------------------------------------------------------------
506
'----------------------------------------------------------------------------------------------------------------------------------------
445
%>
507
%>
446
<%
508
<%
447
'------------------ MAIN LINE --------------------
509
'------------------ MAIN LINE --------------------
448
'-------------------------------------------------
510
'-------------------------------------------------
449
%>
511
%>
450
<!-- PACKAGE INFORMATION --------------------------------------------------------------------------------------------------------------->
512
<!-- PACKAGE INFORMATION --------------------------------------------------------------------------------------------------------------->
-
 
513
   <fieldset class="fset"><legend class="body_colb"><img src='images/s_info.gif' width='21' height='24' hspace='4' border='0' align='absmiddle'>Package Information</legend>
451
   <a name="PACKAGE_INFORMATION"></a>
514
   <a name="PACKAGE_INFORMATION"></a>
452
   <table width="100%" border="0" cellspacing="1" cellpadding="2">
515
   <table width="100%" border="0" cellspacing="1" cellpadding="2">
453
      <tr>
516
      <tr>
454
         <td class="body_colb"><img src="images/s_info.gif" width="22" height="22" hspace="4" border="0" align="absmiddle">Package Information</td>
-
 
455
         <td align="right" valign="bottom">
517
         <td align="right" valign="bottom">
456
            <%If pageIsEditable Then%>
518
            <%If pageIsEditable Then%>
457
               <a href='javascript:;' onClick="MM_openBrWindow('_wform_pkg_info.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','PackageInfo','resizable=yes,width=650,height=690')" class="txt_linked">Edit<img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
519
               <a href='javascript:;' onClick="MM_openBrWindow('_wform_pkg_info.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','PackageInfo','resizable=yes,width=650,height=690')" class="txt_linked">Edit<img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
458
            <%End If%>
520
            <%End If%>
459
         </td>
521
         </td>
460
      </tr>
522
      </tr>
461
   </table>
523
   </table>
462
   <table width="100%" border="0" cellspacing="1" cellpadding="2">
524
   <table width="100%" border="0" cellspacing="1" cellpadding="2">
463
      <%
525
      <%
464
      Set rsQry = OraDatabase.DbCreateDynaset( SQL_Package_Information ( parPv_id ), cint(0))
526
      Set rsQry = OraDatabase.DbCreateDynaset( SQL_Package_Information ( parPv_id ), cint(0))
465
 
527
      
466
      Call get_vcs_info_for_package( rsQry("pkg_label"), rsQry("build_type"), rsQry("vcs_type_id"), rsQry("dlocked"), vcsInfoCollector )
528
      Call get_vcs_info_for_package( rsQry("pkg_label"), rsQry("build_type"), rsQry("vcs_type_id"), rsQry("dlocked"), vcsInfoCollector )
-
 
529
      
-
 
530
      %>
467
 
531
 
-
 
532
      <%
-
 
533
        ' State
-
 
534
        Dim sstate
-
 
535
        Dim bcan_edit
-
 
536
        Dim stitle
-
 
537
 
-
 
538
        If (pkgInfoHash.Item ("dlocked") = "Y") Then
-
 
539
          sstate = "Released"
-
 
540
        Else
-
 
541
          sstate = "Not released"
-
 
542
        End If        
-
 
543
 
-
 
544
        bcan_edit = (not IsNull(pkgInfoHash.Item ("is_patch"))) and objAccessControl.IsDataActive ("PROJECTS", DB_PROJ_ID, "EditProjects") AND (objAccessControl.IsActive("UnlockPatch"))
-
 
545
        If bcan_edit  Then
-
 
546
          If (pkgInfoHash.Item ("dlocked") = "Y") Then
-
 
547
            ' Unlock patch.
-
 
548
            shref="_s_unlock_package.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id
-
 
549
            stitle="Unlock the patch"
-
 
550
          ElseIf (pkgInfoHash.Item ("dlocked") = "N") Then
-
 
551
            ' lock patch.
-
 
552
            shref="_s_lock_package.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id
-
 
553
            stitle="Lock the patch. Release requirements are not applied."
-
 
554
          End If
-
 
555
        End if
468
      %>
556
      %>
-
 
557
 
-
 
558
      <tr>
-
 
559
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top">
-
 
560
         <% If bcan_edit then %>
-
 
561
           <a href=<%=shref%> class='body_txt' title=<%=stitle%>><strong>Status:</strong><img src='images/i_edit.gif' width='12' height='12' border='0' ></a>
-
 
562
         <% else %>
-
 
563
           <b><strong>Status:</strong></b>
-
 
564
         <% end if %>
-
 
565
         </td>
-
 
566
         <td bgcolor=#f5f5f5 class="sublbox_txt"><%=sstate%></td>
-
 
567
      </tr>
-
 
568
 
469
      <tr>
569
      <tr>
470
         <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Deployable:</b></td>
570
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Deployable:</b></td>
471
         <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
571
         <td bgcolor=#f5f5f5 class="sublbox_txt">
472
            <%If IsNull( rsQry("is_deployable") ) Then%>No<%Else%>Yes<%End If%>
572
            <%If IsNull( rsQry("is_deployable") ) Then%>No<%Else%>Yes<%End If%>
473
         </td>
573
         </td>
474
      </tr>
574
      </tr>
475
 
575
 
-
 
576
      <tr>
-
 
577
         <td width="1%" nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Short Description:</b></td>
-
 
578
         <td witdh="100%" bgcolor=#f5f5f5 class="sublbox_txt">
-
 
579
            <%If IsNull( rsQry("pv_description") ) Then%>
-
 
580
               <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pv_description") ) )%>
-
 
581
            <%End If%>
-
 
582
         </td>
-
 
583
      </tr>
-
 
584
      <tr>
-
 
585
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Package Overview:</b> </td>
-
 
586
         <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
587
            <%If IsNull( rsQry("pv_overview") ) Then%>
-
 
588
               <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pv_overview") ) )%>
-
 
589
            <%End If%>
-
 
590
         </td>
-
 
591
      </tr>
-
 
592
 
-
 
593
      <%
-
 
594
        Dim shref
-
 
595
        Dim smail
-
 
596
        Dim sonclick
-
 
597
 
-
 
598
        ' Owner:
-
 
599
        sonclick="MM_openBrWindow('_wform_change_owner.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id &"','ChangeOwner','resizable=yes,width=400,height=200')"
-
 
600
        smail = pkgInfoHash.Item ("owner_email")
-
 
601
        shref = "mailto:"& smail
-
 
602
      %>
-
 
603
      
-
 
604
      <tr>
-
 
605
        <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top">
-
 
606
          <%If objAccessControl.UserLogedIn() Then%>
-
 
607
            <a href='javascript:;' onClick=<%=sonclick%> class='body_txt'>
-
 
608
            <strong>Owner:</strong><img src='images/i_edit.gif' width='12' height='12' border='0' alt='Change owner'>
-
 
609
            </a>&nbsp;
-
 
610
          <%Else%>
-
 
611
            <strong>Owner:</strong><img src='images/i_edit_disable.gif' width='12' height='12' border='0' alt='Change owner'>
-
 
612
          <%End If%>
-
 
613
        </td>         
-
 
614
        <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
615
          <table width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table1">
-
 
616
            <tr class="sublbox_txt">
-
 
617
              <td><%=pkgInfoHash.Item ("owner")%></td>         
-
 
618
              <td><a href=<%=shref%> class='txt_linked'><img src='images/bt_send_email.gif' width='36' height='13' hspace='3' border='0' align=right alt=<%=smail%>></a></td>         
-
 
619
            </tr>  
-
 
620
          </table>
-
 
621
        </td>
-
 
622
      </tr>
-
 
623
      
-
 
624
      <%
-
 
625
        ' Created:
-
 
626
        smail = pkgInfoHash.Item ("creator_email")
-
 
627
        shref = "mailto:"& smail
-
 
628
      %>
-
 
629
      <tr>
-
 
630
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Created:</b></td>
-
 
631
         <td bgcolor=#f5f5f5 class="sublbox_txt">            
-
 
632
           <table width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table3">
-
 
633
             <tr class="sublbox_txt">
-
 
634
               <td><%=EuroDate(pkgInfoHash.Item ("created_stamp"))&" by "& pkgInfoHash.Item ("creator")%></td>         
-
 
635
               <td><a href=<%=shref%> class='txt_linked'><img src='images/bt_send_email.gif' width='36' height='13' hspace='3' border='0' align=right alt=<%=smail%>></a></td>
-
 
636
             </tr>  
-
 
637
           </table>
-
 
638
         </td>
-
 
639
      </tr>
-
 
640
 
-
 
641
      <%
-
 
642
        ' Last Modified:
-
 
643
        smail = pkgInfoHash.Item ("modifier_email")
-
 
644
        shref = "mailto:"& smail
-
 
645
      %>
-
 
646
      <tr>
-
 
647
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Last Modified:</b></td>
-
 
648
         <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
649
           <table width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table4">
-
 
650
             <tr class="sublbox_txt">
-
 
651
               <td><%=EuroDateTime(pkgInfoHash.Item ("modified_stamp")) &" by "& pkgInfoHash.Item ("modifier")%></td>
-
 
652
               <td><a href=<%=shref%> class='txt_linked'><img src='images/bt_send_email.gif' width='36' height='13' hspace='3' border='0' align=right alt=<%=smail%>></a></td>
-
 
653
             </tr>  
-
 
654
           </table>
-
 
655
         </td>
-
 
656
      </tr>
-
 
657
 
-
 
658
      <%
-
 
659
        ' Added to Release
-
 
660
        smail = pkgInfoHash.Item ("insertor_email")
-
 
661
        shref = "mailto:"& smail
-
 
662
        If IsNull(pkgInfoHash.Item ("is_patch"))  AND  (Request("rtag_id") <> "") AND (pkgInfoHash.Item ("insertor") <> "") Then
-
 
663
      %>
-
 
664
      <tr>
-
 
665
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Added to Release:</b></td>
-
 
666
         <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
667
           <table width="100%" border="0" cellspacing="0" cellpadding="0" ID="Table2">
-
 
668
             <tr class="sublbox_txt">
-
 
669
               <td><%=EuroDate(pkgInfoHash.Item ("insert_stamp")) &" by "& pkgInfoHash.Item ("insertor")%></td>
-
 
670
               <td><a href=<%=shref%> class='txt_linked'><img src='images/bt_send_email.gif' width='36' height='13' hspace='3' border='0' align=right alt=<%=smail%>></a></td>         
-
 
671
             </tr>  
-
 
672
           </table>
-
 
673
         </td>
-
 
674
      </tr>
-
 
675
      <%End If%>
-
 
676
      
476
      <%If (vcsInfoCollector.Item("vcs_tag") = enum_VCS_CLEARCASE_TAG) OR (vcsInfoCollector.Item("vcs_tag") = enum_VCS_CVS_TAG) Then%>
677
      <%If (vcsInfoCollector.Item("vcs_tag") = enum_VCS_CLEARCASE_TAG) OR (vcsInfoCollector.Item("vcs_tag") = enum_VCS_CVS_TAG) Then%>
477
         <tr>
678
         <tr>
478
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
679
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
479
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
680
            <td bgcolor=#f5f5f5 class="sublbox_txt">
480
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
681
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
481
            </td>
682
            </td>
482
         </tr>
683
         </tr>
-
 
684
      
483
         <tr>
685
         <tr>
484
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Label:</b></td>
686
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Label:</b></td>
485
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
687
            <td bgcolor=#f5f5f5 class="sublbox_txt">
486
               <%If IsNull( rsQry("pkg_label") ) Then%>
688
               <%If IsNull( rsQry("pkg_label") ) Then%>
487
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pkg_label") ) )%>
689
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pkg_label") ) )%>
488
               <%End If%>
690
               <%End If%>
489
            </td>
691
            </td>
490
         </tr>
692
         </tr>
491
         <tr>
693
         <tr>
492
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Source Path:</b> </td>
694
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Source Path:</b> </td>
493
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
695
            <td bgcolor=#f5f5f5 class="sublbox_txt">
494
               <%If IsNull( rsQry("src_path") ) Then%>
696
               <%If IsNull( rsQry("src_path") ) Then%>
495
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("src_path") ) )%>
697
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("src_path") ) )%>
496
               <%End If%>
698
               <%End If%>
497
            </td>
699
            </td>
498
         </tr>
700
         </tr>
499
      <%ElseIf vcsInfoCollector.Item("vcs_tag") = enum_VCS_SUBVERSION_TAG Then%>
701
      <%ElseIf vcsInfoCollector.Item("vcs_tag") = enum_VCS_SUBVERSION_TAG Then%>
500
         <tr>
702
         <tr>
501
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
703
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
502
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
704
            <td bgcolor=#f5f5f5 class="sublbox_txt">
503
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
705
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
504
            </td>
706
            </td>
505
         </tr>
707
         </tr>
506
         <tr>
708
         <tr>
507
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>SubVersion Tag:</b> </td>
709
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>SubVersion Tag:</b> </td>
508
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
710
            <td bgcolor=#f5f5f5 class="sublbox_txt">
509
               <%If IsNull( rsQry("src_path") ) Then%>
711
               <%If IsNull( rsQry("src_path") ) Then%>
510
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("src_path") ) )%>
712
                  <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("src_path") ) )%>
511
               <%End If%>
713
               <%End If%>
512
            </td>
714
            </td>
513
         </tr>
715
         </tr>
514
      <%ElseIf vcsInfoCollector.Item("vcs_tag") = enum_VCS_UNCONTROLLED_TAG Then%>
716
      <%ElseIf vcsInfoCollector.Item("vcs_tag") = enum_VCS_UNCONTROLLED_TAG Then%>
515
         <tr>
717
         <tr>
516
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
718
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
517
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
719
            <td bgcolor=#f5f5f5 class="sublbox_txt">
518
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
720
               <%=NewLine_To_BR ( To_HTML( vcsInfoCollector.Item("vcs_name") ) )%>
519
            </td>
721
            </td>
520
         </tr>
722
         </tr>
521
      <%Else%>
723
      <%Else%>
522
         <tr>
724
         <tr>
523
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
725
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Version Control System:</b></td>
524
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
726
            <td bgcolor=#f5f5f5 class="sublbox_txt">
525
               <span class='err_alert'>Required!</span>
727
               <span class='err_alert'>Required!</span>
526
            </td>
728
            </td>
527
         </tr>
729
         </tr>
528
      <%End If%>
730
      <%End If%>
529
 
731
 
530
      <tr>
732
      <tr>
531
         <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Short Description:</b></td>
-
 
532
         <td witdh="100%" background="images/bg_form_lightgray.gif" class="sublbox_txt">
-
 
533
            <%If IsNull( rsQry("pv_description") ) Then%>
-
 
534
               <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pv_description") ) )%>
-
 
535
            <%End If%>
-
 
536
         </td>
-
 
537
      </tr>
-
 
538
      <tr>
-
 
539
         <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Package Overview:</b> </td>
733
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Base View:</b></td>
540
         <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
734
         <td bgcolor=#f5f5f5 class="sublbox_txt">
541
            <%If IsNull( rsQry("pv_overview") ) Then%>
735
            <%=Get_Pkg_Base_View ( parPv_id, parRtag_id )%>
542
               <span class='err_alert'>Required!</span><%Else%><%=NewLine_To_BR ( To_HTML( rsQry("pv_overview") ) )%>
-
 
543
            <%End If%>
-
 
544
         </td>
736
         </td>
545
      </tr>
737
      </tr>
-
 
738
 
546
      <tr>
739
      <tr>
547
         <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top">
740
         <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top">
548
            <b>Build Standard:</b>
741
            <b>Build Standard:</b>
549
         </td>
742
         </td>
550
         <%
743
         <%
551
         If pkgInfoHash.Item ("bs_id") <> "" Then
744
         If pkgInfoHash.Item ("bs_id") <> "" Then
552
            If pkgInfoHash.Item ("bs_id") = "1" Then
745
            If pkgInfoHash.Item ("bs_id") = "1" Then
553
               Response.write "<td background='images/bg_form_lightgray.gif' class='sublbox_txt'>JATS<br></td>"
746
               Response.write "<td bgcolor=#f5f5f5 class='sublbox_txt'>JATS<br></td>"
554
 
747
 
555
            ElseIf pkgInfoHash.Item ("bs_id") = "2" Then
748
            ElseIf pkgInfoHash.Item ("bs_id") = "2" Then
556
               Response.write "<td background='images/bg_form_lightgray.gif' class='sublbox_txt'>ANT<br></td>"
749
               Response.write "<td bgcolor=#f5f5f5 class='sublbox_txt'>ANT<br></td>"
557
 
750
 
558
            ElseIf pkgInfoHash.Item ("bs_id") = "3" Then
751
            ElseIf pkgInfoHash.Item ("bs_id") = "3" Then
559
               Response.write "<td background='images/bg_form_lightgray.gif' class='sublbox_txt'>NONE<br></td>"
752
               Response.write "<td bgcolor=#f5f5f5 class='sublbox_txt'>NONE<br></td>"
560
            End If
753
            End If
561
         Else
754
         Else
562
            If vcsInfoCollector.Item("vcs_tag") <> enum_VCS_UNCONTROLLED_TAG Then
755
            If vcsInfoCollector.Item("vcs_tag") <> enum_VCS_UNCONTROLLED_TAG Then
563
               Response.write "<td background='images/bg_form_lightgray.gif' class='sublbox_txt'><span class='err_alert'>Required!</span><br></td>"
756
               Response.write "<td bgcolor=#f5f5f5 class='sublbox_txt'><span class='err_alert'>Required!</span><br></td>"
564
            Else
757
            Else
565
               Response.write "<td background='images/bg_form_lightgray.gif' class='sublbox_txt'>Unspecified<br></td>"
758
               Response.write "<td bgcolor=#f5f5f5 class='sublbox_txt'>Unspecified<br></td>"
566
            End If
759
            End If
567
         End If
760
         End If
568
         %>
761
         %>
569
      </tr>
762
      </tr>
570
      <%If (NOT IsNull(pkgInfoHash.Item ("bs_id"))) AND (pkgInfoHash.Item ("bs_id") <> "3") Then%>
763
      <%If (NOT IsNull(pkgInfoHash.Item ("bs_id"))) AND (pkgInfoHash.Item ("bs_id") <> "3") Then%>
571
         <tr>
764
         <tr>
572
            <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>Build Environment:</b> </td>
765
            <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>Build Environment:</b> </td>
573
            <%
766
            <%
574
            '--- Get Build Env Details
767
            '--- Get Build Env Details
575
            Set rsTemp = OraDatabase.DbCreateDynaset( SQL_Build_Env ( parPv_id ), cint(0))
768
            Set rsTemp = OraDatabase.DbCreateDynaset( SQL_Build_Env ( parPv_id ), cint(0))
576
            %>
769
            %>
577
            <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
770
            <td bgcolor=#f5f5f5 class="sublbox_txt">
578
               <%If rsTemp.RecordCount = 0 Then%>
771
               <%If rsTemp.RecordCount = 0 Then%>
579
                  <%If rsQry("is_build_env_required") = enumDB_NO Then%>
772
                  <%If rsQry("is_build_env_required") = enumDB_NO Then%>
580
                     Not Required
773
                     Not Required
581
                  <%Else%>
774
                  <%Else%>
582
                     <span class='err_alert'>Required!</span>
775
                     <span class='err_alert'>Required!</span>
Line 593... Line 786...
593
                        While (NOT rsTemp.BOF) AND (NOT rsTemp.EOF)
786
                        While (NOT rsTemp.BOF) AND (NOT rsTemp.EOF)
594
                           'retVal = Lookup_Document ( rsQry("doc_num"), sDocTitle, NULL, NULL, NULL  )
787
                           'retVal = Lookup_Document ( rsQry("doc_num"), sDocTitle, NULL, NULL, NULL  )
595
                        %>
788
                        %>
596
                           <%If currG1 <> CInt(rsTemp("bm_id")) Then%>
789
                           <%If currG1 <> CInt(rsTemp("bm_id")) Then%>
597
                              <tr>
790
                              <tr>
598
                                 <td colspan="2" nowrap class="sublbox_txt" background="images/bg_form_lightbluedark.gif">
791
                                 <td colspan="2" nowrap class="sublbox_txt" bgcolor=#e4e9ec>
599
                                    <%=rsTemp("bm_name")%>&nbsp;<%=GetBuildType( rsTemp("bsa_id") )%>
792
                                    <%=rsTemp("bm_name")%>&nbsp;<%=GetBuildType( rsTemp("bsa_id") )%>
600
                                 </td>
793
                                 </td>
601
                              </tr>
794
                              </tr>
602
                              <%currG1 = CInt(rsTemp("bm_id"))
795
                              <%currG1 = CInt(rsTemp("bm_id"))
603
                           End If
796
                           End If
Line 613... Line 806...
613
               <%End If%>
806
               <%End If%>
614
            </td>
807
            </td>
615
         </tr>
808
         </tr>
616
      <%End If%>
809
      <%End If%>
617
 
810
 
618
      <%
-
 
619
      ' Previous Label/Tag, Codestriker and Beyond Compare differencing commands
811
      <%If IsNull(pkgInfoHash.Item ("is_patch")) Then%>
620
      Dim oldLabel
812
         <tr>
621
      Dim old_vcs_tag
-
 
622
      Dim oldSrcPath
-
 
623
      Dim lastSignificantPVID
-
 
624
 
-
 
625
      If vcsInfoCollector.Item("vcs_tag") = enum_VCS_CLEARCASE_TAG Then
-
 
626
 
-
 
627
         lastSignificantPVID = getLastSignificantPVID(pkgInfoHash.Item("pv_id"), pkgInfoHash.Item("last_pv_id"))
-
 
628
         If (pv_id_exists(lastSignificantPVID) = TRUE) Then
-
 
629
            old_vcs_tag = get_vcs_tag(lastSignificantPVID)
-
 
630
            If (old_vcs_tag = enum_VCS_CLEARCASE_TAG) Then
-
 
631
               oldLabel = get_Pkg_Label(lastSignificantPVID)
813
            <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
632
               %>
814
            <%
633
               <tr>
-
 
634
                  <%
-
 
635
                  ' Previous Label
815
            ' Previous Version
636
                  Dim rsQry2, rsQry3
-
 
637
                  Set rsQry2 = OraDatabase.DbCreateDynaset( "SELECT * from package_versions where pv_id ="&parPv_id , cint(0))
816
            sonclick="MM_openBrWindow(""_wform_change_previous_version.asp?rfile="& scriptName &"&pv_id="& parPv_id &"&rtag_id="& parRtag_id &""",""ChangeOwner"",""resizable=yes,width=400,height=200"")"
638
                  Set rsQry3 = OraDatabase.DbCreateDynaset( "SELECT pkg_label from package_versions where pv_id ="&rsQry2("last_pv_id") , cint(0))
817
            If objAccessControl.IsActive("ChangePreviousVersion") Then
639
                  %>
818
            %>
640
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><strong>Previous Label:</strong><%=Quick_Help ( "PreviousLabel" )%></td>
-
 
641
                  <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
819
               <a href='javascript:;' onClick=<%=sonclick%> class='body_txt'>
642
                     <%=NewLine_To_BR ( To_HTML( rsQry3("pkg_label") ) )%>
820
               <strong>Previous Version:</strong><img src='images/i_edit.gif' width='12' height='12' border='0' alt='Edit'>
643
                  </td>
-
 
644
               </tr>
821
               </a>
645
 
-
 
646
               <tr>
822
            <%Else%>
647
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
-
 
648
                     <strong>Previous Significant Label:</strong><%=Quick_Help ( "PreviousSignificantLabel" )%>
823
               <strong>Previous Version:</strong><img src='images/i_edit_disable.gif' width='12' height='12' border='0' alt='Edit'>
649
                  </td>
824
            <%End If%>
650
                  <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
-
 
651
                     <%=NewLine_To_BR ( To_HTML( oldLabel ) )%>
-
 
652
                  </td>
-
 
653
               </tr>
825
            </td>
654
 
826
 
-
 
827
            <%
-
 
828
              Dim sprevious_version_value
-
 
829
              sprevious_version_value = ""
-
 
830
              If IsNull(pkgInfoHash.Item ("previous_version")) Then
-
 
831
                sprevious_version_value = "Unknown!"
-
 
832
              Else
-
 
833
                sprevious_version_value = pkgInfoHash.Item ("previous_version")
-
 
834
              End If
-
 
835
 
-
 
836
              ' Previous pkg vcs tag
-
 
837
              Dim last_pv_id
-
 
838
              Dim rsQryPV, rsQryVT
-
 
839
              Set rsQryPV = OraDatabase.DbCreateDynaset( "SELECT last_pv_id from package_versions where pv_id ="&parPv_id , cint(0))
-
 
840
              last_pv_id = rsQryPV("last_pv_id")
-
 
841
              Set rsQryVT = OraDatabase.DbCreateDynaset( "SELECT RELEASE_MANAGER.PK_RMAPI.return_vcs_tag("& last_pv_id &") as pkg_vcs_tag from DUAL", cint(0))
655
               <tr>
842
              %>
-
 
843
                <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
844
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
-
 
845
                    <tr class="sublbox_txt">
656
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><strong>Codestriker command:
846
                      <td width=15% colspan=2 nowrap class="sublbox_txt">
657
                     </strong><%=Quick_Help ( "Codestriker" )%>
847
                        <%=sprevious_version_value%>
658
                  </td>
848
                      </td>
659
                  <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
849
                      <td colspan="2" nowrap class="sublbox_txt">
660
                     <%=NewLine_To_BR ( To_HTML( Codestriker_Command (oldLabel, pkgInfoHash.Item("pkg_label")) ) )%>
850
                        <%=NewLine_To_BR ( To_HTML( rsQryVT("pkg_vcs_tag") ) )%><%=Quick_Help ( "PreviousVcsTag" )%>
661
                  </td>
851
                      </td>
662
               </tr>
852
                    </tr>  
-
 
853
                  </table>
663
               <tr>
854
                </td>
-
 
855
         </tr>
-
 
856
      <%End If%>
-
 
857
      <%
-
 
858
      Dim iLastSignificantPVID
-
 
859
      Dim old_pkg_vcs_tag
-
 
860
      Dim old_previous_version_value
-
 
861
      iLastSignificantPVID = getLastSignificantPVID(pkgInfoHash.Item("pv_id"), pkgInfoHash.Item("last_pv_id"))
-
 
862
 
-
 
863
      If (pv_id_exists(iLastSignificantPVID) = TRUE) Then
-
 
864
        Dim rsQryLPV
-
 
865
        Set rsQryLPV = OraDatabase.DbCreateDynaset( "SELECT pkg_version,PK_RMAPI.RETURN_VCS_TAG(pv_id) as pkg_vcs_tag from package_versions where pv_id ="&iLastSignificantPVID , cint(0))
-
 
866
        old_pkg_vcs_tag = rsQryLPV("pkg_vcs_tag")
-
 
867
        old_previous_version_value = rsQryLPV("pkg_version")
-
 
868
      %>
-
 
869
         <tr>
-
 
870
            <td width="20%" bgcolor=#e4e9ec class="sublbox_txt"><strong>Previous Significant Version:</strong></td>
-
 
871
            <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
872
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
-
 
873
                <tr class="sublbox_txt">
664
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
874
                  <td width=15% colspan=2 nowrap class="sublbox_txt">
665
                     <strong>Beyond Compare command:</strong><%=Quick_Help ( "BeyondCompare" )%>
875
                    <%=old_previous_version_value%>
666
                  </td>
876
                  </td>
667
                  <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
877
                  <td colspan=2 nowrap class="sublbox_txt">
668
                     <%=NewLine_To_BR ( To_HTML( BeyondCompare_Command (oldLabel, pkgInfoHash.Item("pkg_label")) ) )%>
878
                    <%=old_pkg_vcs_tag%><%=Quick_Help ( "PreviousSignificantVcsTag" )%>
669
                  </td>
879
                  </td>
670
               </tr>
880
                </tr>
671
               <%
881
              </table>
672
            End If
882
            </td>
-
 
883
         </tr>
673
         End If
884
      <%End If%>
674
 
885
 
-
 
886
      <tr>
-
 
887
         <%
-
 
888
         ' Get JATS extraction commands
-
 
889
         Dim sjats_cmd,sjats_cmd_test
675
      ElseIf vcsInfoCollector.Item("vcs_tag") = enum_VCS_SUBVERSION_TAG Then
890
         call Jats_Extract_Command(sjats_cmd,sjats_cmd_test)                     
-
 
891
         %>
-
 
892
         <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
-
 
893
           <strong>JATS extraction command:</strong>
-
 
894
         </td>
-
 
895
         <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
896
           <%=NewLine_To_BR ( To_HTML(sjats_cmd) )%>
-
 
897
         </td>
-
 
898
      </tr>
-
 
899
      <tr>
-
 
900
         <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
-
 
901
           <strong>JATS Test:</strong>
-
 
902
         </td>
-
 
903
         <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
904
           <%=NewLine_To_BR ( To_HTML(sjats_cmd_test) )%>
-
 
905
         </td>
-
 
906
      </tr>
676
 
907
 
-
 
908
      <%
677
         lastSignificantPVID = getLastSignificantPVID(pkgInfoHash.Item("pv_id"), pkgInfoHash.Item("last_pv_id"))
909
      ' Codestriker and Beyond Compare differencing commands
678
         If (pv_id_exists(lastSignificantPVID) = TRUE) Then
910
      Dim oldLabel
679
            old_vcs_tag = get_vcs_tag(lastSignificantPVID)
911
      Dim old_vcs_tag
680
            If (old_vcs_tag = enum_VCS_SUBVERSION_TAG) Then
912
      Dim sCsCmd
681
               oldSrcPath = get_Src_Path(lastSignificantPVID)
913
      Dim sBcCmd
682
               %>
914
      sCsCmd = ""
683
               <tr>
915
      sBcCmd = ""
684
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
916
      If vcsInfoCollector.Item("vcs_tag") = enum_VCS_CLEARCASE_TAG Then
685
                     <strong>Previous Significant SVN Tag:</strong><%=Quick_Help ( "PreviousSignificantLabel" )%>
917
         If (pv_id_exists(iLastSignificantPVID) = TRUE) Then
686
                  </td>
918
            old_vcs_tag = get_vcs_tag(iLastSignificantPVID)
687
                  <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
919
            If (old_vcs_tag = enum_VCS_CLEARCASE_TAG) Then
688
                     <%=NewLine_To_BR ( To_HTML( oldSrcPath ) )%>
920
               oldLabel = get_Pkg_Label(iLastSignificantPVID)
689
                  </td>
921
               sCsCmd = NewLine_To_BR ( To_HTML( Codestriker_Command   (oldLabel, pkgInfoHash.Item("pkg_label")) ) )
690
               </tr>
922
               sBcCmd = NewLine_To_BR ( To_HTML( BeyondCompare_Command (oldLabel, pkgInfoHash.Item("pkg_label")) ) )
691
               <%
-
 
692
            End If
923
           End If
693
         End If
924
         End If
694
      End If%>
925
      End If%>
-
 
926
               
-
 
927
      <tr>
-
 
928
        <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
-
 
929
          <strong>Codestriker command:</strong><%=Quick_Help ( "Codestriker" )%>
-
 
930
        </td>
-
 
931
        <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
932
          <%=sCsCmd%>
-
 
933
        </td>
-
 
934
      </tr>
-
 
935
      <tr>
-
 
936
        <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
-
 
937
          <strong>Beyond Compare command:</strong><%=Quick_Help ( "BeyondCompare" )%>
-
 
938
        </td>
-
 
939
        <td bgcolor=#f5f5f5 class="sublbox_txt">
-
 
940
          <%=sBcCmd%>
-
 
941
        </td>
-
 
942
      </tr>
-
 
943
              
695
 
944
 
696
      <%If pkgInfoHash.Item("is_deployable") = "Y" Then
945
      <%If pkgInfoHash.Item("is_deployable") = "Y" Then
697
         OraDatabase.Parameters.Add "PV_ID", pkgInfoHash.Item ("pv_id"), ORAPARM_INPUT, ORATYPE_NUMBER
946
         OraDatabase.Parameters.Add "PV_ID", pkgInfoHash.Item ("pv_id"), ORAPARM_INPUT, ORATYPE_NUMBER
698
         Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("DeploymentManagerReference.sql"), cint(0))
947
         Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("DeploymentManagerReference.sql"), cint(0))
699
         If rsTemp.RecordCount = 0 Then%>
948
         If rsTemp.RecordCount = 0 Then%>
700
            <tr>
949
            <tr>
701
               <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>SBOM Information:</b></td>
950
               <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>SBOM Information:</b></td>
702
               <%If pkgInfoHash.Item("product_state") = 3 Then%>
951
               <%If pkgInfoHash.Item("product_state") = 3 Then%>
703
                  <td background="images/bg_form_lightgray.gif" class="err_alert"><b>Ready For Deployment!</b></td>
952
                  <td bgcolor=#f5f5f5 class="err_alert"><b>Ready For Deployment!</b></td>
704
               <%ElseIf pkgInfoHash.Item("product_state") = 2 Then%>
953
               <%ElseIf pkgInfoHash.Item("product_state") = 2 Then%>
705
                  <td background="images/bg_form_lightgray.gif" class="err_alert"><b>Ready For Testing!</b></td>
954
                  <td bgcolor=#f5f5f5 class="err_alert"><b>Ready For Testing!</b></td>
706
               <%ElseIf pkgInfoHash.Item("product_state") = 1 Then%>
955
               <%ElseIf pkgInfoHash.Item("product_state") = 1 Then%>
707
                  <td background="images/bg_form_lightgray.gif" class="err_alert"><b>Ready For Integration!</b></td>
956
                  <td bgcolor=#f5f5f5 class="err_alert"><b>Ready For Integration!</b></td>
708
               <%ElseIf pkgInfoHash.Item("product_state") = 5 Then%>
957
               <%ElseIf pkgInfoHash.Item("product_state") = 5 Then%>
709
                  <td background="images/bg_form_lightgray.gif" class="err_alert"><b>Ready For Integration and Deployment!</b></td>
958
                  <td bgcolor=#f5f5f5 class="err_alert"><b>Ready For Integration and Deployment!</b></td>
710
               <%ElseIf IsNull(pkgInfoHash.Item("product_state")) Then%>
959
               <%ElseIf IsNull(pkgInfoHash.Item("product_state")) Then%>
711
                  <td background="images/bg_form_lightgray.gif" class="err_alert"><b>Information Unavailable!</b></td>
960
                  <td bgcolor=#f5f5f5 class="err_alert"><b>Information Unavailable!</b></td>
712
               <%End If%>
961
               <%End If%>
713
 
962
 
714
            </tr>
963
            </tr>
715
         <%Else%>
964
         <%Else%>
716
            <tr>
965
            <tr>
717
               <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top"><b>SBOM Added/Updated:</b></td>
966
               <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top"><b>SBOM Added/Updated:</b></td>
718
               <td background="images/bg_form_lightgray.gif" class="sublbox_txt">
967
               <td bgcolor=#f5f5f5 class="sublbox_txt">
719
                  <%=rsTemp("branch_name")%> - <%=rsTemp("bom_name")%><%=VBNewLine%><%=rsTemp("version")%>
968
                  <%=rsTemp("branch_name")%> - <%=rsTemp("bom_name")%><%=VBNewLine%><%=rsTemp("version")%>
720
               </td>
969
               </td>
721
            </tr>
970
            </tr>
722
         <%End If
971
         <%End If
723
         rsTemp.Close()
972
         rsTemp.Close()
724
         Set rsTemp = Nothing
973
         Set rsTemp = Nothing
725
         OraDatabase.Parameters.Remove "PV_ID"
974
         OraDatabase.Parameters.Remove "PV_ID"
726
      End If
975
      End If
727
      %>
976
      %>
728
   </table>
977
   </table>
-
 
978
   </fieldset>
729
   <br>
979
   <br>
730
<!-- PACKAGE METRICS -------------------------------------------------------------------------------------------------------------------->
980
<!-- PACKAGE METRICS -------------------------------------------------------------------------------------------------------------------->
731
   <%If Request("rtag_id") <> "" Then%>
981
   <%If Request("rtag_id") <> "" Then%>
732
      <%
982
      <%
733
      Call GetPackageMetrics( parPv_id, rsPkgMetrics )
983
      Call GetPackageMetrics( parPv_id, rsPkgMetrics )
Line 741... Line 991...
741
         </div>
991
         </div>
742
         <div name="divPkgMetrics" id="divPkgMetrics" style="display:none;">
992
         <div name="divPkgMetrics" id="divPkgMetrics" style="display:none;">
743
            <a name="PACKAGE_METRICS"></a>
993
            <a name="PACKAGE_METRICS"></a>
744
            <table width="100%" border="0" cellspacing="1" cellpadding="2">
994
            <table width="100%" border="0" cellspacing="1" cellpadding="2">
745
               <tr>
995
               <tr>
746
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" width="20%"><b>Autobuilt:</b></td>
996
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt" width="20%"><b>Autobuilt:</b></td>
747
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%If rsPkgMetrics("is_autobuildable") = "Y" Then%>Yes<%Else%>No<%End If%></td>
997
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%If rsPkgMetrics("is_autobuildable") = "Y" Then%>Yes<%Else%>No<%End If%></td>
748
               </tr>
998
               </tr>
749
               <tr>
999
               <tr>
750
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Unit Tested:</b></td>
1000
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Unit Tested:</b></td>
751
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%If rsPkgMetrics("unit_tested") = "Y" Then%>Yes<%Else%>No<%End If%></td>
1001
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%If rsPkgMetrics("unit_tested") = "Y" Then%>Yes<%Else%>No<%End If%></td>
752
               </tr>
1002
               </tr>
753
               <tr>
1003
               <tr>
754
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Autotested:</b></td>
1004
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Autotested:</b></td>
755
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%If rsPkgMetrics("autotested") = "Y" Then%>Yes<%Else%>No<%End If%></td>
1005
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%If rsPkgMetrics("autotested") = "Y" Then%>Yes<%Else%>No<%End If%></td>
756
               </tr>
1006
               </tr>
757
               <%If NOT IsNull(rsPkgMetrics("code_lines")) Then%>
1007
               <%If NOT IsNull(rsPkgMetrics("code_lines")) Then%>
758
               <tr>
1008
               <tr>
759
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Code Lines:</b></td>
1009
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Code Lines:</b></td>
760
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("code_lines")%></td>
1010
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("code_lines")%></td>
761
               </tr>
1011
               </tr>
762
               <%End If%>
1012
               <%End If%>
763
               <%If NOT IsNull(rsPkgMetrics("comment_lines")) Then%>
1013
               <%If NOT IsNull(rsPkgMetrics("comment_lines")) Then%>
764
               <tr>
1014
               <tr>
765
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Comment Lines:</b></td>
1015
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Comment Lines:</b></td>
766
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("comment_lines")%></td>
1016
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("comment_lines")%></td>
767
               </tr>
1017
               </tr>
768
               <%End If%>
1018
               <%End If%>
769
               <%If NOT IsNull(rsPkgMetrics("blank_lines")) Then%>
1019
               <%If NOT IsNull(rsPkgMetrics("blank_lines")) Then%>
770
               <tr>
1020
               <tr>
771
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Blank Lines:</b></td>
1021
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Blank Lines:</b></td>
772
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("blank_lines")%></td>
1022
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("blank_lines")%></td>
773
               </tr>
1023
               </tr>
774
               <%End If%>
1024
               <%End If%>
775
               <%If NOT IsNull(rsPkgMetrics("branches")) Then%>
1025
               <%If NOT IsNull(rsPkgMetrics("branches")) Then%>
776
               <tr>
1026
               <tr>
777
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Number of Branches:</b></td>
1027
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Number of Branches:</b></td>
778
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("branches")%></td>
1028
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("branches")%></td>
779
               </tr>
1029
               </tr>
780
               <%End If%>
1030
               <%End If%>
781
               <%If NOT IsNull(rsPkgMetrics("branch_list")) Then%>
1031
               <%If NOT IsNull(rsPkgMetrics("branch_list")) Then%>
782
               <tr>
1032
               <tr>
783
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Branch List:</b></td>
1033
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Branch List:</b></td>
784
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("branch_list")%></td>
1034
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("branch_list")%></td>
785
               </tr>
1035
               </tr>
786
               <%End If%>
1036
               <%End If%>
787
               <%If NOT IsNull(rsPkgMetrics("code_files")) Then%>
1037
               <%If NOT IsNull(rsPkgMetrics("code_files")) Then%>
788
               <tr>
1038
               <tr>
789
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Code Files:</b></td>
1039
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Code Files:</b></td>
790
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("code_files")%></td>
1040
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("code_files")%></td>
791
               </tr>
1041
               </tr>
792
               <%End If%>
1042
               <%End If%>
793
               <%If NOT IsNull(rsPkgMetrics("ignored_files")) Then%>
1043
               <%If NOT IsNull(rsPkgMetrics("ignored_files")) Then%>
794
               <tr>
1044
               <tr>
795
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Ignored Files:</b></td>
1045
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Ignored Files:</b></td>
796
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("ignored_files")%></td>
1046
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("ignored_files")%></td>
797
               </tr>
1047
               </tr>
798
               <%End If%>
1048
               <%End If%>
799
               <%If NOT IsNull(rsPkgMetrics("makefiles")) Then%>
1049
               <%If NOT IsNull(rsPkgMetrics("makefiles")) Then%>
800
               <tr>
1050
               <tr>
801
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Makefiles:</b></td>
1051
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Makefiles:</b></td>
802
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("makefiles")%></td>
1052
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("makefiles")%></td>
803
               </tr>
1053
               </tr>
804
               <%End If%>
1054
               <%End If%>
805
               <%If NOT IsNull(rsPkgMetrics("total_files")) Then%>
1055
               <%If NOT IsNull(rsPkgMetrics("total_files")) Then%>
806
               <tr>
1056
               <tr>
807
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Total Files:</b></td>
1057
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Total Files:</b></td>
808
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("total_files")%></td>
1058
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("total_files")%></td>
809
               </tr>
1059
               </tr>
810
               <%End If%>
1060
               <%End If%>
811
               <%If NOT IsNull(rsPkgMetrics("directories")) Then%>
1061
               <%If NOT IsNull(rsPkgMetrics("directories")) Then%>
812
               <tr>
1062
               <tr>
813
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Number of Directories:</b></td>
1063
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Number of Directories:</b></td>
814
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("directories")%></td>
1064
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("directories")%></td>
815
               </tr>
1065
               </tr>
816
               <%End If%>
1066
               <%End If%>
817
               <%If NOT IsNull(rsPkgMetrics("directory_depth")) Then%>
1067
               <%If NOT IsNull(rsPkgMetrics("directory_depth")) Then%>
818
               <tr>
1068
               <tr>
819
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Directory Depth:</b></td>
1069
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Directory Depth:</b></td>
820
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("directory_depth")%></td>
1070
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("directory_depth")%></td>
821
               </tr>
1071
               </tr>
822
               <%End If%>
1072
               <%End If%>
823
               <%If NOT IsNull(rsPkgMetrics("created_stamp")) Then%>
1073
               <%If NOT IsNull(rsPkgMetrics("created_stamp")) Then%>
824
               <tr>
1074
               <tr>
825
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt"><b>Metrics Collected:</b></td>
1075
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt"><b>Metrics Collected:</b></td>
826
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsPkgMetrics("created_stamp")%></td>
1076
                  <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsPkgMetrics("created_stamp")%></td>
827
               </tr>
1077
               </tr>
828
               <%End If%>
1078
               <%End If%>
829
            </table>
1079
            </table>
830
         </div>
1080
         </div>
831
      </fieldset>
1081
      </fieldset>
Line 842... Line 1092...
842
 
1092
 
843
      <fieldset class="fset"><legend class="body_colb"><img src='images/s_notes.gif' width='21' height='24' hspace='4' border='0' align='absmiddle'>Reason for deprecation</legend>
1093
      <fieldset class="fset"><legend class="body_colb"><img src='images/s_notes.gif' width='21' height='24' hspace='4' border='0' align='absmiddle'>Reason for deprecation</legend>
844
         <a name="REASON_FOR_DEPRECATION"></a>
1094
         <a name="REASON_FOR_DEPRECATION"></a>
845
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1095
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
846
            <tr>
1096
            <tr>
847
               <td background="images/bg_form_lightgray.gif">
1097
               <td bgcolor=#f5f5f5>
848
 
1098
 
849
                  <%
1099
                  <%
850
                  Dim rsComment
1100
                  Dim rsComment
851
                  Set rsComment = OraDatabase.DbCreateDynaset("SELECT * FROM DEPRECATED_PACKAGES WHERE RTAG_ID ="& Request("rtag_id") &" AND PKG_ID = "& pkgInfoHash.Item ("pkg_id") &"", cint(0))
1101
                  Set rsComment = OraDatabase.DbCreateDynaset("SELECT * FROM DEPRECATED_PACKAGES WHERE RTAG_ID ="& Request("rtag_id") &" AND PKG_ID = "& pkgInfoHash.Item ("pkg_id") &"", cint(0))
852
                  If rsComment("comments") <> "" Then
1102
                  If rsComment("comments") <> "" Then
Line 885... Line 1135...
885
               </td>
1135
               </td>
886
            </tr>
1136
            </tr>
887
         </table>
1137
         </table>
888
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1138
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
889
            <tr>
1139
            <tr>
890
               <td background="images/bg_form_lightgray.gif">
1140
               <td bgcolor=#f5f5f5>
891
                  <%If pkgInfoHash.Item ("sbom_priority") <> "" Then%>
1141
                  <%If pkgInfoHash.Item ("sbom_priority") <> "" Then%>
892
                     <table border='0' cellspacing='0' cellpadding='0'>
1142
                     <table border='0' cellspacing='0' cellpadding='0'>
893
                        <tr>
1143
                        <tr>
894
                           <td class='sublbox_txt'>
1144
                           <td class='sublbox_txt'>
895
                              <%
1145
                              <%
Line 929... Line 1179...
929
               </td>
1179
               </td>
930
            </tr>
1180
            </tr>
931
         </table>
1181
         </table>
932
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1182
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
933
            <tr>
1183
            <tr>
934
               <td background="images/bg_form_lightgray.gif">
1184
               <td bgcolor=#f5f5f5>
935
                  <%
1185
                  <%
936
                  If pkgInfoHash.Item ("change_type") <> "" Then
1186
                  If pkgInfoHash.Item ("change_type") <> "" Then
937
                     Response.write "<table border='0' cellspacing='0' cellpadding='0'>"
1187
                     Response.write "<table border='0' cellspacing='0' cellpadding='0'>"
938
                     Response.write "<tr>"
1188
                     Response.write "<tr>"
939
                     If pkgInfoHash.Item ("change_type") = "M" Then
1189
                     If pkgInfoHash.Item ("change_type") = "M" Then
Line 982... Line 1232...
982
               If rsQryPegged.RecordCount = 0  Then
1232
               If rsQryPegged.RecordCount = 0  Then
983
                  isPegged = FALSE%>
1233
                  isPegged = FALSE%>
984
               <%Else
1234
               <%Else
985
                  isPegged = TRUE %>
1235
                  isPegged = TRUE %>
986
                  <tr>
1236
                  <tr>
987
                     <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
1237
                     <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
988
                        <strong>Is Pegged</strong>
1238
                        <strong>Is Pegged</strong>
989
                        <%=Quick_Help ( "pegged_version" )%>
1239
                        <%=Quick_Help ( "pegged_version" )%>
990
                     </td>
1240
                     </td>
991
                     <td background="images/bg_form_lightgray.gif" class="sublbox_txt">Yes</td>
1241
                     <td bgcolor=#f5f5f5 class="sublbox_txt">Yes</td>
992
                  </tr>
1242
                  </tr>
993
               <%End If%>
1243
               <%End If%>
994
               <%rsQryPegged.Close()
1244
               <%rsQryPegged.Close()
995
               Set rsQryPegged = nothing
1245
               Set rsQryPegged = nothing
996
            End If%>
1246
            End If%>
997
 
1247
 
998
            <%If isPegged = FALSE Then%>
1248
            <%If isPegged = FALSE Then%>
999
               <tr>
1249
               <tr>
1000
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
1250
                  <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
1001
                     <strong>Build Inclusion</strong>
1251
                     <strong>Build Inclusion</strong>
1002
                     <%=Quick_Help ( "ripple_build" )%>
1252
                     <%=Quick_Help ( "ripple_build" )%>
1003
                  </td>
1253
                  </td>
1004
                  <%If Request("rtag_id") <> "" Then
1254
                  <%If Request("rtag_id") <> "" Then
1005
                     Dim rsQryRipple
1255
                     Dim rsQryRipple
1006
                     Set rsQryRipple = OraDatabase.DbCreateDynaset( "SELECT * FROM DO_NOT_RIPPLE WHERE RTAG_ID ="& Request("rtag_id") &"AND PV_ID ="&Request("pv_id"), cint(0))
1256
                     Set rsQryRipple = OraDatabase.DbCreateDynaset( "SELECT * FROM DO_NOT_RIPPLE WHERE RTAG_ID ="& Request("rtag_id") &"AND PV_ID ="&Request("pv_id"), cint(0))
1007
                        If rsQryRipple.RecordCount = 0  Then %>
1257
                        If rsQryRipple.RecordCount = 0  Then %>
1008
                        <td background="images/bg_form_lightgray.gif" class="sublbox_txt">Yes</td>
1258
                        <td bgcolor=#f5f5f5 class="sublbox_txt">Yes</td>
1009
                     <%Else%>
1259
                     <%Else%>
1010
                        <td background="images/bg_form_lightgray.gif" class="sublbox_txt">No</td>
1260
                        <td bgcolor=#f5f5f5 class="sublbox_txt">No</td>
1011
                     <%End If%>
1261
                     <%End If%>
1012
                     <%rsQryRipple.Close()
1262
                     <%rsQryRipple.Close()
1013
                     Set rsQryRipple = nothing
1263
                     Set rsQryRipple = nothing
1014
                  End If%>
1264
                  End If%>
1015
               </tr>
1265
               </tr>
1016
               <tr>
1266
               <tr>
1017
                  <td width="20%" background="images/bg_form_lightbluedark.gif" class="sublbox_txt">
1267
                  <td width="20%" bgcolor=#e4e9ec class="sublbox_txt">
1018
                     <strong>Ripple Type</strong>
1268
                     <strong>Ripple Type</strong>
1019
                     <%=Quick_Help ( "ripple_type" )%>
1269
                     <%=Quick_Help ( "ripple_type" )%>
1020
                  </td>
1270
                  </td>
1021
                  <td width="80%" background="images/bg_form_lightgray.gif">
1271
                  <td width="80%" bgcolor=#f5f5f5>
1022
                     <p>
1272
                     <p>
1023
                        <%
1273
                        <%
1024
                        Response.write "<table border='0' cellspacing='0' cellpadding='0'>"
1274
                        Response.write "<table border='0' cellspacing='0' cellpadding='0'>"
1025
                        Response.write "<tr>"
1275
                        Response.write "<tr>"
1026
                        Response.write "<td class='sublbox_txt'>"
1276
                        Response.write "<td class='sublbox_txt'>"
Line 1099... Line 1349...
1099
         </tr>
1349
         </tr>
1100
      </table>
1350
      </table>
1101
 
1351
 
1102
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1352
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1103
         <tr>
1353
         <tr>
1104
            <td background="images/bg_form_lightgray.gif">
1354
            <td bgcolor=#f5f5f5>
1105
            <%If pkgInfoHash.Item ("comments") <> "" Then%>
1355
            <%If pkgInfoHash.Item ("comments") <> "" Then%>
1106
               <table border='0' cellspacing='0' cellpadding='0'>
1356
               <table border='0' cellspacing='0' cellpadding='0'>
1107
                  <tr>
1357
                  <tr>
1108
                     <td class='sublbox_txt'> <%Response.Write( NewLine_To_BR(pkgInfoHash.Item("comments")) )%><br></td>
1358
                     <td class='sublbox_txt'> <%Response.Write( NewLine_To_BR(pkgInfoHash.Item("comments")) )%><br></td>
1109
                  </tr>
1359
                  </tr>
Line 1123... Line 1373...
1123
 
1373
 
1124
      <fieldset class="fset"><legend class="body_colb"><img src='images/s_notes.gif' width='21' height='24' hspace='4' border='0' align='absmiddle'>Reason for last non-ripple build</legend>
1374
      <fieldset class="fset"><legend class="body_colb"><img src='images/s_notes.gif' width='21' height='24' hspace='4' border='0' align='absmiddle'>Reason for last non-ripple build</legend>
1125
 
1375
 
1126
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1376
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1127
            <tr>
1377
            <tr>
1128
               <td background="images/bg_form_lightgray.gif">
1378
               <td bgcolor=#f5f5f5>
1129
                  <%
1379
                  <%
1130
                  'Dim rsQry
1380
                  'Dim rsQry
1131
                  Call LastPvId(pkgInfoHash.Item ("pv_id"))
1381
                  Call LastPvId(pkgInfoHash.Item ("pv_id"))
1132
 
1382
 
1133
                  While rsQry("comments") = "Rippled Build."
1383
                  While rsQry("comments") = "Rippled Build."
Line 1159... Line 1409...
1159
                     If (retVal > 0) Then
1409
                     If (retVal > 0) Then
1160
                        retVal = Get_CQ_Issues ( SQLstr, rsCQ )
1410
                        retVal = Get_CQ_Issues ( SQLstr, rsCQ )
1161
                        If retVal = 0 Then%>
1411
                        If retVal = 0 Then%>
1162
                           <table width="100%" border="0" cellspacing="1" cellpadding="3">
1412
                           <table width="100%" border="0" cellspacing="1" cellpadding="3">
1163
                              <tr>
1413
                              <tr>
1164
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field" align="center">Fixed</td>
1414
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field" align="center">Fixed</td>
1165
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1415
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1166
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1416
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1167
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Summary</td>
1417
                                 <td bgcolor=#e4e9ec nowrap width="100%" class="form_field">Summary</td>
1168
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1418
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1169
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Priority</td>
1419
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Priority</td>
1170
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Status</td>
1420
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Status</td>
1171
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Note</td>
1421
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Note</td>
1172
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">&nbsp;</td>
1422
                                 <td bgcolor=#e4e9ec nowrap width="1" class="form_field">&nbsp;</td>
1173
                              </tr>
1423
                              </tr>
1174
                              <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1424
                              <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1175
                                 <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1425
                                 <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1176
                                    <tr>
1426
                                    <tr>
1177
                                       <td align="center" nowrap background="images/bg_form_lightbluedark.gif"><img src="images/i_tick_black.gif" width="7" height="7" vspace="2"></td>
1427
                                       <td align="center" nowrap bgcolor=#e4e9ec><img src="images/i_tick_black.gif" width="7" height="7" vspace="2"></td>
1178
                                       <td background="images/bg_form_lightgray.gif" nowrap class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked"><%=rsCQ("iss_num")%></a></td>
1428
                                       <td bgcolor=#f5f5f5 nowrap class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked"><%=rsCQ("iss_num")%></a></td>
1179
                                       <td background="images/bg_form_lightgray.gif" class="form_item"><%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>DEVI<%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>TDSE<%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>VT5DM<%Else%>VTSUP<%End If%></td>
1429
                                       <td bgcolor=#f5f5f5 class="form_item"><%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>DEVI<%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>TDSE<%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>VT5DM<%Else%>VTSUP<%End If%></td>
1180
                                       <td background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1430
                                       <td bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1181
                                       <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("issue_type")%></td>
1431
                                       <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("issue_type")%></td>
1182
                                       <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("priority")%></td>
1432
                                       <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("priority")%></td>
1183
                                       <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("Status")%></td>
1433
                                       <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("Status")%></td>
1184
                                       <%If sectionIsEditable Then%>
1434
                                       <%If sectionIsEditable Then%>
1185
                                           <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1435
                                           <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1186
                                             <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')"><img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>"></a></td>
1436
                                             <td align="center" bgcolor=#f5f5f5 class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')"><img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>"></a></td>
1187
                                          <%Else%>
1437
                                          <%Else%>
1188
                                             <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')"><img src="images/i_note_off.gif" width="11" height="12" border="0" title="Add Note"></a></td>
1438
                                             <td align="center" bgcolor=#f5f5f5 class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')"><img src="images/i_note_off.gif" width="11" height="12" border="0" title="Add Note"></a></td>
1189
                                          <%End If%>
1439
                                          <%End If%>
1190
                                       <%Else%>
1440
                                       <%Else%>
1191
                                          <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1441
                                          <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1192
                                             <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>"></td>
1442
                                             <td align="center" bgcolor=#f5f5f5 class="form_item"><img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>"></td>
1193
                                          <%Else%>
1443
                                          <%Else%>
1194
                                             <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><img src="images/i_note_off.gif" width="11" height="12" border="0"></td>
1444
                                             <td align="center" bgcolor=#f5f5f5 class="form_item"><img src="images/i_note_off.gif" width="11" height="12" border="0"></td>
1195
                                          <%End If%>
1445
                                          <%End If%>
1196
                                       <%End If%>
1446
                                       <%End If%>
1197
                                       <%If NOT pageIsEditable Then%>
1447
                                       <%If NOT pageIsEditable Then%>
1198
                                          <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0"></td>
1448
                                          <td align="center" bgcolor=#f5f5f5 class="form_item"><img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0"></td>
1199
                                       <%Else%>
1449
                                       <%Else%>
1200
                                          <td align="center" background="images/bg_form_lightgray.gif" class="form_item"><a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list"></a></td>
1450
                                          <td align="center" bgcolor=#f5f5f5 class="form_item"><a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list"></a></td>
1201
                                       <%End If%>
1451
                                       <%End If%>
1202
                                    </tr>
1452
                                    </tr>
1203
                                    <%rsCQ.MoveNext
1453
                                    <%rsCQ.MoveNext
1204
                                 WEnd
1454
                                 WEnd
1205
                                 rsCQ.Close()%>
1455
                                 rsCQ.Close()%>
1206
                              <%Else%>
1456
                              <%Else%>
1207
                                 <tr>
1457
                                 <tr>
1208
                                    <td background="images/bg_form_lightbluedark.gif" nowrap>&nbsp;</td>
1458
                                    <td bgcolor=#e4e9ec nowrap>&nbsp;</td>
1209
                                    <td background="images/bg_form_lightgray.gif" nowrap></td>
1459
                                    <td bgcolor=#f5f5f5 nowrap></td>
1210
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1460
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1211
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1461
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1212
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1462
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1213
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1463
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1214
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1464
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1215
                                    <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1465
                                    <td bgcolor=#f5f5f5 class="form_item"></td>
1216
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item"></td>
1466
                                    <td align="center" bgcolor=#f5f5f5 class="form_item"></td>
1217
                                 </tr>
1467
                                 </tr>
1218
                              <%End If%>
1468
                              <%End If%>
1219
                           </table>
1469
                           </table>
1220
                        <%End If%>
1470
                        <%End If%>
1221
                        <%If retVal <> 0 Then Response.write enumMSSQL_ERROR
1471
                        <%If retVal <> 0 Then Response.write enumMSSQL_ERROR
Line 1261... Line 1511...
1261
               retVal = Get_JIRA_Issues ( SQLstr, rsCQ )
1511
               retVal = Get_JIRA_Issues ( SQLstr, rsCQ )
1262
               If (retVal = 0 AND rsCQ.RecordCount > 0) Then%>
1512
               If (retVal = 0 AND rsCQ.RecordCount > 0) Then%>
1263
 
1513
 
1264
                  <table width="100%" border="0" cellspacing="1" cellpadding="3">
1514
                  <table width="100%" border="0" cellspacing="1" cellpadding="3">
1265
                     <tr>
1515
                     <tr>
1266
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field" align="center">Fixed</td>
1516
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field" align="center">Fixed</td>
1267
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1517
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1268
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1518
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1269
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Summary</td>
1519
                        <td bgcolor=#e4e9ec nowrap width="100%" class="form_field">Summary</td>
1270
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1520
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1271
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Priority</td>
1521
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Priority</td>
1272
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Status</td>
1522
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Status</td>
1273
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Note</td>
1523
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Note</td>
1274
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">&nbsp;</td>
1524
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">&nbsp;</td>
1275
                     </tr>
1525
                     </tr>
1276
                     <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1526
                     <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1277
                        <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1527
                        <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1278
                           <tr>
1528
                           <tr>
1279
                              <%If rsCQ("resolution") = 1 Then %>
1529
                              <%If rsCQ("resolution") = 1 Then %>
1280
                                 <td align="center" nowrap background="images/bg_form_lightbluedark.gif">
1530
                                 <td align="center" nowrap bgcolor=#e4e9ec>
1281
                                    <img src="images/i_tick_black.gif" width="7" height="7" vspace="2">
1531
                                    <img src="images/i_tick_black.gif" width="7" height="7" vspace="2">
1282
                                 </td>
1532
                                 </td>
1283
                              <%Else%>
1533
                              <%Else%>
1284
                                 <td align="center" nowrap background="images/bg_form_lightbluedark.gif"></td>
1534
                                 <td align="center" nowrap bgcolor=#e4e9ec></td>
1285
                              <%End If%>
1535
                              <%End If%>
1286
                              <td background="images/bg_form_lightgray.gif" nowrap class="form_item">
1536
                              <td bgcolor=#f5f5f5 nowrap class="form_item">
1287
                                 <a href="http://auperajir01:8080/browse/<%=rsCQ("iss_num")%>" target="_blank" class="txt_linked">
1537
                                 <a href="http://auperajir01:8080/browse/<%=rsCQ("iss_num")%>" target="_blank" class="txt_linked">
1288
                                    <%=rsCQ("iss_num")%>
1538
                                    <%=rsCQ("iss_num")%>
1289
                                 </a>
1539
                                 </a>
1290
                              </td>
1540
                              </td>
1291
                              <td background="images/bg_form_lightgray.gif" class="form_item">JIRA</td>
1541
                              <td bgcolor=#f5f5f5 class="form_item">JIRA</td>
1292
                              <td background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1542
                              <td bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1293
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("issuetype")%></td>
1543
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("issuetype")%></td>
1294
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("priority")%></td>
1544
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("priority")%></td>
1295
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("state")%></td>
1545
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("state")%></td>
1296
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"></td>
1546
                              <td nowrap bgcolor=#f5f5f5 class="form_item"></td>
1297
                              <%If NOT pageIsEditable Then%>
1547
                              <%If NOT pageIsEditable Then%>
1298
                                 <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1548
                                 <td align="center" bgcolor=#f5f5f5 class="form_item">
1299
                                    <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1549
                                    <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1300
                                 </td>
1550
                                 </td>
1301
                              <%Else%>
1551
                              <%Else%>
1302
                                 <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1552
                                 <td align="center" bgcolor=#f5f5f5 class="form_item">
1303
                                    <a href="_remove_jira_issue.asp?iss_link=<%=rsCQ("iss_num")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1553
                                    <a href="_remove_jira_issue.asp?iss_link=<%=rsCQ("iss_num")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1304
                                       <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1554
                                       <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1305
                                    </a>
1555
                                    </a>
1306
                                 </td>
1556
                                 </td>
1307
                              <%End If%>
1557
                              <%End If%>
Line 1309... Line 1559...
1309
                           <%rsCQ.MoveNext
1559
                           <%rsCQ.MoveNext
1310
                        WEnd
1560
                        WEnd
1311
                        rsCQ.Close()%>
1561
                        rsCQ.Close()%>
1312
                     <%Else%>
1562
                     <%Else%>
1313
                        <tr>
1563
                        <tr>
1314
                           <td background="images/bg_form_lightbluedark.gif" nowrap>&nbsp;</td>
1564
                           <td bgcolor=#e4e9ec nowrap>&nbsp;</td>
1315
                           <td background="images/bg_form_lightgray.gif" nowrap></td>
1565
                           <td bgcolor=#f5f5f5 nowrap></td>
1316
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1566
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1317
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1567
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1318
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1568
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1319
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1569
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1320
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1570
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1321
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1571
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1322
                           <td align="center" background="images/bg_form_lightgray.gif" class="form_item"></td>
1572
                           <td align="center" bgcolor=#f5f5f5 class="form_item"></td>
1323
                        </tr>
1573
                        </tr>
1324
                     <%End If%>
1574
                     <%End If%>
1325
 
1575
 
1326
                  </table>
1576
                  </table>
1327
               <%End If%>
1577
               <%End If%>
Line 1346... Line 1596...
1346
            If (retVal > 0) Then
1596
            If (retVal > 0) Then
1347
               retVal = Get_CQ_Issues ( SQLstr, rsCQ )
1597
               retVal = Get_CQ_Issues ( SQLstr, rsCQ )
1348
               If retVal = 0 Then%>
1598
               If retVal = 0 Then%>
1349
                  <table width="100%" border="0" cellspacing="1" cellpadding="3">
1599
                  <table width="100%" border="0" cellspacing="1" cellpadding="3">
1350
                     <tr>
1600
                     <tr>
1351
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field" align="center">Fixed</td>
1601
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field" align="center">Fixed</td>
1352
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1602
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Id&nbsp;</td>
1353
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1603
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;DB&nbsp;</td>
1354
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Summary</td>
1604
                        <td bgcolor=#e4e9ec nowrap width="100%" class="form_field">Summary</td>
1355
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1605
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Issue&nbsp;Type&nbsp;</td>
1356
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Priority</td>
1606
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Priority</td>
1357
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Status</td>
1607
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Status</td>
1358
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">Note</td>
1608
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">Note</td>
1359
                        <td background="images/bg_form_lightbluedark.gif" nowrap width="1" class="form_field">&nbsp;</td>
1609
                        <td bgcolor=#e4e9ec nowrap width="1" class="form_field">&nbsp;</td>
1360
                     </tr>
1610
                     </tr>
1361
                     <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1611
                     <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1362
                        <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1612
                        <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1363
                           <tr>
1613
                           <tr>
1364
                              <td align="center" nowrap background="images/bg_form_lightbluedark.gif"><img src="images/i_tick_black.gif" width="7" height="7" vspace="2"></td>
1614
                              <td align="center" nowrap bgcolor=#e4e9ec><img src="images/i_tick_black.gif" width="7" height="7" vspace="2"></td>
1365
                              <td background="images/bg_form_lightgray.gif" nowrap class="form_item">
1615
                              <td bgcolor=#f5f5f5 nowrap class="form_item">
1366
                                 <a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked">
1616
                                 <a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked">
1367
                                    <%=rsCQ("iss_num")%>
1617
                                    <%=rsCQ("iss_num")%>
1368
                                 </a>
1618
                                 </a>
1369
                              </td>
1619
                              </td>
1370
                              <td background="images/bg_form_lightgray.gif" class="form_item">
1620
                              <td bgcolor=#f5f5f5 class="form_item">
1371
                                 <%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>
1621
                                 <%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>
1372
                                    DEVI
1622
                                    DEVI
1373
                                 <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>
1623
                                 <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>
1374
                                    TDSE
1624
                                    TDSE
1375
                                 <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>
1625
                                 <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>
1376
                                    VT5DM
1626
                                    VT5DM
1377
                                 <%Else%>
1627
                                 <%Else%>
1378
                                    VTSUP
1628
                                    VTSUP
1379
                                 <%End If%>
1629
                                 <%End If%>
1380
                              </td>
1630
                              </td>
1381
                              <td background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1631
                              <td bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1382
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("issue_type")%></td>
1632
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("issue_type")%></td>
1383
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("priority")%></td>
1633
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("priority")%></td>
1384
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("Status")%></td>
1634
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("Status")%></td>
1385
                              <%If sectionIsEditable AND pageIsEditable Then%>
1635
                              <%If sectionIsEditable AND pageIsEditable Then%>
1386
                                 <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1636
                                 <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1387
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1637
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1388
                                       <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1638
                                       <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1389
                                          <img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1639
                                          <img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1390
                                       </a>
1640
                                       </a>
1391
                                    </td>
1641
                                    </td>
1392
                                 <%Else%>
1642
                                 <%Else%>
1393
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1643
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1394
                                       <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1644
                                       <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1395
                                          <img src="images/i_note_off.gif" width="11" height="12" border="0" title="Add Note">
1645
                                          <img src="images/i_note_off.gif" width="11" height="12" border="0" title="Add Note">
1396
                                       </a>
1646
                                       </a>
1397
                                    </td>
1647
                                    </td>
1398
                                 <%End If%>
1648
                                 <%End If%>
1399
                              <%Else%>
1649
                              <%Else%>
1400
                                 <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1650
                                 <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1401
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1651
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1402
                                       <img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1652
                                       <img src="images/i_note_on.gif" width="11" height="12" border="0" title="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1403
                                    </td>
1653
                                    </td>
1404
                                 <%Else%>
1654
                                 <%Else%>
1405
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1655
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1406
                                       <img src="images/i_note_off.gif" width="11" height="12" border="0">
1656
                                       <img src="images/i_note_off.gif" width="11" height="12" border="0">
1407
                                    </td>
1657
                                    </td>
1408
                                 <%End If%>
1658
                                 <%End If%>
1409
                              <%End If%>
1659
                              <%End If%>
1410
                              <%If NOT pageIsEditable Then%>
1660
                              <%If NOT pageIsEditable Then%>
1411
                                 <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1661
                                 <td align="center" bgcolor=#f5f5f5 class="form_item">
1412
                                    <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1662
                                    <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1413
                                 </td>
1663
                                 </td>
1414
                              <%Else%>
1664
                              <%Else%>
1415
                                 <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1665
                                 <td align="center" bgcolor=#f5f5f5 class="form_item">
1416
                                    <a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1666
                                    <a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1417
                                       <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1667
                                       <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1418
                                    </a>
1668
                                    </a>
1419
                                 </td>
1669
                                 </td>
1420
                              <%End If%>
1670
                              <%End If%>
Line 1422... Line 1672...
1422
                           <%rsCQ.MoveNext
1672
                           <%rsCQ.MoveNext
1423
                        WEnd
1673
                        WEnd
1424
                        rsCQ.Close()%>
1674
                        rsCQ.Close()%>
1425
                     <%Else%>
1675
                     <%Else%>
1426
                        <tr>
1676
                        <tr>
1427
                           <td background="images/bg_form_lightbluedark.gif" nowrap>&nbsp;</td>
1677
                           <td bgcolor=#e4e9ec nowrap>&nbsp;</td>
1428
                           <td background="images/bg_form_lightgray.gif" nowrap></td>
1678
                           <td bgcolor=#f5f5f5 nowrap></td>
1429
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1679
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1430
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1680
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1431
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1681
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1432
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1682
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1433
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1683
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1434
                           <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1684
                           <td bgcolor=#f5f5f5 class="form_item"></td>
1435
                           <td align="center" background="images/bg_form_lightgray.gif" class="form_item"></td>
1685
                           <td align="center" bgcolor=#f5f5f5 class="form_item"></td>
1436
                        </tr>
1686
                        </tr>
1437
                     <%End If%>
1687
                     <%End If%>
1438
 
1688
 
1439
                  </table>
1689
                  </table>
1440
               <%End If%>
1690
               <%End If%>
Line 1461... Line 1711...
1461
               If retVal = 0 Then%>
1711
               If retVal = 0 Then%>
1462
                  <table width="100%" border="0" cellspacing="1" cellpadding="2">
1712
                  <table width="100%" border="0" cellspacing="1" cellpadding="2">
1463
                     <form name="fixedissues" method="get" action="_update_issues_state.asp">
1713
                     <form name="fixedissues" method="get" action="_update_issues_state.asp">
1464
                        <tr>
1714
                        <tr>
1465
                           <%If pageIsEditable Then%>
1715
                           <%If pageIsEditable Then%>
1466
                              <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center">Fixed</td>
1716
                              <td bgcolor=#e4e9ec nowrap width="1%" class="form_field" align="center">Fixed</td>
1467
                           <%End If%>
1717
                           <%End If%>
1468
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue&nbsp;Id&nbsp;</td>
1718
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue&nbsp;Id&nbsp;</td>
1469
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue DB&nbsp;</td>
1719
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue DB&nbsp;</td>
1470
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Summary</td>
1720
                           <td bgcolor=#e4e9ec nowrap width="100%" class="form_field">Summary</td>
1471
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue&nbsp;Type&nbsp;</td>
1721
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue&nbsp;Type&nbsp;</td>
1472
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Priority</td>
1722
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Priority</td>
1473
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Status</td>
1723
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Status</td>
1474
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Note</td>
1724
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Note</td>
1475
                           <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">&nbsp;</td>
1725
                           <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">&nbsp;</td>
1476
                        </tr>
1726
                        </tr>
1477
                        <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1727
                        <%If ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF)) Then%>
1478
                           <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1728
                           <%While ((NOT rsCQ.BOF) AND (NOT rsCQ.EOF))%>
1479
                              <tr>
1729
                              <tr>
1480
                                 <%If pageIsEditable Then%>
1730
                                 <%If pageIsEditable Then%>
1481
                                    <td align="center" nowrap background="images/bg_form_lightbluedark.gif">
1731
                                    <td align="center" nowrap bgcolor=#e4e9ec>
1482
                                       <input type="checkbox" name="FRfixed" value="<%=rsCQ("iss_db") &"."& rsCQ("iss_id")%>">
1732
                                       <input type="checkbox" name="FRfixed" value="<%=rsCQ("iss_db") &"."& rsCQ("iss_id")%>">
1483
                                    </td>
1733
                                    </td>
1484
                                 <%End If%>
1734
                                 <%End If%>
1485
                                 <td background="images/bg_form_lightgray.gif" nowrap class="form_item">
1735
                                 <td bgcolor=#f5f5f5 nowrap class="form_item">
1486
                                    <a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked">
1736
                                    <a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked">
1487
                                       <%=rsCQ("iss_num")%>
1737
                                       <%=rsCQ("iss_num")%>
1488
                                    </a>
1738
                                    </a>
1489
                                 </td>
1739
                                 </td>
1490
                                 <td background="images/bg_form_lightgray.gif" class="form_item">
1740
                                 <td bgcolor=#f5f5f5 class="form_item">
1491
                                    <%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>
1741
                                    <%If rsCQ("iss_db") = enumCLEARQUEST_DEVI_ID Then%>
1492
                                       DEVI
1742
                                       DEVI
1493
                                    <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>
1743
                                    <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_TDSE_ID Then%>
1494
                                       TDSE
1744
                                       TDSE
1495
                                    <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>
1745
                                    <%ElseIf rsCQ("iss_db") = enumCLEARQUEST_VT5DM_ID Then%>
1496
                                       VT5DM
1746
                                       VT5DM
1497
                                    <%Else%>
1747
                                    <%Else%>
1498
                                       VTSUP
1748
                                       VTSUP
1499
                                    <%End If%>
1749
                                    <%End If%>
1500
                                 </td>
1750
                                 </td>
1501
                                 <td background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1751
                                 <td bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR ( To_HTML ( rsCQ("summary") ) )%></td>
1502
                                 <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("issue_type")%></td>
1752
                                 <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("issue_type")%></td>
1503
                                 <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("priority")%></td>
1753
                                 <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("priority")%></td>
1504
                                 <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=rsCQ("Status")%></td>
1754
                                 <td nowrap bgcolor=#f5f5f5 class="form_item"><%=rsCQ("Status")%></td>
1505
                                 <%If sectionIsEditable AND pageIsEditable Then%>
1755
                                 <%If sectionIsEditable AND pageIsEditable Then%>
1506
                                    <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1756
                                    <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1507
                                       <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1757
                                       <td align="center" bgcolor=#f5f5f5 class="form_item">
1508
                                          <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1758
                                          <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1509
                                             <img src="images/i_note_on.gif" width="11" height="12" border="0" alt="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1759
                                             <img src="images/i_note_on.gif" width="11" height="12" border="0" alt="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1510
                                          </a>
1760
                                          </a>
1511
                                       </td>
1761
                                       </td>
1512
                                    <%Else%>
1762
                                    <%Else%>
1513
                                       <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1763
                                       <td align="center" bgcolor=#f5f5f5 class="form_item">
1514
                                          <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1764
                                          <a href="javascript:;" onClick="MM_openBrWindow('_wform_issue_notes.asp?rtag_id=<%=parRtag_id%>&pv_id=<%=parPv_id%>&iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>','IssueNotes','resizable=yes,width=400,height=250')">
1515
                                             <img src="images/i_note_off.gif" width="11" height="12" border="0" alt="Add Note">
1765
                                             <img src="images/i_note_off.gif" width="11" height="12" border="0" alt="Add Note">
1516
                                          </a>
1766
                                          </a>
1517
                                       </td>
1767
                                       </td>
1518
                                    <%End If%>
1768
                                    <%End If%>
1519
                                 <%Else%>
1769
                                 <%Else%>
1520
                                    <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1770
                                    <%If notesIssDict.Exists (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id"))) Then%>
1521
                                       <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1771
                                       <td align="center" bgcolor=#f5f5f5 class="form_item">
1522
                                          <img src="images/i_note_on.gif" width="11" height="12" border="0" alt="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1772
                                          <img src="images/i_note_on.gif" width="11" height="12" border="0" alt="<%=notesIssDict.Item (Cstr(rsCQ("iss_db") &"."& rsCQ("iss_id")))%>">
1523
                                       </td>
1773
                                       </td>
1524
                                    <%Else%>
1774
                                    <%Else%>
1525
                                       <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1775
                                       <td align="center" bgcolor=#f5f5f5 class="form_item">
1526
                                          <img src="images/i_note_off.gif" width="11" height="12" border="0">
1776
                                          <img src="images/i_note_off.gif" width="11" height="12" border="0">
1527
                                       </td>
1777
                                       </td>
1528
                                    <%End If%>
1778
                                    <%End If%>
1529
                                 <%End If%>
1779
                                 <%End If%>
1530
                                 <%If NOT pageIsEditable Then%>
1780
                                 <%If NOT pageIsEditable Then%>
1531
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1781
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1532
                                       <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1782
                                       <img src="images/i_delete_disable.gif" width="13" height="12" hspace="2" border="0">
1533
                                    </td>
1783
                                    </td>
1534
                                 <%Else%>
1784
                                 <%Else%>
1535
                                    <td align="center" background="images/bg_form_lightgray.gif" class="form_item">
1785
                                    <td align="center" bgcolor=#f5f5f5 class="form_item">
1536
                                       <a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1786
                                       <a href="_remove_issue.asp?iss_db=<%=rsCQ("iss_db")%>&iss_id=<%=rsCQ("iss_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this issue from Release Manager');">
1537
                                          <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1787
                                          <img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this issue from the list">
1538
                                       </a>
1788
                                       </a>
1539
                                    </td>
1789
                                    </td>
1540
                                 <%End If%>
1790
                                 <%End If%>
Line 1542... Line 1792...
1542
                              <%rsCQ.MoveNext
1792
                              <%rsCQ.MoveNext
1543
                           WEnd
1793
                           WEnd
1544
                           rsCQ.Close()%>
1794
                           rsCQ.Close()%>
1545
                           <%If pageIsEditable Then%>
1795
                           <%If pageIsEditable Then%>
1546
                              <tr>
1796
                              <tr>
1547
                                 <td align="center" nowrap background="images/bg_form_lightbluedark.gif">
1797
                                 <td align="center" nowrap bgcolor=#e4e9ec>
1548
                                    <input type="submit" name="Apply" value="Apply" class="form_btn">
1798
                                    <input type="submit" name="Apply" value="Apply" class="form_btn">
1549
                                 </td>
1799
                                 </td>
1550
                                 <td></td>
1800
                                 <td></td>
1551
                                 <td></td>
1801
                                 <td></td>
1552
                                 <td></td>
1802
                                 <td></td>
Line 1558... Line 1808...
1558
                              </tr>
1808
                              </tr>
1559
                           <%End If%>
1809
                           <%End If%>
1560
                        <%Else%>
1810
                        <%Else%>
1561
                           <tr>
1811
                           <tr>
1562
                              <%If pageIsEditable Then%>
1812
                              <%If pageIsEditable Then%>
1563
                                 <td background="images/bg_form_lightbluedark.gif" nowrap>&nbsp;</td>
1813
                                 <td bgcolor=#e4e9ec nowrap>&nbsp;</td>
1564
                              <%End If%>
1814
                              <%End If%>
1565
                              <td background="images/bg_form_lightgray.gif" nowrap></td>
1815
                              <td bgcolor=#f5f5f5 nowrap></td>
1566
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1816
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1567
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1817
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1568
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1818
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1569
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1819
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1570
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1820
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1571
                              <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1821
                              <td bgcolor=#f5f5f5 class="form_item"></td>
1572
                              <td align="center" background="images/bg_form_lightgray.gif" class="form_item"></td>
1822
                              <td align="center" bgcolor=#f5f5f5 class="form_item"></td>
1573
                           </tr>
1823
                           </tr>
1574
                        <%End If%>
1824
                        <%End If%>
1575
                        <input name="pv_id" type="hidden" value="<%=parPv_id%>">
1825
                        <input name="pv_id" type="hidden" value="<%=parPv_id%>">
1576
                        <input name="rtag_id" type="hidden" value="<%=parRtag_id%>">
1826
                        <input name="rtag_id" type="hidden" value="<%=parRtag_id%>">
1577
                     </form>
1827
                     </form>
Line 1601... Line 1851...
1601
                  G1_template = _
1851
                  G1_template = _
1602
                  "<tr>"&_
1852
                  "<tr>"&_
1603
                  "  <td colspan='7'><img src='images/spacer.gif' width='2' height='2'></td>"&_
1853
                  "  <td colspan='7'><img src='images/spacer.gif' width='2' height='2'></td>"&_
1604
                  "</tr>"&_
1854
                  "</tr>"&_
1605
                  "<tr>"&_
1855
                  "<tr>"&_
1606
                  "  <td colspan='7' background='images/bg_form_lightbluedark.gif' class='form_item'>/*DEP_NAME_VERSION*//*REASONS*/</td>"&_
1856
                  "  <td colspan='7' bgcolor=#e4e9ec class='form_item'>/*DEP_NAME_VERSION*//*REASONS*/</td>"&_
1607
                  "</tr>"
1857
                  "</tr>"
1608
                  Set rsDepIss = OraDatabase.DbCreateDynaset( SQL_Dependency_Issues( parPv_id ), cint(0))
1858
                  Set rsDepIss = OraDatabase.DbCreateDynaset( SQL_Dependency_Issues( parPv_id ), cint(0))
1609
                  %>
1859
                  %>
1610
                  <%If ((NOT rsDepIss.BOF) AND (NOT rsDepIss.EOF)) Then%>
1860
                  <%If ((NOT rsDepIss.BOF) AND (NOT rsDepIss.EOF)) Then%>
1611
                     <%While ((NOT rsDepIss.BOF) AND (NOT rsDepIss.EOF))%>
1861
                     <%While ((NOT rsDepIss.BOF) AND (NOT rsDepIss.EOF))%>
Line 1629... Line 1879...
1629
                        Call Group_By ( rsDepIss("pv_id"), G1_style, currG1 )
1879
                        Call Group_By ( rsDepIss("pv_id"), G1_style, currG1 )
1630
                        If NOT IsNull(rsDepIss("iss_id")) Then
1880
                        If NOT IsNull(rsDepIss("iss_id")) Then
1631
                           If rsDepIss("pv_id") <> currG1 Then
1881
                           If rsDepIss("pv_id") <> currG1 Then
1632
                              currG1 = rsDepIss("pv_id")%>
1882
                              currG1 = rsDepIss("pv_id")%>
1633
                              <tr>
1883
                              <tr>
1634
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center"></td>
1884
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field" align="center"></td>
1635
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field" align="center">Fixed</td>
1885
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field" align="center">Fixed</td>
1636
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue&nbsp;Id&nbsp;</td>
1886
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue&nbsp;Id&nbsp;</td>
1637
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue DB&nbsp;</td>
1887
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue DB&nbsp;</td>
1638
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="100%" class="form_field">Summary</td>
1888
                                 <td bgcolor=#e4e9ec nowrap width="100%" class="form_field">Summary</td>
1639
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Issue&nbsp;Type&nbsp;</td>
1889
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Issue&nbsp;Type&nbsp;</td>
1640
                                 <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Priority</td>
1890
                                 <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Priority</td>
1641
                              </tr>
1891
                              </tr>
1642
                           <%End If%>
1892
                           <%End If%>
1643
                           <tr>
1893
                           <tr>
1644
                              <td background="images/bg_form_lightbluedark.gif"></td>
1894
                              <td bgcolor=#e4e9ec></td>
1645
                              <td align="center" nowrap background="images/bg_form_lightgray.gif">
1895
                              <td align="center" nowrap bgcolor=#f5f5f5>
1646
                                 <%If CInt(rsDepIss("iss_state")) = enumISSUES_STATE_FIXED Then%>
1896
                                 <%If CInt(rsDepIss("iss_state")) = enumISSUES_STATE_FIXED Then%>
1647
                                    <img src="images/i_tick_black.gif" width="7" height="7" vspace="2">
1897
                                    <img src="images/i_tick_black.gif" width="7" height="7" vspace="2">
1648
                                 <%Else%>
1898
                                 <%Else%>
1649
                                    <img src="images/spacer.gif" width="7" height="7" vspace="2">
1899
                                    <img src="images/spacer.gif" width="7" height="7" vspace="2">
1650
                                 <%End If%>
1900
                                 <%End If%>
1651
                              </td>
1901
                              </td>
1652
                              <td background="images/bg_form_lightgray.gif" nowrap class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=asDepIss( iss_db_id, enumLoc_iss_db )%>&iss_id=<%=asDepIss( iss_db_id, enumLoc_iss_id )%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked"><%=asDepIss( iss_db_id, enumLoc_iss_num )%></a></td>
1902
                              <td bgcolor=#f5f5f5 nowrap class="form_item"><a href="javascript:;" onClick="MM_openBrWindow('_wform_issues_details.asp?iss_db=<%=asDepIss( iss_db_id, enumLoc_iss_db )%>&iss_id=<%=asDepIss( iss_db_id, enumLoc_iss_id )%>','IssueDetails','resizable=yes,width=580,height=500')" class="txt_linked"><%=asDepIss( iss_db_id, enumLoc_iss_num )%></a></td>
1653
                              <td background="images/bg_form_lightgray.gif" class="form_item"><%If asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_DEVI_ID Then%>DEVI<%ElseIf asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_TDSE_ID Then%>TDSE<%ElseIf asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_VT5DM_ID Then%>VT5DM<%Else%>VTSUP<%End If%></td>
1903
                              <td bgcolor=#f5f5f5 class="form_item"><%If asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_DEVI_ID Then%>DEVI<%ElseIf asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_TDSE_ID Then%>TDSE<%ElseIf asDepIss( iss_db_id, enumLoc_iss_db ) = enumCLEARQUEST_VT5DM_ID Then%>VT5DM<%Else%>VTSUP<%End If%></td>
1654
                              <td background="images/bg_form_lightgray.gif" class="form_item"><%=asDepIss( iss_db_id, enumLoc_summary)%></td>
1904
                              <td bgcolor=#f5f5f5 class="form_item"><%=asDepIss( iss_db_id, enumLoc_summary)%></td>
1655
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=asDepIss( iss_db_id, enumLoc_issue_type)%></td>
1905
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=asDepIss( iss_db_id, enumLoc_issue_type)%></td>
1656
                              <td nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=asDepIss( iss_db_id, enumLoc_priority)%></td>
1906
                              <td nowrap bgcolor=#f5f5f5 class="form_item"><%=asDepIss( iss_db_id, enumLoc_priority)%></td>
1657
                           </tr>
1907
                           </tr>
1658
                        <%End If%>
1908
                        <%End If%>
1659
                        <%rsDepIss.MoveNext
1909
                        <%rsDepIss.MoveNext
1660
                     WEnd
1910
                     WEnd
1661
                     rsDepIss.Close()
1911
                     rsDepIss.Close()
1662
                     Set rsDepIss = nothing%>
1912
                     Set rsDepIss = nothing%>
1663
                  <%Else%>
1913
                  <%Else%>
1664
                     <tr>
1914
                     <tr>
1665
                        <td background="images/bg_form_lightbluedark.gif" nowrap>&nbsp;</td>
1915
                        <td bgcolor=#e4e9ec nowrap>&nbsp;</td>
1666
                        <td background="images/bg_form_lightgray.gif"></td>
1916
                        <td bgcolor=#f5f5f5></td>
1667
                        <td background="images/bg_form_lightgray.gif"></td>
1917
                        <td bgcolor=#f5f5f5></td>
1668
                        <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1918
                        <td bgcolor=#f5f5f5 class="form_item"></td>
1669
                        <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1919
                        <td bgcolor=#f5f5f5 class="form_item"></td>
1670
                        <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1920
                        <td bgcolor=#f5f5f5 class="form_item"></td>
1671
                        <td background="images/bg_form_lightgray.gif" class="form_item"></td>
1921
                        <td bgcolor=#f5f5f5 class="form_item"></td>
1672
                     </tr>
1922
                     </tr>
1673
                  <%End If%>
1923
                  <%End If%>
1674
               <%End If%>
1924
               <%End If%>
1675
               <%If retVal <> 0 Then Response.write enumMSSQL_ERROR%>
1925
               <%If retVal <> 0 Then Response.write enumMSSQL_ERROR%>
1676
            <%End If%>
1926
            <%End If%>
Line 1704... Line 1954...
1704
         </tr>
1954
         </tr>
1705
      </table>
1955
      </table>
1706
      <%If (NOT testCheckTestsFound) AND (testCheckMSG_ID = -1) Then%>
1956
      <%If (NOT testCheckTestsFound) AND (testCheckMSG_ID = -1) Then%>
1707
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1957
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1708
            <tr>
1958
            <tr>
1709
               <td background="images/bg_form_lightgray.gif" class="form_item">
1959
               <td bgcolor=#f5f5f5 class="form_item">
1710
                  <%Call DisplayInfo ( "UNIT_TEST_NOT_DONE", 300 )%>
1960
                  <%Call DisplayInfo ( "UNIT_TEST_NOT_DONE", 300 )%>
1711
                  <span class="rep_small">Last Modified: <%=testCheckMSG%></span><br>
1961
                  <span class="rep_small">Last Modified: <%=testCheckMSG%></span><br>
1712
                  <%=NewLine_To_BR( To_HTML ( testCheckNote ) )%>
1962
                  <%=NewLine_To_BR( To_HTML ( testCheckNote ) )%>
1713
               </td>
1963
               </td>
1714
            </tr>
1964
            </tr>
Line 1716... Line 1966...
1716
      <%End If%>
1966
      <%End If%>
1717
 
1967
 
1718
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1968
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1719
         <form name="review" method="get" action="_update_unit_test_accepted_state.asp">
1969
         <form name="review" method="get" action="_update_unit_test_accepted_state.asp">
1720
            <tr>
1970
            <tr>
1721
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" valign="middle">&nbsp;Test Type&nbsp;</td>
1971
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" valign="middle">&nbsp;Test Type&nbsp;</td>
1722
               <td width="100%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" valign="middle">&nbsp;Test Summary&nbsp;</td>
1972
               <td width="100%" nowrap bgcolor=#e4e9ec class="form_field" valign="middle">&nbsp;Test Summary&nbsp;</td>
1723
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" align="center" valign="middle">Test<br>Completed</td>
1973
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" align="center" valign="middle">Test<br>Completed</td>
1724
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" align="center" valign="middle">&nbsp;Passed<br># / Total&nbsp;</td>
1974
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" align="center" valign="middle">&nbsp;Passed<br># / Total&nbsp;</td>
1725
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" align="center" valign="middle">&nbsp;Results&nbsp;</td>
1975
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" align="center" valign="middle">&nbsp;Results&nbsp;</td>
1726
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" align="center" valign="middle">&nbsp;Accepted&nbsp;</td>
1976
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" align="center" valign="middle">&nbsp;Accepted&nbsp;</td>
1727
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" align="center" valign="middle">Review<br>Completed</td>
1977
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" align="center" valign="middle">Review<br>Completed</td>
1728
               <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field" valign="middle">Comments /<br>Issue#</td>
1978
               <td width="1%" nowrap bgcolor=#e4e9ec class="form_field" valign="middle">Comments /<br>Issue#</td>
1729
               <td width="1%" background="images/bg_form_lightbluedark.gif"></td>
1979
               <td width="1%" bgcolor=#e4e9ec></td>
1730
            </tr>
1980
            </tr>
1731
            <%While ((NOT rsQry.BOF) AND (NOT rsQry.EOF) )%>
1981
            <%While ((NOT rsQry.BOF) AND (NOT rsQry.EOF) )%>
1732
               <tr>
1982
               <tr>
1733
                  <%If NOT pageIsEditable Then%>
1983
                  <%If NOT pageIsEditable Then%>
1734
                     <%If NOT IsNull(rsQry("test_id")) AND ( scriptName = "fixed_issues.asp") Then%>
1984
                     <%If NOT IsNull(rsQry("test_id")) AND ( scriptName = "fixed_issues.asp") Then%>
1735
                        <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="javascript:;" onClick="MM_openBrWindow('_wform_update_unit_test.asp?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','UpdateUT','resizable=yes,width=700,height=550')" class="txt_linked"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle" border="0"><%=rsQry("test_type_name")%></a></td>
1985
                        <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top"><a href="javascript:;" onClick="MM_openBrWindow('_wform_update_unit_test.asp?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','UpdateUT','resizable=yes,width=700,height=550')" class="txt_linked"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle" border="0"><%=rsQry("test_type_name")%></a></td>
1736
                     <%Else%>
1986
                     <%Else%>
1737
                        <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle"><%=rsQry("test_type_name")%></td>
1987
                        <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle"><%=rsQry("test_type_name")%></td>
1738
                     <%End If%>
1988
                     <%End If%>
1739
                  <%Else%>
1989
                  <%Else%>
1740
                     <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="javascript:;" onClick="MM_openBrWindow('<%If Not IsNull(rsQry("test_id")) Then%>_wform_update_unit_test.asp<%Else%>_wform_unit_test.asp<%End If%>?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>&test_type_id=<%=rsQry("test_type_id")%>','UpdateUT','resizable=yes,width=700,height=550')" class="txt_linked"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle" border="0"><%=rsQry("test_type_name")%></a></td>
1990
                     <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top"><a href="javascript:;" onClick="MM_openBrWindow('<%If Not IsNull(rsQry("test_id")) Then%>_wform_update_unit_test.asp<%Else%>_wform_unit_test.asp<%End If%>?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>&test_type_id=<%=rsQry("test_type_id")%>','UpdateUT','resizable=yes,width=700,height=550')" class="txt_linked"><img src="images/i_test.gif" width="16" height="16" hspace="3" align="absmiddle" border="0"><%=rsQry("test_type_name")%></a></td>
1741
                  <%End If%>
1991
                  <%End If%>
1742
                  <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=NewLine_To_BR( To_HTML( rsQry("test_summary") ))%></td>
1992
                  <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=NewLine_To_BR( To_HTML( rsQry("test_summary") ))%></td>
1743
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%If ( NOT IsNull(rsQry("tester")) ) Then%><%=EuroDate ( rsQry("completion_date") )%><br>by <a href="mailto:<%=rsQry("tester_email")%>" class="txt_linked"><%=rsQry("tester")%></a><%End If%></td>
1993
                  <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top"><%If ( NOT IsNull(rsQry("tester")) ) Then%><%=EuroDate ( rsQry("completion_date") )%><br>by <a href="mailto:<%=rsQry("tester_email")%>" class="txt_linked"><%=rsQry("tester")%></a><%End If%></td>
1744
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top" align="center"><%=rsQry("numof_test")%></td>
1994
                  <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top" align="center"><%=rsQry("numof_test")%></td>
1745
 
1995
 
1746
                  <%If CInt(rsQry("test_type_id")) = enumTEST_TYPE_AUTOMATIC Then%>
1996
                  <%If CInt(rsQry("test_type_id")) = enumTEST_TYPE_AUTOMATIC Then%>
1747
                     <td background="images/bg_form_lightgray.gif" class="form_item" align="center" valign="top">
1997
                     <td bgcolor=#f5f5f5 class="form_item" align="center" valign="top">
1748
                        <%If NOT IsNull( rsQry("results_url") ) Then%>
1998
                        <%If NOT IsNull( rsQry("results_url") ) Then%>
1749
                           <%If InStr( rsQry("results_url"), "http://" ) = 1 Then%>
1999
                           <%If InStr( rsQry("results_url"), "http://" ) = 1 Then%>
1750
                              <a href="<%=rsQry("results_url")%>" target="_blank"><img src="images/i_results.gif" width="15" height="16" border="0" alt="View test results"></a>
2000
                              <a href="<%=rsQry("results_url")%>" target="_blank"><img src="images/i_results.gif" width="15" height="16" border="0" alt="View test results"></a>
1751
                           <%Else%>
2001
                           <%Else%>
1752
                              <%If pkgInfoHash.Item ("base_view_id") = CStr(enumBASE_VIEW_PRODUCTS) Then%>
2002
                              <%If pkgInfoHash.Item ("base_view_id") = CStr(enumBASE_VIEW_PRODUCTS) Then%>
Line 1756... Line 2006...
1756
                              <%End If%>
2006
                              <%End If%>
1757
                           <%End If%>
2007
                           <%End If%>
1758
                        <%End If%>
2008
                        <%End If%>
1759
                     </td>
2009
                     </td>
1760
                  <%Else%>
2010
                  <%Else%>
1761
                     <td background="images/bg_form_lightgray.gif" class="form_item"  align="center" valign="top">
2011
                     <td bgcolor=#f5f5f5 class="form_item"  align="center" valign="top">
1762
                        <%If NOT IsNull( rsQry("results_attachment_name") ) Then%>
2012
                        <%If NOT IsNull( rsQry("results_attachment_name") ) Then%>
1763
                           <%If pkgInfoHash.Item ("dlocked") = "Y" Then%>
2013
                           <%If pkgInfoHash.Item ("dlocked") = "Y" Then%>
1764
                              <%If pkgInfoHash.Item ("base_view_id") = CStr(enumBASE_VIEW_PRODUCTS) Then%>
2014
                              <%If pkgInfoHash.Item ("base_view_id") = CStr(enumBASE_VIEW_PRODUCTS) Then%>
1765
                                 <a href="<%=deploy_archiveURL & pkgInfoHash.Item ("pkg_name") &"/"& pkgInfoHash.Item ("pkg_version") &"/"& rsQry("results_attachment_name")%>" target="_blank"><img src="images/i_results.gif" width="15" height="16" border="0" alt="View test results"></a>
2015
                                 <a href="<%=deploy_archiveURL & pkgInfoHash.Item ("pkg_name") &"/"& pkgInfoHash.Item ("pkg_version") &"/"& rsQry("results_attachment_name")%>" target="_blank"><img src="images/i_results.gif" width="15" height="16" border="0" alt="View test results"></a>
1766
                              <%Else%>
2016
                              <%Else%>
Line 1772... Line 2022...
1772
                           <%End If%>
2022
                           <%End If%>
1773
                        <%End If%>
2023
                        <%End If%>
1774
                     </td>
2024
                     </td>
1775
                  <%End If%>
2025
                  <%End If%>
1776
 
2026
 
1777
                  <td nowrap background="images/bg_form_lightbluedark.gif" class="sublbox_txt" valign="top" align="center"><%=FormatAccepted( rsQry("test_accepted"), rsQry("test_id") )%></td>
2027
                  <td nowrap bgcolor=#e4e9ec class="sublbox_txt" valign="top" align="center"><%=FormatAccepted( rsQry("test_accepted"), rsQry("test_id") )%></td>
1778
                  <td nowrap background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%If NOT IsNull(rsQry("reviewee")) Then%><%=EuroDate ( rsQry("acceptance_date") )%><br>by <a href="mailto:<%=rsQry("reviewee_email")%>" class="txt_linked"><%=rsQry("reviewee")%></a><%End If%></td>
2028
                  <td nowrap bgcolor=#f5f5f5 class="form_item" valign="top"><%If NOT IsNull(rsQry("reviewee")) Then%><%=EuroDate ( rsQry("acceptance_date") )%><br>by <a href="mailto:<%=rsQry("reviewee_email")%>" class="txt_linked"><%=rsQry("reviewee")%></a><%End If%></td>
1779
                  <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=NewLine_To_BR( To_HTML( rsQry("review_comments") ))%></td>
2029
                  <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=NewLine_To_BR( To_HTML( rsQry("review_comments") ))%></td>
1780
 
2030
 
1781
                  <%
2031
                  <%
1782
                  If (  (    pageIsEditable _
2032
                  If (  (    pageIsEditable _
1783
                         AND (scriptName = "fixed_issues.asp") _
2033
                         AND (scriptName = "fixed_issues.asp") _
1784
                         AND (IsNull(rsQry("test_accepted")) OR (rsQry("test_accepted") = enumUNIT_TEST_NOTACCEPTED))) _
2034
                         AND (IsNull(rsQry("test_accepted")) OR (rsQry("test_accepted") = enumUNIT_TEST_NOTACCEPTED))) _
Line 1787... Line 2037...
1787
                         AND (scriptName = "fixed_issues.asp") _
2037
                         AND (scriptName = "fixed_issues.asp") _
1788
                         AND (pkgInfoHash.Item("dlocked") = "Y") _
2038
                         AND (pkgInfoHash.Item("dlocked") = "Y") _
1789
                         AND (IsNull(rsQry("test_accepted")) OR (rsQry("test_accepted") = enumUNIT_TEST_NOTACCEPTED)) _
2039
                         AND (IsNull(rsQry("test_accepted")) OR (rsQry("test_accepted") = enumUNIT_TEST_NOTACCEPTED)) _
1790
                         AND (rsQry("test_type_id") <> CStr(enumTEST_TYPE_AUTOBUILD_UTF))) ) Then
2040
                         AND (rsQry("test_type_id") <> CStr(enumTEST_TYPE_AUTOBUILD_UTF))) ) Then
1791
                  %>
2041
                  %>
1792
                     <td background="images/bg_form_lightgray.gif" valign="top"><%If NOT IsNull(rsQry("test_id")) Then%><a href="_remove_unit_test.asp?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this unit test');"><img src="images/i_delete.gif" alt="Remove this test." width="13" height="12" hspace="3" border="0"></a><%End If%></td>
2042
                     <td bgcolor=#f5f5f5 valign="top"><%If NOT IsNull(rsQry("test_id")) Then%><a href="_remove_unit_test.asp?test_id=<%=rsQry("test_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this unit test');"><img src="images/i_delete.gif" alt="Remove this test." width="13" height="12" hspace="3" border="0"></a><%End If%></td>
1793
                  <%Else%>
2043
                  <%Else%>
1794
                     <td background="images/bg_form_lightgray.gif" valign="top"></td>
2044
                     <td bgcolor=#f5f5f5 valign="top"></td>
1795
                  <%End If%>
2045
                  <%End If%>
1796
               </tr>
2046
               </tr>
1797
               <%
2047
               <%
1798
               rsQry.MoveNext
2048
               rsQry.MoveNext
1799
            WEnd
2049
            WEnd
Line 1826... Line 2076...
1826
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
2076
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1827
         <tr>
2077
         <tr>
1828
            <td align="right" valign="bottom">
2078
            <td align="right" valign="bottom">
1829
               <%If ( scriptName = "fixed_issues.asp" ) Then%>
2079
               <%If ( scriptName = "fixed_issues.asp" ) Then%>
1830
                  <%If objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
2080
                  <%If objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
1831
                     <a href='javascript:;' onClick="MM_openBrWindow('_wform_update_code_review.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewEdit','scrollbars=yes,resizable=yes,width=950,height='+ ( screen.height - 100 ) +',top=0,left=0')" class="txt_linked">Edit<img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
2081
                     <a href='javascript:;' onClick="MM_openBrWindow('_wform_update_code_review.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewEdit','scrollbars=yes,status=yes,resizable=yes,width=950,height='+ ( screen.height - 100 ) +',top=0,left=0')" class="txt_linked">Edit<img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
1832
                  <%End If%>
2082
                  <%End If%>
1833
                  <%If rsQry.RecordCount > 0 Then%>
2083
                  <%If rsQry.RecordCount > 0 Then%>
1834
                     <%If NOT IsNull(rsQry("date_of_review")) Then%>
2084
                     <%If NOT IsNull(rsQry("date_of_review")) Then%>
1835
                        &nbsp;
2085
                        &nbsp;
1836
                        <a href='javascript:;' onClick="MM_openBrWindow('_wform_code_review.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewView','scrollbars=yes,resizable=yes,width=950,height='+ ( screen.height - 100 ) +',top=0,left=0')" class="txt_linked">View<img src="images/i_open.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
2086
                        <a href='javascript:;' onClick="MM_openBrWindow('_wform_code_review.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewView','scrollbars=yes,status=yes,resizable=yes,width=950,height='+ ( screen.height - 100 ) +',top=0,left=0')" class="txt_linked">View<img src="images/i_open.gif" width="12" height="12" hspace="2" border="0" align="absmiddle"></a>
1837
                     <%End If%>
2087
                     <%End If%>
1838
                  <%End If%>
2088
                  <%End If%>
1839
               <%End If%>
2089
               <%End If%>
1840
            </td>
2090
            </td>
1841
         </tr>
2091
         </tr>
1842
      </table>
2092
      </table>
1843
      <%If ((NOT rsQry.BOF) AND (NOT rsQry.EOF)) Then%>
2093
      <%If ((NOT rsQry.BOF) AND (NOT rsQry.EOF)) Then%>
1844
         <%If NOT IsNull(rsQry("date_of_review")) Then%>
2094
         <%If NOT IsNull(rsQry("date_of_review")) Then%>
1845
            <table width="100%"  border="0" cellspacing="1" cellpadding="4">
2095
            <table width="100%"  border="0" cellspacing="1" cellpadding="4">
1846
               <tr>
2096
               <tr>
1847
                  <td width="1%" align="right" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">Date of Review</td>
2097
                  <td width="1%" align="right" nowrap bgcolor=#e4e9ec class="form_field">Date of Review</td>
1848
                  <td width="1%" nowrap background="images/bg_form_lightgray.gif" class="form_item"><%=EuroDate ( rsQry("date_of_review") )%>&nbsp;&nbsp;&nbsp;</td>
2098
                  <td width="1%" nowrap bgcolor=#f5f5f5 class="form_item"><%=EuroDate ( rsQry("date_of_review") )%>&nbsp;&nbsp;&nbsp;</td>
1849
                  <td width="1%" align="right" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">&nbsp;&nbsp;&nbsp;Time Spent:</td>
2099
                  <td width="1%" align="right" nowrap bgcolor=#e4e9ec class="form_field">&nbsp;&nbsp;&nbsp;Time Spent:</td>
1850
                  <td width="100%" background="images/bg_form_lightgray.gif" class="form_item"><%=rsQry("time_spent")%> hrs </td>
2100
                  <td width="100%" bgcolor=#f5f5f5 class="form_item"><%=rsQry("time_spent")%> hrs </td>
1851
               </tr>
2101
               </tr>
1852
               <tr>
2102
               <tr>
1853
                  <td align="right" valign="top" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">Reason for Review</td>
2103
                  <td align="right" valign="top" nowrap bgcolor=#e4e9ec class="form_field">Reason for Review</td>
1854
                  <td colspan="3" background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR( To_HTML( rsQry("review_reason") ))%></td>
2104
                  <td colspan="3" bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR( To_HTML( rsQry("review_reason") ))%></td>
1855
               </tr>
2105
               </tr>
1856
               <tr>
2106
               <tr>
1857
                  <td align="right" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">Review Results </td>
2107
                  <td align="right" nowrap bgcolor=#e4e9ec class="form_field">Review Results </td>
1858
                  <td colspan="3" background="images/bg_form_lightgray.gif" class="form_item">
2108
                  <td colspan="3" bgcolor=#f5f5f5 class="form_item">
1859
                  <%=DecodeOverallResult( rsQry("review_results") )%>
2109
                  <%=DecodeOverallResult( rsQry("review_results") )%>
1860
                  </td>
2110
                  </td>
1861
               </tr>
2111
               </tr>
1862
               <tr>
2112
               <tr>
1863
                  <td align="right" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">Issues Raised </td>
2113
                  <td align="right" nowrap bgcolor=#e4e9ec class="form_field">Issues Raised </td>
1864
                  <td colspan="3" background="images/bg_form_lightgray.gif" class="form_item"><%=NewLine_To_BR( To_HTML( rsQry("issues_raised") ))%></td>
2114
                  <td colspan="3" bgcolor=#f5f5f5 class="form_item"><%=NewLine_To_BR( To_HTML( rsQry("issues_raised") ))%></td>
1865
               </tr>
2115
               </tr>
1866
            </table>
2116
            </table>
1867
         <%Else%>
2117
         <%Else%>
1868
            <table width="100%" border="0" cellspacing="1" cellpadding="2">
2118
            <table width="100%" border="0" cellspacing="1" cellpadding="2">
1869
               <tr>
2119
               <tr>
1870
                  <td background="images/bg_form_lightgray.gif"><span class='sublbox_txt'>No details found.</span></td>
2120
                  <td bgcolor=#f5f5f5><span class='sublbox_txt'>No details found.</span></td>
1871
               </tr>
2121
               </tr>
1872
            </table>
2122
            </table>
1873
         <%End If%>
2123
         <%End If%>
1874
      <%Else%>
2124
      <%Else%>
1875
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
2125
         <table width="100%" border="0" cellspacing="1" cellpadding="2">
1876
            <tr>
2126
            <tr>
1877
               <td background="images/bg_form_lightgray.gif"><span class='sublbox_txt'>No details found.</span></td>
2127
               <td bgcolor=#f5f5f5><span class='sublbox_txt'>No details found.</span></td>
1878
            </tr>
2128
            </tr>
1879
         </table>
2129
         </table>
1880
      <%End If%>
2130
      <%End If%>
1881
 
2131
 
1882
      <!-- Code Review URL section for this version -->
2132
      <!-- Code Review URL section for this version -->
Line 1884... Line 2134...
1884
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
2134
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
1885
         <tr>
2135
         <tr>
1886
            <td align="left" valign="top" class="body_colb">Code Review URL for this version</td>
2136
            <td align="left" valign="top" class="body_colb">Code Review URL for this version</td>
1887
            <td align="right" valign="top" <%If NOT IsNull(rsCodeReviewURL("url")) Then Response.Write("colspan='5'")%>>
2137
            <td align="right" valign="top" <%If NOT IsNull(rsCodeReviewURL("url")) Then Response.Write("colspan='5'")%>>
1888
               <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
2138
               <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
1889
                  <a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewURLEdit','scrollbars=no,resizable=yes,width=930,height=185,top=0,left=0')" class="txt_linked">New<img src="images/i_new.gif" width="13" height="13" hspace="2" border="0" align="absmiddle"></a>
2139
                  <a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','CodeReviewURLEdit','scrollbars=yes,status=yes,resizable=yes,width=930,height=185,top=0,left=0')" class="txt_linked">New<img src="images/i_new.gif" width="13" height="13" hspace="2" border="0" align="absmiddle"></a>
1890
               <%End If%>
2140
               <%End If%>
1891
            </td>
2141
            </td>
1892
         </tr>
2142
         </tr>
1893
         <%If IsNull(rsCodeReviewURL("full_url")) Then %>
2143
         <%If IsNull(rsCodeReviewURL("full_url")) Then %>
1894
            <tr>
2144
            <tr>
1895
               <td background="images/bg_form_lightgray.gif" width="100%" class="form_item" colspan="2">
2145
               <td bgcolor=#f5f5f5 width="100%" class="form_item" colspan="2">
1896
                  <span class='sublbox_txt'>No details found.</span>
2146
                  <span class='sublbox_txt'>No details found.</span>
1897
               </td>
2147
               </td>
1898
            </tr>
2148
            </tr>
1899
         <%Else%>
2149
         <%Else%>
1900
            <tr>
2150
            <tr>
1901
               <td background="images/bg_form_lightbluedark.gif" class="form_field">URL</td>
2151
               <td bgcolor=#e4e9ec class="form_field">URL</td>
1902
               <td background="images/bg_form_lightbluedark.gif" width="25%" class="form_field">Reason for Review</td>
2152
               <td bgcolor=#e4e9ec width="25%" class="form_field">Reason for Review</td>
1903
               <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Date of Review</td>
2153
               <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Date of Review</td>
1904
               <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Last Modified</td>
2154
               <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Last Modified</td>
1905
               <td background="images/bg_form_lightbluedark.gif" nowrap width="18px" class="form_field"></td>
2155
               <td bgcolor=#e4e9ec nowrap width="18px" class="form_field"></td>
1906
               <td background="images/bg_form_lightbluedark.gif" nowrap width="18px" class="form_field"></td>
2156
               <td bgcolor=#e4e9ec nowrap width="18px" class="form_field"></td>
1907
            </tr>
2157
            </tr>
1908
            <%If ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF)) Then
2158
            <%If ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF)) Then
1909
               While ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF))%>
2159
               While ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF))%>
1910
                  <tr>
2160
                  <tr>
1911
                     <%If (Left(rsCodeReviewURL("url"),4) = "http") Then%>
2161
                     <%If (Left(rsCodeReviewURL("url"),4) = "http") Then%>
1912
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="<%=rsCodeReviewURL("url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("url")%></a></td>
2162
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="<%=rsCodeReviewURL("url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("url")%></a></td>
1913
                     <%Else%>
2163
                     <%Else%>
1914
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="<%=rsCodeReviewURL("full_url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("full_url")%></a></td>
2164
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="<%=rsCodeReviewURL("full_url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("full_url")%></a></td>
1915
                     <%End If%>
2165
                     <%End If%>
1916
                     <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("reason")%></td>
2166
                     <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("reason")%></td>
1917
                     <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("date_of_review")%></td>
2167
                     <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("date_of_review")%></td>
1918
                     <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("last_modified")%></td>
2168
                     <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("last_modified")%></td>
1919
                     <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
2169
                     <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (pkgInfoHash.Item("dlocked") = "Y")) Then%>
1920
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>&cr_id=<%=rsCodeReviewURL("cr_id")%>','CodeReviewURLEdit','scrollbars=no,resizable=yes,width=930,height=185')" class="txt_linked"><img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle" alt="Edit this code review URL"></a></td>
2170
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>&cr_id=<%=rsCodeReviewURL("cr_id")%>','CodeReviewURLEdit','scrollbars=no,status=yes,resizable=yes,width=930,height=185')" class="txt_linked"><img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle" alt="Edit this code review URL"></a></td>
1921
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="_remove_code_review_url.asp?cr_id=<%=rsCodeReviewURL("cr_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onclick="return confirmDelete('this code review URL from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this code review URL"></a></td>
2171
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="_remove_code_review_url.asp?cr_id=<%=rsCodeReviewURL("cr_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onclick="return confirmDelete('this code review URL from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this code review URL"></a></td>
1922
                     <%Else%>
2172
                     <%Else%>
1923
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"></td>
2173
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"></td>
1924
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"></td>
2174
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"></td>
1925
                     <%End If%>
2175
                     <%End If%>
1926
                  </tr>
2176
                  </tr>
1927
                  <%rsCodeReviewURL.MoveNext
2177
                  <%rsCodeReviewURL.MoveNext
1928
               WEnd
2178
               WEnd
1929
            Else%>
2179
            Else%>
1930
               <tr>
2180
               <tr>
1931
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2181
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1932
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2182
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1933
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2183
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1934
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2184
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1935
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2185
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1936
                  <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2186
                  <td bgcolor=#f5f5f5 class="form_item"></td>
1937
               </tr>
2187
               </tr>
1938
            <%End If
2188
            <%End If
1939
         End If%>
2189
         End If%>
1940
      </table>
2190
      </table>
1941
 
2191
 
Line 1954... Line 2204...
1954
            <tr>
2204
            <tr>
1955
               <td align="left" valign="top" class="body_colb" <%If NOT IsNull(rsCodeReviewURL("url")) Then Response.Write("colspan='6'")%>>Code Review URL for last non-ripple build (<a class="lbl_link" href="fixed_issues.asp?pv_id=<%=rsQry("pv_id")%>"><%=sOldPkgVersion%></a>)</td>
2205
               <td align="left" valign="top" class="body_colb" <%If NOT IsNull(rsCodeReviewURL("url")) Then Response.Write("colspan='6'")%>>Code Review URL for last non-ripple build (<a class="lbl_link" href="fixed_issues.asp?pv_id=<%=rsQry("pv_id")%>"><%=sOldPkgVersion%></a>)</td>
1956
            </tr>
2206
            </tr>
1957
            <%If IsNull(rsCodeReviewURL("url")) Then%>
2207
            <%If IsNull(rsCodeReviewURL("url")) Then%>
1958
               <tr>
2208
               <tr>
1959
                  <td background="images/bg_form_lightgray.gif" width="100%" class="form_item" colspan="2">
2209
                  <td bgcolor=#f5f5f5 width="100%" class="form_item" colspan="2">
1960
                     <span class='sublbox_txt'>No details found.</span>
2210
                     <span class='sublbox_txt'>No details found.</span>
1961
                  </td>
2211
                  </td>
1962
               </tr>
2212
               </tr>
1963
            <%Else%>
2213
            <%Else%>
1964
               <tr>
2214
               <tr>
1965
                  <td background="images/bg_form_lightbluedark.gif" class="form_field">URL</td>
2215
                  <td bgcolor=#e4e9ec class="form_field">URL</td>
1966
                  <td background="images/bg_form_lightbluedark.gif" width="30%" class="form_field">Reason for Review</td>
2216
                  <td bgcolor=#e4e9ec width="30%" class="form_field">Reason for Review</td>
1967
                  <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Date of Review</td>
2217
                  <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Date of Review</td>
1968
                  <td background="images/bg_form_lightbluedark.gif" nowrap width="1%" class="form_field">Last Modified</td>
2218
                  <td bgcolor=#e4e9ec nowrap width="1%" class="form_field">Last Modified</td>
1969
                  <td background="images/bg_form_lightbluedark.gif" nowrap width="18px" class="form_field"></td>
2219
                  <td bgcolor=#e4e9ec nowrap width="18px" class="form_field"></td>
1970
                  <td background="images/bg_form_lightbluedark.gif" nowrap width="18px" class="form_field"></td>
2220
                  <td bgcolor=#e4e9ec nowrap width="18px" class="form_field"></td>
1971
               </tr>
2221
               </tr>
1972
               <%If ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF)) Then
2222
               <%If ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF)) Then
1973
                  While ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF))%>
2223
                  While ((NOT rsCodeReviewURL.BOF) AND (NOT rsCodeReviewURL.EOF))%>
1974
                     <tr>
2224
                     <tr>
1975
                        <%If (Left(rsCodeReviewURL("url"),4) = "http") Then%>
2225
                        <%If (Left(rsCodeReviewURL("url"),4) = "http") Then%>
1976
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="<%=rsCodeReviewURL("url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("url")%></a></td>
2226
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="<%=rsCodeReviewURL("url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("url")%></a></td>
1977
                        <%Else%>
2227
                        <%Else%>
1978
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="<%=rsCodeReviewURL("full_url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("full_url")%></a></td>
2228
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="<%=rsCodeReviewURL("full_url")%>" target="_blank" class="txt_linked"><%=rsCodeReviewURL("full_url")%></a></td>
1979
                        <%End If%>
2229
                        <%End If%>
1980
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("reason")%></td>
2230
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("reason")%></td>
1981
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("date_of_review")%></td>
2231
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("date_of_review")%></td>
1982
                        <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><%=rsCodeReviewURL("last_modified")%></td>
2232
                        <td bgcolor=#f5f5f5 class="form_item" valign="top"><%=rsCodeReviewURL("last_modified")%></td>
1983
                        <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (oldDlocked = "Y")) Then%>
2233
                        <%If (scriptName = "fixed_issues.asp") AND objAccessControl.UserLogedIn AND (pageIsEditable OR (oldDlocked = "Y")) Then%>
1984
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=rsCodeReviewURL("pv_id")%>&rtag_id=<%=parRtag_id%>&cr_id=<%=rsCodeReviewURL("cr_id")%>','CodeReviewURLEdit','scrollbars=no,resizable=yes,width=930,height=185')" class="txt_linked"><img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle" alt="Edit this code review URL"></a></td>
2234
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="javascript:;" onclick="MM_openBrWindow('_wform_edit_code_review_url.asp?pv_id=<%=rsCodeReviewURL("pv_id")%>&rtag_id=<%=parRtag_id%>&cr_id=<%=rsCodeReviewURL("cr_id")%>','CodeReviewURLEdit','scrollbars=no,resizable=yes,width=930,height=185')" class="txt_linked"><img src="images/i_edit.gif" width="12" height="12" hspace="2" border="0" align="absmiddle" alt="Edit this code review URL"></a></td>
1985
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"><a href="_remove_code_review_url.asp?cr_id=<%=rsCodeReviewURL("cr_id")%>&pv_id=<%=rsCodeReviewURL("pv_id")%>&rtag_id=<%=parRtag_id%>" onclick="return confirmDelete('this code review URL from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this code review URL"></a></td>
2235
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"><a href="_remove_code_review_url.asp?cr_id=<%=rsCodeReviewURL("cr_id")%>&pv_id=<%=rsCodeReviewURL("pv_id")%>&rtag_id=<%=parRtag_id%>" onclick="return confirmDelete('this code review URL from Release Manager');"><img src="images/i_delete.gif" width="13" height="12" hspace="2" border="0" alt="Delete this code review URL"></a></td>
1986
                        <%Else%>
2236
                        <%Else%>
1987
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"></td>
2237
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"></td>
1988
                           <td background="images/bg_form_lightgray.gif" class="form_item" valign="top"></td>
2238
                           <td bgcolor=#f5f5f5 class="form_item" valign="top"></td>
1989
                        <%End If%>
2239
                        <%End If%>
1990
                     </tr>
2240
                     </tr>
1991
                     <%rsCodeReviewURL.MoveNext
2241
                     <%rsCodeReviewURL.MoveNext
1992
                  WEnd
2242
                  WEnd
1993
               Else%>
2243
               Else%>
1994
                  <tr>
2244
                  <tr>
1995
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2245
                     <td bgcolor=#f5f5f5 class="form_item"></td>
1996
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2246
                     <td bgcolor=#f5f5f5 class="form_item"></td>
1997
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2247
                     <td bgcolor=#f5f5f5 class="form_item"></td>
1998
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2248
                     <td bgcolor=#f5f5f5 class="form_item"></td>
1999
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2249
                     <td bgcolor=#f5f5f5 class="form_item"></td>
2000
                     <td background="images/bg_form_lightgray.gif" class="form_item"></td>
2250
                     <td bgcolor=#f5f5f5 class="form_item"></td>
2001
                  </tr>
2251
                  </tr>
2002
               <%End If
2252
               <%End If
2003
            End If%>
2253
            End If%>
2004
         </table>
2254
         </table>
2005
      <%End If%>
2255
      <%End If%>
Line 2021... Line 2271...
2021
      </table>
2271
      </table>
2022
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
2272
      <table width="100%" border="0" cellspacing="1" cellpadding="2">
2023
         <%Set rsQry = OraDatabase.DbCreateDynaset( SQL_Additional_Notes ( parPv_id ), cint(0))%>
2273
         <%Set rsQry = OraDatabase.DbCreateDynaset( SQL_Additional_Notes ( parPv_id ), cint(0))%>
2024
         <%If rsQry.RecordCount < 1 Then%>
2274
         <%If rsQry.RecordCount < 1 Then%>
2025
            <tr>
2275
            <tr>
2026
               <td class="form_field" width="100%" background="images/bg_form_lightgray.gif">&nbsp;</td>
2276
               <td class="form_field" width="100%" bgcolor=#f5f5f5>&nbsp;</td>
2027
            </tr>
2277
            </tr>
2028
         <%End If%>
2278
         <%End If%>
2029
         <%While ((NOT rsQry.BOF) AND (NOT rsQry.EOF))%>
2279
         <%While ((NOT rsQry.BOF) AND (NOT rsQry.EOF))%>
2030
            <tr>
2280
            <tr>
2031
               <td width="100%" nowrap background="images/bg_form_lightbluedark.gif" class="body_col">
2281
               <td width="100%" nowrap bgcolor=#e4e9ec class="body_col">
2032
                  <%If pageIsEditable Then%>
2282
                  <%If pageIsEditable Then%>
2033
                     <a href="javascript:;" onClick="MM_openBrWindow('_wform_update_additional_note.asp?note_id=<%=rsQry("note_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','UpdateAN','resizable=yes,width=600,height=400')" class="body_col"><img src="images/i_edit.gif" alt="Edit" width="12" height="12" hspace="3" vspace="3" border="0" align="absmiddle"><%=To_HTML (rsQry("note_title"))%></a>
2283
                     <a href="javascript:;" onClick="MM_openBrWindow('_wform_update_additional_note.asp?note_id=<%=rsQry("note_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>','UpdateAN','resizable=yes,width=600,height=400')" class="body_col"><img src="images/i_edit.gif" alt="Edit" width="12" height="12" hspace="3" vspace="3" border="0" align="absmiddle"><%=To_HTML (rsQry("note_title"))%></a>
2034
                  <%Else%>
2284
                  <%Else%>
2035
                     <%=To_HTML (rsQry("note_title"))%>
2285
                     <%=To_HTML (rsQry("note_title"))%>
2036
                  <%End If%>
2286
                  <%End If%>
2037
               </td>
2287
               </td>
2038
               <td width="1" background="images/bg_form_lightbluedark.gif">
2288
               <td width="1" bgcolor=#e4e9ec>
2039
                  <%If pageIsEditable Then%>
2289
                  <%If pageIsEditable Then%>
2040
                     <a href="_remove_additional_note.asp?note_id=<%=rsQry("note_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this note');"><img src="images/i_delete.gif" alt="Remove this note." width="13" height="12" hspace="3" border="0"></a>
2290
                     <a href="_remove_additional_note.asp?note_id=<%=rsQry("note_id")%>&pv_id=<%=parPv_id%>&rtag_id=<%=parRtag_id%>" onClick="return confirmDelete('this note');"><img src="images/i_delete.gif" alt="Remove this note." width="13" height="12" hspace="3" border="0"></a>
2041
                  <%End If%>
2291
                  <%End If%>
2042
               </td>
2292
               </td>
2043
            </tr>
2293
            </tr>
2044
            <tr>
2294
            <tr>
2045
               <td colspan="2" background="images/bg_form_lightgray.gif" class="sublbox_txt">
2295
               <td colspan="2" bgcolor=#f5f5f5 class="sublbox_txt">
2046
                  <%=NewLine_To_BR( To_HTML ( rsQry("note_body") ) )%><br><br>
2296
                  <%=NewLine_To_BR( To_HTML ( rsQry("note_body") ) )%><br><br>
2047
                  <span class="rep_small">Last Modified: <%=rsQry("lastmod")%></span>
2297
                  <span class="rep_small">Last Modified: <%=rsQry("lastmod")%></span>
2048
               </td>
2298
               </td>
2049
            </tr>
2299
            </tr>
2050
            <tr>
2300
            <tr>