Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5009 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'   Unit Test Log
5
'   Displayed as Tab within a Package Version
6
'
7
'   Globals:
8
'       parRtag_id,parPv_id
9
'=====================================================
10
%>
11
<%
12
Option explicit
13
' Good idea to set when using redirect
14
Response.Expires = 0    ' always load the page, dont store
15
%>
16
<!--#include file="common/conf.asp"-->
17
<!--#include file="common/globals.asp"-->
18
<!--#include file="common/formating.asp"-->
19
<!--#include file="common/qstr.asp"-->
20
<!--#include file="common/common_subs.asp"-->
21
<!--#include file="common/common_dbedit.asp"-->
22
<!--#include file="_tabs.asp"-->
23
<!--#include file="_action_buttons.asp"-->
24
<!--#include file="common/_package_common.asp"-->
25
<%
26
'------------ ACCESS CONTROL ------------------
27
%>
28
<!--#include file="_access_control_general.asp"-->
29
<%
30
'------------ Variable Definition -------------
31
'------------ Constants Declaration -----------
32
'------------ Variable Init -------------------
33
'----------------------------------------------
34
%>
35
<html>
36
<title><%=Title(Request("rtag_id"))%></title>
37
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
38
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
39
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
40
<link rel="stylesheet" href="images/navigation.css" type="text/css">
41
<script language="JavaScript" src="images/common.js"></script>
42
 
43
<!-- DROPDOWN MENUS -->
44
<!--#include file="_menu_def.asp"-->
45
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
46
</head>
47
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
48
<!-- MENU LAYERS -------------------------------------->
49
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
50
  <!----------------------------------------------------->
51
</div>
52
<!-- HEADER -->
53
<!--#include file="_header.asp"-->
54
<!-- BODY ---->
55
<table width="100%" border="0" cellspacing="0" cellpadding="0">
56
    <tr> 
57
        <td valign="top" width="1" background="images/bg_bage.gif">
58
        <!-- LEFT -->
59
        <!--#include file="_environment.asp"-->
60
        </td>
61
        <td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
62
        <td valign="top" width="100%">
63
        <!-- MIDDLE -->
64
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
65
          <tr>
66
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
67
            <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
68
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
69
          </tr>
70
          <tr>
71
            <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
72
            <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
73
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
74
          </tr>
75
          <tr>
76
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
77
            <td valign="bottom" background="images/bg_lght_gray.gif">
78
              <table width="100" border="0" cellspacing="0" cellpadding="0">
79
                <tr>
80
                  <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
81
                  <td>
82
                  <!-- TABS ------------------------------------->
83
                  <%Call Generate_Tab_Menu ( TABarray1, "Unit Test", "orange" )%>
84
                  </td>
85
                </tr>
86
              </table>
87
            </td>
88
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
89
          </tr>
90
          <tr>
91
            <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
92
            <td background="images/lbox_bg_orange.gif">
93
            <!-- TAB ACTION BUTTONS ------------------------------------->
94
            </td>
95
            <td background="images/lbox_bg_orange.gif">&nbsp;</td>
96
          </tr>
97
          <tr>
98
            <td></td>
99
            <td valign="top">
100
            <!-- DETAILS ------------------------------------------------->
101
            <br>                      
102
                        <span class="body_colb">Build and Unit Test Results</span><br>
5018 dpurdie 103
                            <!--#include file="_unit_test_log.asp"-->  
5009 dpurdie 104
                        <!------------------------------------------------------------>
105
           <br>
106
 
107
            <!-- END DETAILS ------------------------------------------------->
108
            </td>
109
            <td>&nbsp;</td>
110
          </tr>
111
        </table>
112
        <!-- END MIDDLE -------->
113
        </td>
114
    </tr>
115
</table>
116
 
117
<!-- FOOTER -->
118
<!--#include file="_footer.asp"-->
119
 
120
</body>
121
</html>         
122
<%
123
Call Destroy_All_Objects
124
%>