Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5098 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'   Display Internal Package Version Data
5
'   Used for development and debug
6
'   Not availavle in production system
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
12
Response.Expires = 0    ' always load the page, dont store
13
%>
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/qstr.asp"-->
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_dbedit.asp"-->
20
<!--#include file="_tabs.asp"-->
21
<!--#include file="_action_buttons.asp"-->
22
<!--#include file="common/_package_common.asp"-->
23
<%
24
'------------ ACCESS CONTROL ------------------
25
%>
26
<!--#include file="_access_control_general.asp"-->
27
<%
28
'------------ Variable Definition -------------
29
Dim rsQry
30
'------------ Constants Declaration -----------
31
'------------ Variable Init -------------------
32
'----------------------------------------------
33
%>
34
<html>
35
<title><%=Title(Request("rtag_id"))%></title>
36
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
37
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
38
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
39
<link rel="stylesheet" href="images/navigation.css" type="text/css">
40
<script language="JavaScript" src="images/common.js"></script>
41
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
42
<!--#include file="_jquery_includes.asp"-->
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, "Debug", "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
            <td>&nbsp;</td>
101
          </tr>
102
            <td></td>
103
            <td>
104
            <%
105
                Dim strName
106
                Response.Write "<pre><br>Form Variables" 
107
                For Each strName in request.form
108
                    Response.Write "<br>  " & strName & ": " & request.form(strName)
109
                Next
110
                Response.Write "<br>String Variables"  
111
                For Each strName in request.querystring
112
                    Response.Write "<br>  " & strName & ": " & request.querystring(strName)
113
                Next
114
                Response.Write "<br>pkgInfoHash Variables"  
115
                For Each strName in pkgInfoHash.keys
116
                    Response.Write "<br>  " & strName & ": " & pkgInfoHash.item(strName) 
117
                Next
118
                Response.Write "</pre>" 
119
            %>
120
            </td>
121
        </table>
122
        <!-- END MIDDLE -------->
123
        </td>
124
    </tr>
125
</table>
126
 
127
<!-- FOOTER -->
128
<!--#include file="_footer.asp"-->
129
</body>
130
</html>         
131
<%
132
Call Destroy_All_Objects
133
%>