ccc42520617f433c7f4cccd51568132a1701d0f8
[privoxy.git] / templates / show-status
1 ##########################################################
2 #
3 # Show-Status-CGI Output template for Privoxy.
4 #
5 # USING HTML TEMPLATES:
6 # ---------------------
7 #
8 # Template files are written win plain HTML, with a few
9 # additions:
10
11 # - Lines that start with a '#' character like this one
12 #   are ignored
13 #
14 # - Each item in the below list of exported symbols will
15 #   be replaced by dynamically generated text, if they
16 #   are enclosed in '@'-characters. E.g. The string @version@
17 #   will be replaced by the version number of Privoxy.
18 #
19 # - One special application of this is to make whole blocks
20 #   of the HTML template disappear if the condition <name>
21 #   is not given. Simply enclose the block between the two
22 #   strings @if-<name>start and if-<name>-end@. The strings
23 #   should be placed in HTML comments (<!-- -->), so the
24 #   html structure won't be messed when the magic happens.
25 #   
26 # USABLE SYMBOLS IN THIS TEMPLATE:
27 # --------------------------------
28 #
29 #  my-ip-addr:
30 #    The IP-address that the client used to reach this proxy
31 #  my-hostname:
32 #    The hostname associated with my-ip-addr
33 #  admin-address:
34 #    The email address of the pxoxy's administrator, as configured
35 #    in the config file
36 #  default-cgi:
37 #    The URL for the "main menu" builtin CGI of this proxy
38 #  menu:
39 #    List of <li> elements linking to the other available CGIs
40 #  version:
41 #    The version number of the proxy software
42 #  code-status:
43 #    The development status of the proxy software: "alpha", "beta",
44 #    or "stable".
45 #  homepage:
46 #    The URL of the SourceForge ijbswa project, who maintains this
47 #    software.
48 #
49 #  redirect-url:
50 #    The URL to a script that will redirect to the Privoxy
51 #    documentation for a given item  
52 #  invocation:
53 #    The command line with whitch Privoxy was invoked
54 #  options:
55 #    The options read from the configfile, linked to their
56 #    explanations, plus warnings if parsing acl or forward
57 #    statements produced errors.
58 #  sourceversions:
59 #    A HTML-formatted list of the individual source file cvs versions
60 #  defines:
61 #    A HTML-formatted list of all conditional #defines used when
62 #    Privoxy was compiled
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 #  statistics:
83 #    Privoxy was compiled with statistics support
84 #  have-stats:
85 #    There have been previous requests and statistics have
86 #    been collected. In this case, the following symbols
87 #    are available:
88 #    requests-received:
89 #      The number of requests received so far
90 #    requests-blocked:
91 #      The number of request blocked so far
92 #    percent-blocked:
93 #      The percentage of blocked requests
94 #  have-no-stats:
95 #    There haven't any statistics been collected yet
96 #  pcrs-support:
97 #    Privoxy was compiled with pcrs support
98 #  trust-support:
99 #    Privoxy was compiled with trust support
100 #  actions-filename:
101 #    The path to the actions file.
102 #  re-filter-filename:
103 #    The path to the re_filter file. Only available if
104 #    pcrs-support is set
105 #  trust-filename:
106 #    The path to the trust file.Only available if
107 #    trust-support is set
108 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
109 <html>
110
111 <head>
112   <title>Privoxy@@my-hostname@: Proxy Status</title>
113   <meta http-equiv="Content-Style-Type" content="text/css">
114   <meta http-equiv="Content-Script-Type" content="text/javascript">
115   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
116   <meta name="robots" content="noindex,nofollow">
117   <link rel="stylesheet" type="text/css" href="@default-cgi@send-stylesheet">
118   <style type="text/css">
119     td.cmd {
120       padding: 2px;
121     }
122     td.cmd a {
123       white-space: nowrap;
124       width: auto;
125       padding: 1px;
126       background-color: #dddddd;
127       color:            #000000;
128       text-decoration: none;
129       border-top:    1px solid #ffffff;
130       border-left:   1px solid #ffffff;
131       border-bottom: 1px solid #000000;
132       border-right:  1px solid #000000;
133     }
134     td.cmd a:hover {
135       background-color: #eeeeee;
136     }
137     td.cmd a:active {
138       border-top:    1px solid #000000;
139       border-left:   1px solid #000000;
140       border-bottom: 1px solid #ffffff;
141       border-right:  1px solid #ffffff;
142     }
143
144       
145   </style>
146 </head>
147
148 <body>
149
150   <table cellpadding="20" cellspacing="10" border="0" width="100%">
151     <tr>
152       <td class="title">
153
154 #include mod-title
155
156       </td>
157     </tr>
158
159 <!-- @if-unstable-start -->
160 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in
161     <tr>
162       <td class="warning">
163
164 #include mod-unstable-warning
165
166       </td>
167     </tr>
168 <!-- if-unstable-end@ -->
169
170     <tr>
171       <td class="box">
172         <h2>The following files are in use:</h2>
173         <p>
174           <table class="transparent">
175             <tr>
176               <th colspan="2">Actions Files:</th>
177             </tr>
178               @actions-filenames@
179            <tr>
180               <th colspan="2">Filter File:</th>
181            </tr>
182            <tr>
183              <td>
184                @re-filter-filename@
185              </td>
186              <td class="cmd">
187                <!-- @if-have-filterfile-start -->
188                <a href="show-status?file=filter">View</a>
189                <!-- if-have-filterfile-end@ -->
190              </td>
191            </tr>
192 <!-- @if-trust-support-start -->
193            <tr>
194               <th colspan="2">Trust File:</th>
195            </tr>
196             <td>
197                @trust-filename@
198              </td>
199              <td class="cmd">
200                <!-- @if-have-trustfile-start -->
201                <a href="show-status?file=trust">View</a>
202                <!-- if-have-trustfile-end@ -->
203             </td>
204            </tr>
205 <!-- if-trust-support-end@ -->
206           </table>
207         </p>
208       </td>
209     </tr>
210
211     <tr>
212       <td class="box">
213         <h2>Privoxy was invoked as follows:</h2>
214         <p>@invocation@</p>
215       </td>
216     </tr>
217
218     <tr>
219       <td class="box">
220         <h2>The following options were given in the config file:</h2>
221         <p>@options@</p>
222       </td>
223     </tr>
224
225 <!-- @if-statistics-start -->
226     <tr>
227       <td class="box">
228         <h2>Blocking Statistics:</h2>
229         <p>
230   <!-- @if-have-stats-start -->
231           @requests-blocked@ out of @requests-received@ requests have been blocked,
232           which equals a block rate of @percent-blocked@%.
233 <!-- if-have-stats-end@ -->
234 <!-- @if-have-no-stats-start -->
235           There haven't been any requests so far.
236 <!-- if-have-no-stats-end@ -->
237         </p>                                   
238       </td>
239     </tr>
240 <!-- if-statistics-end@ -->
241
242     <tr>
243       <td class="box">
244         <h2>Conditional #defines:</h2>
245         <p>
246           <table border="1" style="margin-left: 10px">
247             <tr> 
248               <th>#define</th> <th>Enabled?</th> <th>Effects when enabled</th>
249             </tr>
250             <tr>
251               <td><code>FEATURE_ACL</code></td>
252               <td>@if-FEATURE_ACL-then@ Yes @else-not-FEATURE_ACL@ No @endif-FEATURE_ACL@</td>
253               <td>Allows the use of an ACL to control access to the proxy by IP address.</td>
254             </tr>
255             <tr>
256               <td><code>FEATURE_CGI_EDIT_ACTIONS</code></td>
257               <td>@if-FEATURE_CGI_EDIT_ACTIONS-then@ Yes @else-not-FEATURE_CGI_EDIT_ACTIONS@ No @endif-FEATURE_CGI_EDIT_ACTIONS@</td>
258               <td>Allows the use of the web-based actions file 
259                  editor@if-FEATURE_CGI_EDIT_ACTIONS-then@, which is <a href="@default-cgi@edit-actions">here</a>@else-not-FEATURE_CGI_EDIT_ACTIONS@@endif-FEATURE_CGI_EDIT_ACTIONS@.</td>
260             </tr>
261             <tr>
262               <td><code>FEATURE_COOKIE_JAR</code></td>
263               <td>@if-FEATURE_COOKIE_JAR-then@ Yes @else-not-FEATURE_COOKIE_JAR@ No @endif-FEATURE_COOKIE_JAR@</td>
264               <td>Allows the use of a "cookie jar" file to capture cookies.</td>
265             </tr>
266             <tr>
267               <td><code>FEATURE_FAST_REDIRECTS</code></td>
268               <td>@if-FEATURE_FAST_REDIRECTS-then@ Yes @else-not-FEATURE_FAST_REDIRECTS@ No @endif-FEATURE_FAST_REDIRECTS@</td>
269               <td>Allows the +fast-redirects action, to bypass redirect and logging scripts.</td>
270             </tr>
271             <tr>
272               <td><code>FEATURE_FORCE_LOAD</code></td>
273               <td>@if-FEATURE_FORCE_LOAD-then@ Yes @else-not-FEATURE_FORCE_LOAD@ No @endif-FEATURE_FORCE_LOAD@</td>
274               <td>Allows bypassing all filtering for a single page using the prefix "<code>@FORCE_PREFIX@</code>".</td>
275             </tr>
276             <tr>
277               <td><code>FEATURE_IMAGE_BLOCKING</code></td>
278               <td>@if-FEATURE_IMAGE_BLOCKING-then@ Yes @else-not-FEATURE_IMAGE_BLOCKING@ No @endif-FEATURE_IMAGE_BLOCKING@</td>
279               <td>Allows the +image ation, to send "blocked" images instead of HTML.</td>
280             </tr>
281             <tr>
282               <td><code>FEATURE_IMAGE_DETECT_MSIE</code></td>
283               <td>@if-FEATURE_IMAGE_DETECT_MSIE-then@ Yes @else-not-FEATURE_IMAGE_DETECT_MSIE@ No @endif-FEATURE_IMAGE_DETECT_MSIE@</td>
284               <td>Enables automatic detection of image and HTML requests from
285                Microsoft Internet Explorer users, overriding the setting of 
286                +image in the actions file.</td>
287             </tr>
288             <tr>
289               <td><code>FEATURE_KILL_POPUPS</code></td>
290               <td>@if-FEATURE_KILL_POPUPS-then@ Yes @else-not-FEATURE_KILL_POPUPS@ No @endif-FEATURE_KILL_POPUPS@</td>
291               <td>Allows the +no-popups action, to block JavaScript popups.</td>
292             </tr>
293             <tr>
294               <td><code>FEATURE_NO_GIFS</code></td>
295               <td>@if-FEATURE_NO_GIFS-then@ Yes @else-not-FEATURE_NO_GIFS@ No @endif-FEATURE_NO_GIFS@</td>
296               <td>Use PNG instead of GIF for the built-in images.</td>
297             </tr>
298             <tr>
299               <td><code>FEATURE_PTHREAD</code></td>
300               <td>@if-FEATURE_PTHREAD-then@ Yes @else-not-FEATURE_PTHREAD@ No @endif-FEATURE_PTHREAD@</td>
301               <td>Use POSIX threads rather than native threads</td>
302             </tr>
303             <tr>
304               <td><code>FEATURE_STATISTICS</code></td>
305               <td>@if-FEATURE_STATISTICS-then@ Yes @else-not-FEATURE_STATISTICS@ No @endif-FEATURE_STATISTICS@</td>
306               <td>Enables the statistics function.</td>
307             </tr>
308             <tr>
309               <td><code>FEATURE_TOGGLE</code></td>
310               <td>@if-FEATURE_TOGGLE-then@ Yes @else-not-FEATURE_TOGGLE@ No @endif-FEATURE_TOGGLE@</td>
311               <td>Allow Privoxy to be "disabled" so it is just a normal non-blocking non-anonymizing proxy.</td>
312             </tr>
313             <tr>
314               <td><code>FEATURE_TRUST</code></td>
315               <td>@if-FEATURE_TRUST-then@ Yes @else-not-FEATURE_TRUST@ No @endif-FEATURE_TRUST@</td>
316               <td>Allows the use of trust files.</td>
317             </tr>
318             <tr>
319               <td><code>STATIC_PCRE</code></td>
320               <td>@if-STATIC_PCRE-then@ Yes @else-not-STATIC_PCRE@ No @endif-STATIC_PCRE@</td>
321               <td>Use the supplied statically-linked PCRE library.  This is set automatically
322                by <code>./configure</code> if you do not have the libpcre installed.</td>
323             </tr>
324             <tr>
325               <td><code>STATIC_PCRS</code></td>
326               <td>@if-STATIC_PCRS-then@ Yes @else-not-STATIC_PCRS@ No @endif-STATIC_PCRS@</td>
327               <td>Use the supplied statically-linked PCRS library.  This is set automatically
328                by <code>./configure</code> if you do not have the libpcrs installed.</td>
329             </tr>
330           </table>
331         </p>
332       </td>
333     </tr>
334
335     <tr>
336       <td class="box">
337         <h2>More Privoxy:</h2>
338         <ul>@menu@</ul>
339       </td>
340     </tr>
341
342     <tr>
343       <td class="info">
344
345 #include mod-support-and-service
346
347       </td>
348     </tr>
349
350 <!-- @if-have-help-info-start -->
351     <tr>
352       <td class="info">
353
354 #include mod-local-help
355
356       </td>
357     </tr>
358 <!-- if-have-help-info-end@ -->
359
360      <tr>
361       <td>
362         <p class="small">Valid <a href="http://validator.w3.org/">HTML 4.01 Strict</a></p>
363       </td>
364     </tr>   
365   </table>
366
367 </body>
368 </html>