Subversion Repositories DevTools

Rev

Rev 5983 | Rev 6070 | Go to most recent revision | Details | Compare with Previous | 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
%>
6048 dpurdie 28
<!--#include file="_access_control_login.asp"-->
5009 dpurdie 29
<!--#include file="_access_control_general.asp"-->
30
<%
31
'------------ Variable Definition -------------
32
'------------ Constants Declaration -----------
33
'------------ Variable Init -------------------
34
'----------------------------------------------
35
%>
36
<html>
37
<title><%=Title(Request("rtag_id"))%></title>
5357 dpurdie 38
<link rel="shortcut icon" href="<%=FavIcon%>"/>
5009 dpurdie 39
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
40
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
41
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
42
<link rel="stylesheet" href="images/navigation.css" type="text/css">
43
<script language="JavaScript" src="images/common.js"></script>
5085 dpurdie 44
<!--#include file="_jquery_includes.asp"-->
5009 dpurdie 45
<!-- DROPDOWN MENUS -->
46
<!--#include file="_menu_def.asp"-->
47
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
48
</head>
49
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
50
<!-- MENU LAYERS -------------------------------------->
51
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
52
  <!----------------------------------------------------->
53
</div>
54
<!-- HEADER -->
55
<!--#include file="_header.asp"-->
56
<!-- BODY ---->
57
<table width="100%" border="0" cellspacing="0" cellpadding="0">
58
    <tr> 
59
        <td valign="top" width="1" background="images/bg_bage.gif">
60
        <!-- LEFT -->
61
        <!--#include file="_environment.asp"-->
62
        </td>
63
        <td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
64
        <td valign="top" width="100%">
65
        <!-- MIDDLE -->
66
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
67
          <tr>
68
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
69
            <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
70
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
71
          </tr>
72
          <tr>
73
            <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
74
            <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
75
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
76
          </tr>
77
          <tr>
78
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
79
            <td valign="bottom" background="images/bg_lght_gray.gif">
80
              <table width="100" border="0" cellspacing="0" cellpadding="0">
81
                <tr>
82
                  <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
83
                  <td>
84
                  <!-- TABS ------------------------------------->
85
                  <%Call Generate_Tab_Menu ( TABarray1, "Unit Test", "orange" )%>
86
                  </td>
87
                </tr>
88
              </table>
89
            </td>
90
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
91
          </tr>
92
          <tr>
93
            <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
94
            <td background="images/lbox_bg_orange.gif">
95
            <!-- TAB ACTION BUTTONS ------------------------------------->
96
            </td>
97
            <td background="images/lbox_bg_orange.gif">&nbsp;</td>
98
          </tr>
99
          <tr>
100
            <td></td>
101
            <td valign="top">
102
            <!-- DETAILS ------------------------------------------------->
103
            <br>                      
104
                        <span class="body_colb">Build and Unit Test Results</span><br>
5018 dpurdie 105
                            <!--#include file="_unit_test_log.asp"-->  
5009 dpurdie 106
                        <!------------------------------------------------------------>
107
           <br>
108
 
109
            <!-- END DETAILS ------------------------------------------------->
110
            </td>
111
            <td>&nbsp;</td>
112
          </tr>
113
        </table>
114
        <!-- END MIDDLE -------->
115
        </td>
116
    </tr>
117
</table>
118
<!-- FOOTER -->
119
<!--#include file="_footer.asp"-->
120
</body>
121
</html>