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>
5357 dpurdie 36
<link rel="shortcut icon" href="<%=FavIcon%>"/>
5098 dpurdie 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
<script language="JavaScript" src="scripts/remote_scripting.js"></script>
43
<!--#include file="_jquery_includes.asp"-->
44
<!-- DROPDOWN MENUS -->
45
<!--#include file="_menu_def.asp"-->
46
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
47
</head>
48
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
49
<!-- MENU LAYERS -------------------------------------->
50
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)"> 
51
  <!----------------------------------------------------->
52
</div>
53
<!-- HEADER -->
54
<!--#include file="_header.asp"-->
55
<!-- BODY ---->
56
<table width="100%" border="0" cellspacing="0" cellpadding="0">
57
    <tr> 
58
        <td valign="top" width="1" background="images/bg_bage.gif">
59
        <!-- LEFT -->
60
        <!--#include file="_environment.asp"-->
61
        </td>
62
        <td width="1" bgcolor="#999999"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
63
        <td valign="top" width="100%">
64
        <!-- MIDDLE -->
65
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
66
          <tr>
67
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=35 src="images/spacer.gif" width=15></td>
68
            <td width="100%" background="images/bg_action_norm.gif"><%Call RenderActionBar(parRtag_id,parPv_id)%></td>
69
            <td width="1%" background="images/bg_action_norm.gif"><IMG height=1 src="images/spacer.gif" width=15></td>
70
          </tr>
71
          <tr>
72
            <td background="images/bg_lght_gray.gif"><IMG height="45" src="images/spacer.gif" width=1></td>
73
            <td background="images/bg_lght_gray.gif"><%Call RenderStatus(parRtag_id,parPv_id)%></td>
74
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
75
          </tr>
76
          <tr>
77
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
78
            <td valign="bottom" background="images/bg_lght_gray.gif">
79
              <table width="100" border="0" cellspacing="0" cellpadding="0">
80
                <tr>
81
                  <td><IMG height="1" src="images/spacer.gif" width="0" alt="tab-left-margin" ></td>
82
                  <td>
83
                  <!-- TABS ------------------------------------->
84
                  <%Call Generate_Tab_Menu ( TABarray1, "Debug", "orange" )%>
85
                  </td>
86
                </tr>
87
              </table>
88
            </td>
89
            <td background="images/bg_lght_gray.gif">&nbsp;</td>
90
          </tr>
91
          <tr>
92
            <td background="images/lbox_bg_orange.gif"><IMG height=35 src="images/spacer.gif" width=1></td>
93
            <td background="images/lbox_bg_orange.gif">
94
            <!-- TAB ACTION BUTTONS ------------------------------------->
95
            </td>
96
            <td background="images/lbox_bg_orange.gif">&nbsp;</td>
97
          </tr>
98
          <tr>
99
            <td></td>
100
            <td valign="top">
101
            <td>&nbsp;</td>
102
          </tr>
103
            <td></td>
104
            <td>
105
            <%
106
                Dim strName
107
                Response.Write "<pre><br>Form Variables" 
108
                For Each strName in request.form
109
                    Response.Write "<br>  " & strName & ": " & request.form(strName)
110
                Next
111
                Response.Write "<br>String Variables"  
112
                For Each strName in request.querystring
113
                    Response.Write "<br>  " & strName & ": " & request.querystring(strName)
114
                Next
115
                Response.Write "<br>pkgInfoHash Variables"  
116
                For Each strName in pkgInfoHash.keys
117
                    Response.Write "<br>  " & strName & ": " & pkgInfoHash.item(strName) 
118
                Next
119
                Response.Write "</pre>" 
120
            %>
121
            </td>
122
        </table>
123
        <!-- END MIDDLE -------->
124
        </td>
125
    </tr>
126
</table>
127
 
128
<!-- FOOTER -->
129
<!--#include file="_footer.asp"-->
130
</body>
131
</html>         
132
<%
133
Call Destroy_All_Objects
134
%>