Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
157 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|             msg_firefox_unc_downloading           |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
Response.Expires = 0
12
%>
13
<!--#include file="../common/conf.asp"-->
14
<!--#include file="../common/globals.asp"-->
15
<!--#include file="../common/qstr.asp"-->
16
<!--#include file="../common/common_subs.asp"-->
17
<%
18
'------------ VARIABLE DEFINITION -------------
19
'------------ CONSTANTS DECLARATION -----------
20
'------------ VARIABLE INIT -------------------
21
'------------ CONDITIONS ----------------------
22
'----------------------------------------------
23
%>
24
<%
25
'------------ RUN BEFORE PAGE RENDER ----------
26
'----------------------------------------------
27
%>
28
<html>
29
<head>
30
<title>Release Manager</title>
31
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
32
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
33
<link rel="stylesheet" href="../images/release_manager_style.css" type="text/css">
34
<link rel="stylesheet" href="../images/navigation.css" type="text/css">
35
<script language="JavaScript" src="../images/common.js"></script>
36
</head>
37
 
38
<body leftmargin="0" topmargin="0">
39
<!-- HEADER ++++++++++++++++ -->
40
<!--#include file="_msg_header.asp"-->
41
<!-- +++++++++++++++++++++++ -->
42
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
43
   <tr>
44
      <td align="center" valign="middle">
45
         <table width="650" border="0" cellspacing="0" cellpadding="1">
46
            <tr>
47
               <td background="../images/bg_bage_2.gif">
48
                  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
49
                     <tr>
50
                        <td background="../images/bg_bage_pane.gif">
51
                           <table width="100%" border="0" cellpadding="10" cellspacing="0">
52
                              <form name="form" method="get" action="">
53
                                 <tr>
54
                                    <td width="1%" align="center" valign="top"><img src="../images/i_warning.gif" width="30" height="31"></td>
55
                                    <td width="100%" valign="top">
56
                                       <table width="100%" border="0" cellspacing="0" cellpadding="0">
57
                                          <tr>
58
                                             <td class="msg_ttl">Downloading Build Failure Logs in Firefox</td>
59
                                          </tr>
60
                                          <tr>
61
                                             <td><img src="../images/spacer.gif" width="10" height="30"></td>
62
                                          </tr>
63
                                          <tr>
64
                                             <td class="body_txt">
65
                                                <hr width="100%" size="1" noshade color="#ACA899">
66
                                                When using a Daemon enabled release, failed daemon builds result in build
67
                                                failure logs being stored temporarily on auperaunx26. These logs may be
68
                                                viewed via the Build Status display for the relevant release.
69
                                                <br><br>
70
                                                However, downloading files via a UNC path is a security hazard and Firefox
71
                                                ignores (silently) such links by default. Those using Internet Explorer
72
                                                have no such problem. What can you do about this when using Firefox?
73
                                                <br><br>
74
                                                In the most recent versions of Firefox, by creating a custom security
75
                                                policy, downloading these build failure logs can be enabled.
76
                                                <br><br>
77
                                                To do this, create a user.js file in the Firefox profiles folder. This
78
                                                folder is user specific. Here is an example:
79
                                                <br><br>
80
                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
81
                                                C:\Documents and Settings\username\Application Data\Mozilla\Firefox\Profiles\9bvgcwod.default
82
                                                <br><br>
83
                                                Your folder will be named slightly differently ofcoarse - everyone has
84
                                                their own username, and the prefix of the .default folder may be different.
85
                                                If there is already a user.js file in the folder, simply update it as
86
                                                follows.
87
                                                <br><br>
88
                                                Edit the new/existing user.js file and insert the following 3 lines of text:
89
                                                <br><br>
90
                                                user_pref("capability.policy.policynames", "localfilelinks");<br>
189 brianf 91
                                                user_pref("capability.policy.localfilelinks.sites", "http://bms:8002");<br>
157 ghuddy 92
                                                user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");<br>
93
                                                <br><br>
159 ghuddy 94
                                                This tells Firefox that for certain local UNC file paths,
157 ghuddy 95
                                                it should ignore the security threat and download the file.
96
                                                <br><br>
97
                                                Restart Firefox and downloading ROOT CAUSE files from auperaunx26 should now be allowed.
98
                                             </td>
99
                                          </tr>
100
                                       </table>
101
                                    </td>
102
                                    <td width="1%" valign="top"><img src="../images/spacer.gif" width="1" height="100"></td>
103
                                 </tr>
104
                                 <tr>
105
                                    <td align="center" valign="middle">&nbsp;</td>
106
                                    <td valign="top"><hr width="100%" size="1" noshade>
107
                                       <input name="Reset" type="reset" class="form_btn" value="&laquo; Back" onClick="history.back()">
108
                                    </td>
109
                                    <td valign="top">&nbsp;</td>
110
                                 </tr>
111
                              </form>
112
                           </table>
113
                        </td>
114
                     </tr>
115
                  </table>
116
               </td>
117
            </tr>
118
         </table>
119
      </td>
120
   </tr>
121
</table>
122
 
123
</body>
124
</html>
125
<%
126
'------------ RUN AFTER PAGE RENDER -----------
127
'----------------------------------------------
128
%>
129
<!--#include file="../common/destructor.asp"-->