Add FEATURE_ZLIB to the list of conditional
[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 Privoxy
31 #  my-hostname:
32 #    The hostname associated with my-ip-addr
33 #  admin-address:
34 #    The email address of the Privoxy administrator, as configured
35 #    in the config file
36 #  default-cgi:
37 #    The URL for the "main menu" builtin CGI of Privoxy
38 #  menu:
39 #    List of <li> elements linking to the other available CGIs
40 #  version:
41 #    The Privoxy version number
42 #  code-status:
43 #    The Privoxy development status: "alpha", "beta", or "stable".
44 #  homepage:
45 #    The URL of the SourceForge ijbswa project, who maintains this
46 #    software.
47 #
48 #  redirect-url:
49 #    The URL to a script that will redirect to the Privoxy
50 #    documentation for a given item  
51 #  invocation:
52 #    The command line with which Privoxy was invoked
53 #  options:
54 #    The options read from the configfile, linked to their
55 #    explanations, plus warnings if parsing acl or forward
56 #    statements produced errors.
57 #  sourceversions:
58 #    A HTML-formatted list of the individual source file cvs versions
59 #  defines:
60 #    A HTML-formatted list of all conditional #defines used when
61 #    Privoxy was compiled
62 #
63 #  
64 # CONDITIONAL SYMBOLS FOR THIS TEMPLATE AND THEIR DEPANDANT SYMBOLS:
65 # ------------------------------------------------------------------
66 #
67 #  unstable:
68 #    This is an alpha or beta Privoxy release
69 #  have-adminaddr-info:
70 #    An e-mail address for the local Privoxy adminstrator has
71 #    been specified and is available through the "admin-address"
72 #    symbol
73 #  have-proxy-info:
74 #    A URL for Privoxy's online documentation has been
75 #    specified and is available through the "proxy-info-url"
76 #    symbol
77 #  have-help-info:
78 #    If either have-proxy-info is true or have-adminaddr-info is
79 #    true, have-help-info is true.  Used to conditionally include
80 #    a grey box for any and all help info.
81 #  statistics:
82 #    Privoxy was compiled with statistics support
83 #  have-stats:
84 #    There have been previous requests and statistics have
85 #    been collected. In this case, the following symbols
86 #    are available:
87 #    requests-received:
88 #      The number of requests received so far
89 #    requests-blocked:
90 #      The number of request blocked so far
91 #    percent-blocked:
92 #      The percentage of blocked requests
93 #  have-no-stats:
94 #    There haven't any statistics been collected yet
95 #  pcrs-support:
96 #    Privoxy was compiled with pcrs support
97 #  trust-support:
98 #    Privoxy was compiled with trust support
99 #  actions-filenames:
100 #    The path to the actions files.
101 #  re-filter-filenames:
102 #    The path to the re_filter files. Only available if
103 #    pcrs-support is set
104 #  trust-filename:
105 #    The path to the trust file. Only available if
106 #    trust-support is set
107 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
108 <html>
109
110 <head>
111   <title>Privoxy@@my-hostname@: Proxy Status</title>
112   <meta http-equiv="Content-Style-Type" content="text/css">
113   <meta http-equiv="Content-Script-Type" content="text/javascript">
114   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
115   <meta name="robots" content="noindex,nofollow">
116   <link rel="stylesheet" type="text/css" href="@default-cgi@send-stylesheet">
117 </head>
118
119 <body>
120
121   <table summary="" cellpadding="20" cellspacing="10" border="0" width="100%">
122     <tr>
123       <td class="title">
124
125 #include mod-title
126
127       </td>
128     </tr>
129
130 <!-- @if-unstable-start -->
131 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in
132     <tr>
133       <td class="warning">
134
135 #include mod-unstable-warning
136
137       </td>
138     </tr>
139 <!-- if-unstable-end@ -->
140
141     <tr>
142       <td class="box">
143         <h2>The following files are in use:</h2>
144         <table summary="Action, filter and trust files in use." class="transparent">
145           <tr>
146             <th colspan="2"><a href="@user-manual@@actions-help-prefix@ACTIONS-FILE">Actions Files:</a></th>
147           </tr>
148             @actions-filenames@
149           <tr>
150             <th colspan="2"><a href="@user-manual@filter-file.html">Filter Files:</a></th>
151           </tr>
152             @re-filter-filenames@
153 <!-- @if-trust-support-start -->
154           <tr>
155             <th colspan="2"><a href="@user-manual@config.html#TRUSTFILE">Trust File:</a></th>
156           </tr>
157           <tr>
158             <td>
159               @trust-filename@
160             </td>
161             <td class="buttons">
162               <!-- @if-have-trustfile-start -->
163               <a href="show-status?file=trust">View</a>
164               <!-- if-have-trustfile-end@ -->
165             </td>
166           </tr>
167 <!-- if-trust-support-end@ -->
168         </table>
169       </td>
170     </tr>
171
172     <tr>
173       <td class="box">
174         <h2>Privoxy was <a href="@user-manual@startup.html#CMDOPTIONS">invoked</a> as follows:</h2>
175         <p>@invocation@</p>
176       </td>
177     </tr>
178
179     <tr>
180       <td class="box">
181         <h2>The following options were given in the <a href="@user-manual@config.html">config file</a>:</h2>
182         <p>@options@</p>
183       </td>
184     </tr>
185
186 <!-- @if-statistics-start -->
187     <tr>
188       <td class="box">
189         <h2>Blocking Statistics:</h2>
190         <p>
191   <!-- @if-have-stats-start -->
192           @requests-blocked@ out of @requests-received@ requests have been blocked,
193           which equals a block rate of @percent-blocked@%.
194 <!-- if-have-stats-end@ -->
195 <!-- @if-have-no-stats-start -->
196           There haven't been any requests so far.
197 <!-- if-have-no-stats-end@ -->
198         </p>                                   
199       </td>
200     </tr>
201 <!-- if-statistics-end@ -->
202
203     <tr>
204       <td class="box">
205         <h2>Conditional #defines:</h2>
206           <table summary="The state of some ./configure options and what they do." border="1" style="margin-left: 10px">
207             <tr> 
208               <th>#define</th> <th>Enabled?</th> <th>Effects when enabled</th>
209             </tr>
210             <tr>
211               <td><code>FEATURE_ACL</code></td>
212               <td>@if-FEATURE_ACL-then@ Yes @else-not-FEATURE_ACL@ No @endif-FEATURE_ACL@</td>
213               <td>Allows the use of an ACL to control access to Privoxy by IP address.</td>
214             </tr>
215             <tr>
216               <td><code>FEATURE_CGI_EDIT_ACTIONS</code></td>
217               <td>@if-FEATURE_CGI_EDIT_ACTIONS-then@ Yes @else-not-FEATURE_CGI_EDIT_ACTIONS@ No @endif-FEATURE_CGI_EDIT_ACTIONS@</td>
218               <td>Allows the use of the @if-FEATURE_CGI_EDIT_ACTIONS-then@<a
219                  href="@default-cgi@edit-actions">@else-not-FEATURE_CGI_EDIT_ACTIONS@
220                  @endif-FEATURE_CGI_EDIT_ACTIONS@web-based actions file
221                  editor@if-FEATURE_CGI_EDIT_ACTIONS-then@</a>@else-not-FEATURE_CGI_EDIT_ACTIONS@@endif-FEATURE_CGI_EDIT_ACTIONS@.</td>
222             </tr>
223             <tr>
224               <td><code>FEATURE_COOKIE_JAR</code></td>
225               <td>@if-FEATURE_COOKIE_JAR-then@ Yes @else-not-FEATURE_COOKIE_JAR@ No @endif-FEATURE_COOKIE_JAR@</td>
226               <td>Allows the use of a <q>cookie jar</q> file to capture cookies.</td>
227             </tr>
228             <tr>
229               <td><code>FEATURE_FAST_REDIRECTS</code></td>
230               <td>@if-FEATURE_FAST_REDIRECTS-then@ Yes @else-not-FEATURE_FAST_REDIRECTS@ No @endif-FEATURE_FAST_REDIRECTS@</td>
231               <td>Allows the +fast-redirects action, to bypass redirect and logging scripts.</td>
232             </tr>
233             <tr>
234               <td><code>FEATURE_FORCE_LOAD</code></td>
235               <td>@if-FEATURE_FORCE_LOAD-then@ Yes @else-not-FEATURE_FORCE_LOAD@ No @endif-FEATURE_FORCE_LOAD@</td>
236               <td>Allows bypassing all filtering for a single page using the prefix
237                   <q><code>@FORCE_PREFIX@</code></q>.</td>
238             </tr>
239             <tr>
240               <td><code>FEATURE_GRACEFUL_TERMINATION</code></td>
241               <td>@if-FEATURE_GRACEFUL_TERMINATION-then@ Yes @else-not-FEATURE_GRACEFUL_TERMINATION@ No @endif-FEATURE_GRACEFUL_TERMINATION@</td>
242               <td>Allows to shutdown Privoxy through the web interface.</td>
243             </tr>
244             <tr>
245               <td><code>FEATURE_IMAGE_BLOCKING</code></td>
246               <td>@if-FEATURE_IMAGE_BLOCKING-then@ Yes @else-not-FEATURE_IMAGE_BLOCKING@ No @endif-FEATURE_IMAGE_BLOCKING@</td>
247               <td>Allows the +image action, to send <q>blocked</q> images instead of HTML.</td>
248             </tr>
249             <tr>
250               <td><code>FEATURE_IMAGE_DETECT_MSIE</code></td>
251               <td>@if-FEATURE_IMAGE_DETECT_MSIE-then@ Yes @else-not-FEATURE_IMAGE_DETECT_MSIE@ No @endif-FEATURE_IMAGE_DETECT_MSIE@</td>
252               <td>Enables automatic detection of image and HTML requests from
253                Microsoft Internet Explorer users, overriding the setting of 
254                +image in the actions file.</td>
255             </tr>
256             <tr>
257               <td><code>FEATURE_KILL_POPUPS</code></td>
258               <td>@if-FEATURE_KILL_POPUPS-then@ Yes @else-not-FEATURE_KILL_POPUPS@ No @endif-FEATURE_KILL_POPUPS@</td>
259               <td>Allows the +no-popups action, to block JavaScript popups.</td>
260             </tr>
261             <tr>
262               <td><code>FEATURE_NO_GIFS</code></td>
263               <td>@if-FEATURE_NO_GIFS-then@ Yes @else-not-FEATURE_NO_GIFS@ No @endif-FEATURE_NO_GIFS@</td>
264               <td>Use PNG instead of GIF for the built-in images.</td>
265             </tr>
266             <tr>
267               <td><code>FEATURE_PTHREAD</code></td>
268               <td>@if-FEATURE_PTHREAD-then@ Yes @else-not-FEATURE_PTHREAD@ No @endif-FEATURE_PTHREAD@</td>
269               <td>Use POSIX threads rather than native threads</td>
270             </tr>
271             <tr>
272               <td><code>FEATURE_STATISTICS</code></td>
273               <td>@if-FEATURE_STATISTICS-then@ Yes @else-not-FEATURE_STATISTICS@ No @endif-FEATURE_STATISTICS@</td>
274               <td>Enables the statistics function.</td>
275             </tr>
276             <tr>
277               <td><code>FEATURE_TOGGLE</code></td>
278               <td>@if-FEATURE_TOGGLE-then@ Yes @else-not-FEATURE_TOGGLE@ No @endif-FEATURE_TOGGLE@</td>
279               <td>Allow Privoxy to be <q>disabled</q> so it is just a normal non-blocking non-anonymizing proxy.</td>
280             </tr>
281             <tr>
282               <td><code>FEATURE_TRUST</code></td>
283               <td>@if-FEATURE_TRUST-then@ Yes @else-not-FEATURE_TRUST@ No @endif-FEATURE_TRUST@</td>
284               <td>Allows the use of trust files.</td>
285             </tr>
286             <tr>
287               <td><code>FEATURE_ZLIB</code></td>
288               <td>@if-FEATURE_ZLIB-then@ Yes @else-not-FEATURE_ZLIB@ No @endif-FEATURE_ZLIB@</td>
289               <td>Allows to decompress gzip and zlib compressed documents for filtering.
290                 Requires external zlib library and hasn't been tested on all platforms.</td>
291             </tr>
292             <tr>
293               <td><code>STATIC_PCRE</code></td>
294               <td>@if-STATIC_PCRE-then@ Yes @else-not-STATIC_PCRE@ No @endif-STATIC_PCRE@</td>
295               <td>Use the supplied statically-linked PCRE library.  This is set automatically
296                by <code>./configure</code> if you do not have the libpcre installed.</td>
297             </tr>
298             <tr>
299               <td><code>STATIC_PCRS</code></td>
300               <td>@if-STATIC_PCRS-then@ Yes @else-not-STATIC_PCRS@ No @endif-STATIC_PCRS@</td>
301               <td>Use the supplied statically-linked PCRS library.  This is set automatically
302                by <code>./configure</code> if you do not have the libpcrs installed.</td>
303             </tr>
304           </table>
305       </td>
306     </tr>
307
308     <tr>
309       <td class="box">
310         <h2>More Privoxy:</h2>
311         <ul>@menu@<li><a href="@user-manual@">Documentation</a></li></ul>
312       </td>
313     </tr>
314
315     <tr>
316       <td class="info">
317
318 #include mod-support-and-service
319
320       </td>
321     </tr>
322
323 <!-- @if-have-help-info-start -->
324     <tr>
325       <td class="info">
326
327 #include mod-local-help
328
329       </td>
330     </tr>
331 <!-- if-have-help-info-end@ -->
332
333   </table>
334
335 </body>
336 </html>