Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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