Cosmetics
[privoxy.git] / doc / webserver / actions / index.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3  <!--
4
5   File :  $Source: /cvsroot/ijbswa/current/doc/webserver/actions/index.php,v $
6
7   Purpose  :  Submit form for actions file feedback (step 1)
8               This file belongs in
9               ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/
10
11   $Id: index.php,v 1.8 2002/04/02 08:45:22 oes Exp $
12
13   $Log: index.php,v $
14   Revision 1.8  2002/04/02 08:45:22  oes
15   Made script location indepandant
16
17   Revision 1.7  2002/04/02 07:21:34  oes
18   Using relative link for step2
19
20   Revision 1.5  2002/04/01 19:13:47  oes
21   Extended, fixed bugs, beefed up design, made IE-safe
22
23   Revision 1.2  2002/03/30 03:35:48  oes
24   Updated bookmarklet
25
26   Revision 1.1  2002/03/30 03:20:30  oes
27   Added Feedback mechanism for actions file
28
29
30   Written by and Copyright (C) 2002 the SourceForge
31   Privoxy team. http://www.privoxy.org/
32
33   This program is free software; you can redistribute it
34   and/or modify it under the terms of the GNU General
35   Public License as published by the Free Software
36   Foundation; either version 2 of the License, or (at
37   your option) any later version.
38
39   This program is distributed in the hope that it will
40   be useful, but WITHOUT ANY WARRANTY; without even the
41   implied warranty of MERCHANTABILITY or FITNESS FOR A
42   PARTICULAR PURPOSE.  See the GNU General Public
43   License for more details.
44
45   The GNU General Public License should be included with
46   this file.  If not, you can view it at
47   http://www.gnu.org/copyleft/gpl.html
48   or write to the Free Software Foundation, Inc., 59
49   Temple Place - Suite 330, Boston, MA  02111-1307, USA.
50
51  -->
52
53  <head>
54   <meta http-equiv="Content-Style-Type" content="text/css">
55   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
56   <style type="text/css">
57    body,td,th { font-family:helvetica,helv,arial,sans-serif; font-size:10px }
58    body { background-color: #ffffff; color: #000000 }
59    h1 { font-size: 140%; marign: 0px; }
60    h2 { font-size: 120%; marign: 0px; }
61    div.title    { background-color:#dddddd; border:solid black 1px; margin:20px; padding:20px; }
62    div.box      { background-color:#eeeeee; border:solid black 1px; margin:20px; padding:20px; }
63    div.infobox  { background-color:#ccccff; border:solid black 1px; margin:20px; padding:20px; width: 60%; }
64    div.errorbox { background-color:#ffdddd; border:solid black 1px; margin:20px; padding:20px; width: 60%; text-align: left; } 
65   </style>
66
67 <?php
68
69 /*
70  * MUST be updated in sync with actions file:
71  */
72 $required_actions_file_version = "1.0";
73 $required_privoxy_version = "2.9.13";
74 $actions_file_download = "http://www.privoxy.org/actions/testdrive.action";
75
76
77 /*
78  * For testing: 
79  */
80 //phpinfo();
81 //error_reporting(E_ALL);
82 error_reporting(E_NONE);
83
84
85 /*
86  * Bookmarklet that leads here:
87  */
88 $my_address = "http://" . $HTTP_SERVER_VARS["HTTP_HOST"] . $PHP_SELF;
89 $bookmarklet = "javascript:void(window.open('$my_address?url='+escape(location.href), 'Feedback', " .
90                "'width=600,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no').focus());";
91
92
93 /* 
94  * Provide default if URL unset
95  */
96 if (!isset($url))
97 {
98    $url = "http://www.example.com/";
99 }
100
101
102 /* 
103  * Deny feedback which is not based on our latest
104  * distribution:
105  */
106 $headers = getallheaders();
107
108 if (!isset($headers["X-Actions-File-Version"]) || $headers["X-Actions-File-Version"] < $required_actions_file_version)
109 {
110    echo ("<title>Invalid Privoxy Action List Feedback</title></head>
111           <body><div class=\"title\"><h1>Invalid Feedback Submission</h1></div>
112            <center>
113             <div class=\"errorbox\"><p>As much as we welcome your feedback, please note that
114              we can only accept problem reports based on:
115              <ul>
116               <li><a href=\"http://www.privoxy.org/\">Privoxy</a> version $required_privoxy_version or later</li>
117               <li><a href=\"$actions_file_download\">Actionsfile</a> version  version $required_actions_file_version or later</li>
118              </ul>
119              <p>We hope you will understand that we feel unable to maintain concurrent versions of the file.</p>
120             </div>
121            </center>
122            <p>Valid <a href=\"http://validator.w3.org/\">HTML 4.01 Transitional</a></p>
123           </body>
124          </html>");
125    exit;
126 }
127
128 ?>
129
130   <title>Privoxy Action List Feedback - Step 1 of 2</title>
131  </head>
132
133  <body>
134   <div class="title">
135     <h1>
136       <a href="http://www.privoxy.org" target="_blank">Privoxy</a> Action List Feedback - Step 1 of 2
137     </h1>
138   </div>
139
140   <div class="box">
141    <p>
142     <b>Thank you for reporting a missing or invalid action!</b> 
143     <br>The Privoxy team relies on <b>your</b> feedback to maintain an efficient actions file!
144    </p>
145
146    <p>
147     Please fill the below form and click to proceed to step 2.
148    </p>
149   </div>
150
151   <div class="box">
152    <form action="step2.php" method="post">
153
154     <table border="0" cellpadding="0" cellspacing="4">
155
156      <tr>
157       <td align="right">URL:</td>
158       <td>
159        <input name="referrer_url" value="<?php echo ($url); ?>" type="text" size="45" maxlength="255">
160       </td>
161      </tr>
162
163      <tr>
164       <td align="right">Nature of the problem:</td>
165       <td>
166        <select name="problem" size="1">
167         <option selected value="INVALID">Please select...</option>
168         <option value="P1">An advertisment was NOT blocked</option>
169         <option value="P2">An innocent image WAS blocked</option>
170         <option value="P3">The whole page was erraneously blocked</option>
171         <option value="P4">The page needs popups but they don't work</option>
172         <option value="P5">Other problem</option>
173        </select>
174       </td>
175      </tr>
176
177      <tr>
178       <td>&nbsp;</td>
179       <td>
180        <input type=submit value="Proceed to step 2">
181       </td>
182      </tr>
183
184     </table>
185    </form>
186   </div>
187
188   <center>
189    <div class="infobox">
190     <h2>Using <a href="http://www.bookmarklets.com" target="_blank">Bookmarklets</a> for Feedback</h2>
191     <p>
192      To make it even easier for you, we provide a bookmarklet which will not only take you here from
193      any troubled page you might be surfing, but also pre-fill the form!
194     </p>
195     <p>
196      Please right-click the following link and choose "Add to Favorites" (IE) or "Add Bookmark for Link" (Netscape): 
197      <a href="<?php echo($bookmarklet); ?>">Privoxy-Submit</a>
198     </p>
199
200     <p>
201      <i>You might get a warning that the bookmark "may not be safe" (IE) - just click OK.
202      For even faster access, you can put it on the "Links" bar (IE) or the "Personal Toolbar" (Netscape),
203      and submit feedback with a single click!</i>
204     </p>
205    </div>
206   </center>
207
208   <p>Valid <a href="http://validator.w3.org/">HTML 4.01 Transitional</a></p>
209
210  </body>
211 </html>