Miniscule English edits on template HTML
[privoxy.git] / templates / show-version
1 ##########################################################
2 #
3 # Show-Status-CGI Output template for junkbuster 2.9.x
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 Junkbuster.
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 junkbuster
51 #    documentation for a given item  
52 #  invocation:
53 #    The command line with whitch junkbuster 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 #    junkbuster 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-proxy-info:
71 #    A URL for online documentation about this proxy has been
72 #    specified and is available through the "proxy-info-url"
73 #    symbol
74 #  sourceversions
75 #    The versions.
76 <html>
77
78 <head>
79   <title>Junkbuster@@my-hostname@: Detailed proxy version information</title>
80   <style type="text/css">
81     BODY, P, H1, H2, UL, OL, LI { font-family: Helvetica, Helv, Arial, Sans-Serif, sans-serif }
82   </style>
83 </head>
84
85 <body bgcolor="#ffffff">
86
87   <table cellpadding=20 cellspacing=10 border=0 width=100%>
88     <tr>
89       <td bgcolor=#dddddd>
90         <p><font size=+2><b>This is the Internet J</b></font><font size=+1><b>UNK<i></font><font color="red">BUSTER</font></i></b>
91           <font size=+2><b>@version@ on @my-hostname@ (@my-ip-address@), port @my-port@</b></font></p>
92       </td>
93     </tr>
94
95 <!-- @if-unstable-start -->
96 # This will only appear if CODE_STATUS is "alpha" or "beta". See configure.in
97     <tr>
98       <td bgcolor=#ffdddd>
99         <p><b>Please note that this <font color=red>@code-status@</font> release
100           of the proxy software is not intended for production systems!
101           <br>Use at your own risk. See the <a href="http://www.gnu.org/copyleft/gpl.html">license</a> for details.</b>
102         </p>
103
104         <p>Feel free to <a href=mailto:ijbswa-developers@lists.sourceforge.net>mail the developers</a>
105           with any problems you encounter.
106         </p>
107       </td>
108     </tr>
109 <!-- if-unstable-end@ -->
110
111     <tr>
112       <td bgcolor=#eeeeee>
113         <h2>Source code versions:</h2>
114         <p><i>(Note: This information is only relevent if you checked out JunkBuster from CVS
115            and compiled it yourself.  If you downloaded a binary, .exe, RPM, or a .tgz file, 
116            then when you ask for support just mention the version number <b>@version@</b> 
117            and the type of download you got.)</i></p>
118         <p>&nbsp;</p>
119         <blockquote><pre>@sourceversions@</pre></blockquote>
120       </td>
121     </tr>
122
123     <tr>
124       <td bgcolor=#dddddd>
125         <h2>More Junkbuster:</h2>
126         <ul>@menu@</ul>
127       </td>
128     </tr>
129
130     <tr>
131       <td bgcolor=#dddddd>
132         <p>If you have any questions about this service,
133
134 <!-- @if-have-proxy-info-start -->
135           consult the <a href="@proxy-info-url@">online documentation</a> or
136 <!-- if-have-proxy-info-end@ -->
137
138           <a href=mailto:@admin-address@>send mail to <code>@admin-address@</code></a>
139           who will be glad to help you.
140         </p>
141       </td>
142     </tr>
143
144   </table>
145
146 </body>
147 </html>