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