Subversion Repositories DevTools

Rev

Rev 5957 | Rev 6070 | Go to most recent revision | Details | Compare with Previous | 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
%>
6048 dpurdie 26
<!--#include file="_access_control_login.asp"-->
5098 dpurdie 27
<!--#include file="_access_control_general.asp"-->
28
<%
29
'------------ Variable Definition -------------
30
Dim rsQry
31
'------------ Constants Declaration -----------
32
'------------ Variable Init -------------------
33
'----------------------------------------------
34
%>
35
<html>
36
<title><%=Title(Request("rtag_id"))%></title>
5357 dpurdie 37
<link rel="shortcut icon" href="<%=FavIcon%>"/>
5098 dpurdie 38
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
39
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
40
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
41
<link rel="stylesheet" href="images/navigation.css" type="text/css">
42
<script language="JavaScript" src="images/common.js"></script>
43
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
44
<!--#include file="_jquery_includes.asp"-->
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, "Debug", "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
            <td>&nbsp;</td>
103
          </tr>
104
            <td></td>
105
            <td>
106
            <%
107
                Dim strName
108
                Response.Write "<pre><br>Form Variables" 
109
                For Each strName in request.form
110
                    Response.Write "<br>  " & strName & ": " & request.form(strName)
111
                Next
112
                Response.Write "<br>String Variables"  
113
                For Each strName in request.querystring
114
                    Response.Write "<br>  " & strName & ": " & request.querystring(strName)
115
                Next
116
                Response.Write "<br>pkgInfoHash Variables"  
117
                For Each strName in pkgInfoHash.keys
118
                    Response.Write "<br>  " & strName & ": " & pkgInfoHash.item(strName) 
119
                Next
120
                Response.Write "</pre>" 
121
            %>
122
            </td>
123
        </table>
124
        <!-- END MIDDLE -------->
125
        </td>
126
    </tr>
127
</table>
128
 
129
<!-- FOOTER -->
130
<!--#include file="_footer.asp"-->
131
</body>
132
</html>