207b43bf61e1c9e4d4f36a3b2f89d7b6ed40d4b2
[privoxy.git] / templates / untrusted
1 ##########################################################
2 #
3 # "Untrusted" Error Output template for Privoxy.
4 #
5 #
6 # USING HTML TEMPLATES:
7 # ---------------------
8 #
9 # Template files are written win plain HTML, with a few
10 # additions:
11
12 # - Lines that start with a '#' character like this one
13 #   are ignored
14 #
15 # - Each item in the below list of exported symbols will
16 #   be replaced by dynamically generated text, if they
17 #   are enclosed in '@'-characters. E.g. The string @version@
18 #   will be replaced by the version number of Privoxy.
19 #
20 # - One special application of this is to make whole blocks
21 #   of the HTML template disappear if the condition <name>
22 #   is not given. Simply enclose the block between the two
23 #   strings @if-<name>start and if-<name>-end@. The strings
24 #   should be placed in HTML comments (<!-- -->), so the
25 #   html structure won't be messed when the magic happens.
26 #   
27 # USABLE SYMBOLS IN THIS TEMPLATE:
28 # --------------------------------
29 #
30 #  my-ip-addr:
31 #    The IP-address that the client used to reach this proxy
32 #  my-hostname:
33 #    The hostname associated with my-ip-addr
34 #  admin-address:
35 #    The email address of the pxoxy's administrator, as configured
36 #    in the config file
37 #  default-cgi:
38 #    The URL for the "main menu" builtin CGI of this proxy
39 #  menu:
40 #    List of 
41          <li> elements linking to the other available CGIs
42 #  version:
43 #    The version number of the proxy software
44 #  code-status:
45 #    The development status of the proxy software: "alpha", "beta",
46 #    or "stable".
47 #  homepage:
48 #    The URL of the SourceForge ijbswa project, who maintains this
49 #    software.
50 #
51 #  hostport:
52 #    The host and port part of the request that lead to this problem
53 #  path:
54 #    The path part of the request that lead to this problem
55 #  referrer:
56 #    The referrer of the request that lead to this problem
57 #  trusted-referrers:
58 #    An HTML-formatted list of referrers that are marked as trusted in
59 #    the trustfile
60 #
61 #
62 # CONDITIONAL SYMBOLS FOR THIS TEMPLATE AND THEIR DEPANDANT SYMBOLS:
63 # ------------------------------------------------------------------
64 #
65 #  unstable:
66 #    This is an alpha or beta release of the proxy software
67 #  have-adminaddr-info:
68 #    An e-mail address for the local Privoxy adminstrator has
69 #    been specified and is available through the "admin-address"
70 #    symbol
71 #  have-proxy-info:
72 #    A URL for online documentation about this proxy has been
73 #    specified and is available through the "proxy-info-url"
74 #    symbol
75 #  have-help-info:
76 #    If either have-proxy-info is true or have-adminaddr-info is
77 #    true, have-help-info is true.  Used to conditionally include
78 #    a grey box for any and all help info.
79 #  force-support:
80 #    Privoxy has been compiled with support for forced loading
81 #    of blocked content. In that case, the symbol "force-prefix" is
82 #    avaiable, which translates to the FORCE_PREFIX  
83 #  have-trust-info:
84 #    There were URLs with info on the trust policy defined in the config
85 #    file. In this case the list of URLs is available through the
86 #    "trust-info" symbol.
87 #
88 #
89 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>
90
91 <head>
92   <title>Untrusted request (Privoxy@@my-hostname@)</title>
93   <meta http-equiv="Content-Style-Type" content="text/css">
94   <meta http-equiv="Content-Script-Type" content="text/javascript">
95   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
96   <meta name="robots" content="noindex,nofollow">
97   <link rel="stylesheet" type="text/css" href="@default-cgi@send-stylesheet">
98 </head>
99
100 <body>
101
102   <table cellpadding="20" cellspacing="10" border="0" width="100%">
103     <tr>
104       <td class="status">
105         UNTRUSTED
106       </td>
107       <td class="title" style="width: 100%">
108  
109 #include mod-title
110  
111       </td>
112     </tr>
113
114 <!-- @if-unstable-start -->
115 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in
116     <tr>
117       <td class="warning" colspan="2">
118
119 #include mod-unstable-warning
120
121       </td>
122     </tr>
123 <!-- if-unstable-end@ -->
124
125     <tr>
126       <td class="warning" colspan="2">
127         <h2>Request for untrusted URL</h2>
128         <p>Your request for <b>@protocol@@hostport@@path@</b> was blocked,
129           because neither the request URL itself, nor its referrer
130           (<a href="@referrer@">@referrer@</a>) were trusted.
131         </p>
132 <!-- @if-force-support-start -->
133         <p>(You can <a href="@protocol@@hostport@@force-prefix@@path@">go there anyway</a>.)</p>
134 <!-- if-force-support-end@ -->
135       </td>
136     </tr>
137
138     <tr>
139       <td class="box" colspan="2">
140         <h2>The following referrers are trusted:</h2>
141         <ul>
142           @trusted-referrers@
143         
144         </ul>
145       </td>
146     </tr>
147
148 <!-- @if-have-trust-info-start -->
149     <tr>
150       <td class="box" colspan="2">
151         <h2>More information on the trust policy:</h2>
152         <p>You can learn more about what this means and what you may be able to do about it by
153           reading the following documents:
154         </p>
155         <ol>
156             @trust-info@
157         </ol>
158       </td>
159     </tr>
160 <!-- if-have-trust-info-end@ -->
161
162     <tr>
163       <td class="box" colspan="2">
164         <h2>More Privoxy:</h2>
165         <ul>@menu@
166          <li><a href="@user-manual@">Documentation</a></li>
167         </ul>
168       </td>
169     </tr>
170
171     <tr>
172       <td class="info" colspan="2">
173
174 #include mod-support-and-service
175
176       </td>
177     </tr>
178
179 <!-- @if-have-help-info-start -->
180     <tr>
181       <td class="info" colspan="2">
182
183 #include mod-local-help
184
185       </td>
186     </tr>
187 <!-- if-have-help-info-end@ -->
188         
189     <tr>
190       <td colspan="2">
191         <p class="small">Valid <a href="http://validator.w3.org/">HTML 4.01 Strict</a></p>
192       </td>
193     </tr>
194
195   </table>
196
197 </body>
198 </html>