Made templates modular
[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 </head>
119
120 <body>
121
122   <table cellpadding="20" cellspacing="10" border="0" width="100%">
123     <tr>
124       <td class="title">
125
126 #include mod-title
127
128       </td>
129     </tr>
130
131 <!-- @if-unstable-start -->
132 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in
133     <tr>
134       <td class="warning">
135
136 #include mod-unstable-warning
137
138       </td>
139     </tr>
140 <!-- if-unstable-end@ -->
141
142     <tr>
143       <td class="box">
144         <h2>The program was invoked as follows</h2>
145         <p>@invocation@</p>
146       </td>
147     </tr>
148
149     <tr>
150       <td class="box">
151         <h2>The following options were given in the config file:</h2>
152         <p>@options@</p>
153       </td>
154     </tr>
155
156 <!-- @if-statistics-start -->
157     <tr>
158       <td class="box">
159         <h2>Blocking Statistics:</h2>
160         <p>
161   <!-- @if-have-stats-start -->
162           @requests-blocked@ out of @requests-received@ requests have been blocked,
163           which equals a block rate of @percent-blocked@%.
164 <!-- if-have-stats-end@ -->
165 <!-- @if-have-no-stats-start -->
166           There haven't been any requests so far.
167 <!-- if-have-no-stats-end@ -->
168         </p>                                   
169       </td>
170     </tr>
171 <!-- if-statistics-end@ -->
172
173     <tr>
174       <td class="box">
175         <h2>The following files are in use:</h2>
176         <p>Click a filename to browse</p>
177         <ul>
178           <li>Actions List: <a href="show-status?file=permit">@actions-filename@</a></li>
179 <!-- @if-pcrs-support-start -->
180           <li>Regex Filter List: <a href="show-status?file=re">@re-filter-filename@</a></li>
181 <!-- if-pcrs-support-end@ -->
182 <!-- @if-trust-support-start -->
183           <li>Trust List: <a href="show-status?file=trust">@trust-filename@</a></li>
184 <!-- if-trust-support-end@ -->
185         </ul>
186       </td>
187     </tr>
188
189     <tr>
190       <td class="box">
191         <h2>Conditional #defines:</h2>
192         <p>
193           <table border="1" style="margin-left: 10px">
194             <tr> 
195               <th>#define</th> <th>Enabled?</th> <th>Effects when enabled</th>
196             </tr>
197             <tr>
198               <td><code>FEATURE_ACL</code></td>
199               <td>@if-FEATURE_ACL-then@ Yes @else-not-FEATURE_ACL@ No @endif-FEATURE_ACL@</td>
200               <td>Allows the use of an ACL to control access to the proxy by IP address.</td>
201             </tr>
202             <tr>
203               <td><code>FEATURE_CGI_EDIT_ACTIONS</code></td>
204               <td>@if-FEATURE_CGI_EDIT_ACTIONS-then@ Yes @else-not-FEATURE_CGI_EDIT_ACTIONS@ No @endif-FEATURE_CGI_EDIT_ACTIONS@</td>
205               <td>Allows the use of the web-based actions file 
206                  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>
207             </tr>
208             <tr>
209               <td><code>FEATURE_COOKIE_JAR</code></td>
210               <td>@if-FEATURE_COOKIE_JAR-then@ Yes @else-not-FEATURE_COOKIE_JAR@ No @endif-FEATURE_COOKIE_JAR@</td>
211               <td>Allows the use of a "cookie jar" file to capture cookies.</td>
212             </tr>
213             <tr>
214               <td><code>FEATURE_FAST_REDIRECTS</code></td>
215               <td>@if-FEATURE_FAST_REDIRECTS-then@ Yes @else-not-FEATURE_FAST_REDIRECTS@ No @endif-FEATURE_FAST_REDIRECTS@</td>
216               <td>Allows the +fast-redirects action, to bypass redirect and logging scripts.</td>
217             </tr>
218             <tr>
219               <td><code>FEATURE_FORCE_LOAD</code></td>
220               <td>@if-FEATURE_FORCE_LOAD-then@ Yes @else-not-FEATURE_FORCE_LOAD@ No @endif-FEATURE_FORCE_LOAD@</td>
221               <td>Allows bypassing all filtering for a single page using the prefix "<code>@FORCE_PREFIX@</code>".</td>
222             </tr>
223             <tr>
224               <td><code>FEATURE_IMAGE_BLOCKING</code></td>
225               <td>@if-FEATURE_IMAGE_BLOCKING-then@ Yes @else-not-FEATURE_IMAGE_BLOCKING@ No @endif-FEATURE_IMAGE_BLOCKING@</td>
226               <td>Allows the +image ation, to send "blocked" images instead of HTML.</td>
227             </tr>
228             <tr>
229               <td><code>FEATURE_IMAGE_DETECT_MSIE</code></td>
230               <td>@if-FEATURE_IMAGE_DETECT_MSIE-then@ Yes @else-not-FEATURE_IMAGE_DETECT_MSIE@ No @endif-FEATURE_IMAGE_DETECT_MSIE@</td>
231               <td>Enables automatic detection of image and HTML requests from
232                Microsoft Internet Explorer users, overriding the setting of 
233                +image in the actions file.</td>
234             </tr>
235             <tr>
236               <td><code>FEATURE_KILL_POPUPS</code></td>
237               <td>@if-FEATURE_KILL_POPUPS-then@ Yes @else-not-FEATURE_KILL_POPUPS@ No @endif-FEATURE_KILL_POPUPS@</td>
238               <td>Allows the +no-popups action, to block JavaScript popups.</td>
239             </tr>
240             <tr>
241               <td><code>FEATURE_NO_GIFS</code></td>
242               <td>@if-FEATURE_NO_GIFS-then@ Yes @else-not-FEATURE_NO_GIFS@ No @endif-FEATURE_NO_GIFS@</td>
243               <td>Use PNG instead of GIF for the built-in images.</td>
244             </tr>
245             <tr>
246               <td><code>FEATURE_PTHREAD</code></td>
247               <td>@if-FEATURE_PTHREAD-then@ Yes @else-not-FEATURE_PTHREAD@ No @endif-FEATURE_PTHREAD@</td>
248               <td>Use POSIX threads rather than native threads</td>
249             </tr>
250             <tr>
251               <td><code>FEATURE_STATISTICS</code></td>
252               <td>@if-FEATURE_STATISTICS-then@ Yes @else-not-FEATURE_STATISTICS@ No @endif-FEATURE_STATISTICS@</td>
253               <td>Enables the statistics function.</td>
254             </tr>
255             <tr>
256               <td><code>FEATURE_TOGGLE</code></td>
257               <td>@if-FEATURE_TOGGLE-then@ Yes @else-not-FEATURE_TOGGLE@ No @endif-FEATURE_TOGGLE@</td>
258               <td>Allow Privoxy to be "disabled" so it is just a normal non-blocking non-anonymizing proxy.</td>
259             </tr>
260             <tr>
261               <td><code>FEATURE_TRUST</code></td>
262               <td>@if-FEATURE_TRUST-then@ Yes @else-not-FEATURE_TRUST@ No @endif-FEATURE_TRUST@</td>
263               <td>Allows the use of trust files.</td>
264             </tr>
265             <tr>
266               <td><code>STATIC_PCRE</code></td>
267               <td>@if-STATIC_PCRE-then@ Yes @else-not-STATIC_PCRE@ No @endif-STATIC_PCRE@</td>
268               <td>Use the supplied statically-linked PCRE library.  This is set automatically
269                by <code>./configure</code> if you do not have the libpcre installed.</td>
270             </tr>
271             <tr>
272               <td><code>STATIC_PCRS</code></td>
273               <td>@if-STATIC_PCRS-then@ Yes @else-not-STATIC_PCRS@ No @endif-STATIC_PCRS@</td>
274               <td>Use the supplied statically-linked PCRS library.  This is set automatically
275                by <code>./configure</code> if you do not have the libpcrs installed.</td>
276             </tr>
277           </table>
278         </p>
279       </td>
280     </tr>
281
282     <tr>
283       <td class="box">
284         <h2>More Privoxy:</h2>
285         <ul>@menu@</ul>
286       </td>
287     </tr>
288
289     <tr>
290       <td class="info">
291
292 #include mod-support-and-service
293
294       </td>
295     </tr>
296
297 <!-- @if-have-help-info-start -->
298     <tr>
299       <td class="info">
300
301 #include mod-local-help
302
303       </td>
304     </tr>
305 <!-- if-have-help-info-end@ -->
306
307      <tr>
308       <td>
309         <p class="small">Valid <a href="http://validator.w3.org/">HTML 4.01 Strict</a></p>
310       </td>
311     </tr>   
312   </table>
313
314 </body>
315 </html>