Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
[privoxy.git] / templates / blocked
1 ##########################################################
2 #
3 # "Blocked" Error Output template for Privoxy.
4 #
5 #  NOTE: UNLIKE THE OTHER TEMPLATES, THIS ONE USES
6 #  JavaScript write() TO GENERATE THE PAGE IN JS_AWARE
7 #  BROWSERS. SYMBOL SUBSTITUTIONS THAT RESULT IN MULTILINE
8 #  STRINGS WILL BREAK THE JavaScript SYNTAX.
9 #  USE WITH CAUTION.
10 #
11 # USING HTML TEMPLATES:
12 # ---------------------
13 #
14 # Template files are written in plain HTML, with a few
15 # additions:
16
17 # - Lines that start with a '#' character like this one
18 #   are ignored
19 #
20 # - Each item in the below list of exported symbols will
21 #   be replaced by dynamically generated text, if they
22 #   are enclosed in '@'-characters. E.g. The string @version@
23 #   will be replaced by the version number of Privoxy.
24 #
25 # - One special application of this is to make whole blocks
26 #   of the HTML template disappear if the condition <name>
27 #   is not given. Simply enclose the block between the two
28 #   strings @if-<name>start and if-<name>-end@. The strings
29 #   should be placed in HTML comments (<!-- -->), so the
30 #   html structure won't be messed when the magic happens.
31 #   
32 # USABLE SYMBOLS IN THIS TEMPLATE:
33 # --------------------------------
34 #
35 #  my-ip-addr:
36 #    The IP-address that the client used to reach this proxy
37 #  my-hostname:
38 #    The hostname associated with my-ip-addr
39 #  admin-address:
40 #    The email address of the pxoxy's administrator, as configured
41 #    in the config file
42 #  default-cgi:
43 #    The URL for the "main menu" builtin CGI of this proxy
44 #  menu:
45 #    List of <li> elements linking to the other available CGIs
46 #  version:
47 #    The version number of the proxy software
48 #  code-status:
49 #    The development status of the proxy software: "alpha", "beta",
50 #    or "stable".
51 #  homepage:
52 #    The URL of the SourceForge ijbswa project, who maintains this
53 #    software.
54 #
55 #  protocol:
56 #    The request's protocol: http:// or https://
57 #  hostport:
58 #    The host and port part of the blocked request's URL.
59 #  path:
60 #    The path part of the blocked request's URL.
61 #  path-ue:
62 #    The path part of the blocked request's URL, url-encoded.
63 #
64 #
65 # CONDITIONAL SYMBOLS FOR THIS TEMPLATE AND THEIR DEPANDANT SYMBOLS:
66 # ------------------------------------------------------------------
67 #
68 #  unstable:
69 #    This is an alpha or beta release of the proxy software
70 #  have-adminaddr-info:
71 #    An e-mail address for the local Privoxy adminstrator has
72 #    been specified and is available through the "admin-address"
73 #    symbol
74 #  have-proxy-info:
75 #    A URL for online documentation about this proxy has been
76 #    specified and is available through the "proxy-info-url"
77 #    symbol
78 #  have-help-info:
79 #    If either have-proxy-info is true or have-adminaddr-info is
80 #    true, have-help-info is true.  Used to conditionally include
81 #    a grey box for any and all help info.
82 #  force-support:
83 #    Privoxy has been compiled with support for forced loading
84 #    of blocked content. In that case, the symbol "force-prefix" is
85 #    avaiable, which translates to the FORCE_PREFIX  
86 #
87 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
88 <html>
89  <head>
90   <title>Request blocked (Privoxy@@my-hostname@)</title>
91   <meta http-equiv="Content-Style-Type" content="text/css">
92   <meta http-equiv="Content-Script-Type" content="text/javascript">
93   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
94   <meta name="robots" content="noindex,nofollow">
95   <link rel="stylesheet" type="text/css" href="@default-cgi@send-stylesheet">
96   <script type="text/javascript" language="javascript">
97   <!--
98     /*
99      * Is this window or frame too small
100      * for the full-blown "blocked" page?
101      */
102     function isSmallFrame()
103     {
104        minWidth  = 650;
105        minHeight = 330;
106
107        /* 
108         * Navigator, Mozilla, Opera
109         */
110        if (window.innerWidth 
111            && (window.innerWidth >= minWidth) 
112            && (window.innerHeight >= minHeight))
113        {
114           return false;
115        }
116  
117        /* 
118         * MSIE
119         */
120        else if (document.body && document.body.clientWidth 
121                 && (document.body.clientWidth >= minWidth)
122                 && (document.body.clientHeight >= minHeight))
123        {
124           return false;
125        }
126
127        /*
128         * Small window or unsupported browser
129         */
130        return true;
131    }
132   //-->
133   </script>
134  </head>
135  <body>
136   <script type="text/javascript" language="javascript">
137   <!--
138 #   Note: The same small version is used at the bottom
139 #         of this file in the <noscript> context. If you
140 #         make changes here, keep the other version in sync!
141
142   if (isSmallFrame())
143   {
144      document.write('\
145    <p class="small" align="center"> \
146     <a href="@default-cgi@" target="_blank">Privoxy</a> blocked <b>@protocol@@hostport@@path@</b>. \
147     <br><a href="@default-cgi@show-url-info?url=@hostport@@path-ue@" target="_blank">See why</a> \
148     <!-- @if-force-support-start --> \
149     or <a href="http://@hostport@@force-prefix@@path@">go there anyway</a>. \
150     <!-- if-force-support-end@ --> \
151    </p> \
152    ');
153
154   }
155   else
156   {
157      document.write('\
158   <table cellpadding="20" cellspacing="10" border="0" width="100%">\
159     <tr> \
160       <td class="status"> \
161         BLOCKED \
162       </td> \
163       <td class="title" width=100%> \
164          <h1> \
165           This is <a href="@homepage@">Privoxy</a> @version@ on @my-hostname@ (@my-ip-address@), port @my-port@, \
166           @if-enabled-display-then@enabled@else-not-enabled-display@disabled@endif-enabled-display@ \
167         </h1> \
168       </td> \
169     </tr> \
170  \
171 <!-- @if-unstable-start --> \
172 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in \
173     <tr> \
174       <td class="warning" colspan="2"> \
175         <h2>Warning:</h2> \
176         <p> \
177           <b>Please note that this <font color=red>@code-status@</font> release \
178           of the proxy software is not intended for production systems! \
179           <br>Use at your own risk. See the <a href="http://www.gnu.org/copyleft/gpl.html">license</a> for details.</b> \
180         </p> \
181       </td> \
182     </tr> \
183 <!-- if-unstable-end@ --> \
184  \
185     <tr> \
186       <td class="box" colspan="2"> \
187         <h2>Request for blocked URL</h2> \
188         <p>Your request for <b>@protocol@@hostport@@path@</b> was blocked. \
189           <br><a href="@default-cgi@show-url-info?url=@hostport@@path-ue@">See why</a> \
190     <!-- @if-force-support-start --> \
191           or <a href="http://@hostport@@force-prefix@@path@">go there anyway</a>. \
192 <!-- if-force-support-end@ --> \
193         </p> \
194       </td> \
195     </tr> \
196  \
197     <tr> \
198       <td class="box" colspan="2"> \
199         <h2>More Privoxy:</h2> \
200         <ul>@menu@<li><a href="@user-manual@">Documentation</a></li></ul> \
201       </td> \
202     </tr> \
203  \
204     <tr> \
205       <td class="info" colspan="2"> \
206         <big><b>Support and Service via Sourceforge:</b></big> \
207         <p> \
208           We value your feedback. To provide you with the best support, \
209           we ask that you: \
210         </p> \
211         <ul> \
212           <li> \
213             use the <a href="http://sourceforge.net/tracker/?group_id=11118&amp;atid=211118">support forum</a> or (better) the \
214             <a href="http://sourceforge.net/mail/?group_id=11118">mailing lists</a> to get help. \
215           </li> \
216           <li> \
217             submit banners and all problems with the actions file only through the \
218             <a href="javascript:void(window.open(\'http://www.privoxy.org/actions\',\'Feedback\',\'width=600,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no\').focus());">actions \
219             file feedback system</a>. \
220           </li> \
221           <li> \
222             submit bugs only through our <a href="http://sourceforge.net/tracker/?group_id=11118&amp;atid=111118">bug tracker</a>. \
223             Make sure that the bug has not yet been submitted. \
224           </li> \
225           <li> \
226             submit feature requests only through our <a href="http://sourceforge.net/tracker/?atid=361118&amp;group_id=11118&amp;func=browse">feature \
227             request tracker</a>. \
228           </li> \
229         </ul> \
230       </td> \
231     </tr> \
232  \
233 <!-- @if-have-help-info-start --> \
234     <tr> \
235       <td class="info" colspan="2"> \
236         <h2>Local Privoxy support:</h2> \
237  \
238 <!-- @if-have-proxy-info-start --> \
239         <p>You can consult the <a href="@proxy-info-url@">online documentation</a> for more information about this Privoxy installation.</p> \
240 <!-- if-have-proxy-info-end@ --> \
241  \
242 <!-- @if-have-adminaddr-info-start --> \
243         <p>Address e-mail questions about this service to \
244           <a href="mailto:@admin-address@"><code>@admin-address@</code></a>, \
245           who will be glad to help you. \
246         </p> \
247 <!-- if-have-adminaddr-info-end@ --> \
248       </td> \
249     </tr> \
250 <!-- if-have-help-info-end@ --> \
251  \
252   </table> \
253      ');
254   }
255   //-->
256   </script>
257
258 #   Note: The same small version is used above via JavaScript
259 #         If you make changes here, keep the other version in sync!
260
261   <noscript>
262    <p class="small" align="center">
263     <a href="@default-cgi@" target="_blank">Privoxy</a> blocked <b>@protocol@@hostport@@path@</b>.
264     <br><a href="@default-cgi@show-url-info?url=@hostport@@path-ue@" target="_blank">See why</a>
265     <!-- @if-force-support-start -->
266     or <a href="http://@hostport@@force-prefix@@path@">go there anyway</a>.
267     <!-- if-force-support-end@ -->
268    </p>
269   </noscript>
270
271  </body>
272 </html>