Elimnating duplicate images; using relative link for step3
[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 //phpinfo();
71 //error_reporting(E_ALL);
72 error_reporting(E_NONE);
73
74 //$bookmarklet_base = "http://www.privoxy.org/actions/";
75 $bookmarklet_base = "http://www.oesterhelt.org/actions/index.php";
76 $bookmarklet = "javascript:void(window.open('$bookmarklet_base?url='+escape(location.href), 'Feedback', " .
77                "'width=600,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no').focus());";
78
79
80 /* 
81  * Provide default if URL unset
82  */
83 if (!isset($url))
84 {
85    $url = "http://www.example.com/";
86 }
87
88
89 /* 
90  * Deny feedback which is not based on our latest
91  * distribution:
92  */
93 $headers = getallheaders();
94
95 if (!isset($headers["X-Actions-File-Version"]) || $headers["X-Actions-File-Version"] < $required_actions_file_version)
96 {
97    echo ("<title>Invalid Privoxy Action List Feedback</title></head>
98           <body><div class=\"title\">Invalid Feedback Submission</div>
99            <div align=\"center\">
100             <div class=\"errorbox\" align=\"left\"><p>As much as we welcome your feedback, please note that
101              we can only accept problem reports based on:
102              <ul>
103               <li><a href=\"http://www.privoxy.org/\">Privoxy</a> version $required_privoxy_version or later</li>
104               <li><a href=\"$actions_file_download\">Actionsfile</a> version  version $required_actions_file_version or later</li>
105              </ul>
106              <p>We hope you will understand that we feel unable to maintain concurrent versions of the file.</p>
107             </div>
108            </div>
109           </body>
110          </html>");
111    exit;
112 }
113
114 ?>
115
116   <title>Privoxy Action List Feedback - Step 1 of 2</title>
117  </head>
118
119  <body>
120   <div class="title"><a href="http://www.privoxy.org" target="_blank">Privoxy</a> Action List Feedback - Step 1 of 2</div>
121
122   <div class="box">
123    <p>
124     <b>Thank you for reporting a missing or invalid action!</b> 
125     <br>The Privoxy team relies on <b>your</b> feedback to maintain an efficient actions file!
126    </p>
127
128    <p>
129     Please fill the below form and click to proceed to step 2.
130    </p>
131   </div>
132
133   <div class="box">
134    <form action="step2.php" method="post">
135
136     <table border="0" cellpadding="0" cellspacing="4">
137
138      <tr>
139       <td align="right">URL:</td>
140       <td>
141        <input name="referrer_url" value="<?php echo ($url); ?>" type="text" size="45" maxlength="255">
142       </td>
143      </tr>
144
145      <tr>
146       <td align="right">Nature of the problem:</td>
147       <td>
148        <select name="problem" size="1">
149         <option selected value="INVALID">Please select...</option>
150         <option value="P1">An advertisment was NOT blocked</option>
151         <option value="P2">An innocent image WAS blocked</option>
152         <option value="P3">The whole page was erraneously blocked</option>
153         <option value="P4">The page needs popups but they don't work</option>
154         <option value="P5">Other problem</option>
155        </select>
156       </td>
157      </tr>
158
159      <tr>
160       <td>&nbsp;</td>
161       <td>
162        <input type=submit value="Proceed to step 2">
163       </td>
164      </tr>
165
166     </table>
167    </form>
168   </div>
169
170   <div align=center>
171    <div class="infobox" width="60%" align=\"left\">
172     <p>
173      <big>
174       <b>Using <a href="http://www.bookmarklets.com" target="_blank">Bookmarklets</a> for Feedback</b>
175      </big>
176     </p>
177     <p>
178      To make it even easier for you, we provide a bookmarklet which will not only take you here from
179      any troubled page you might be surfing, but also pre-fill the form!
180     </p>
181     <p>
182      Please right-click the following link and choose "Add to Favorites" (IE) or "Add Bookmark for Link" (Netscape): 
183      <a href="<?php echo($bookmarklet); ?>">Privoxy-Submit</a>
184     </p>
185
186     <p>
187      <i>You might get a warning that the bookmark "may not be safe" (IE) - just click OK.
188      For even faster access, you can put it on the "Links" bar (IE) or the "Personal Toolbar" (Netscape),
189      and submit feedback with a single click!</i>
190     </p>
191    </div>
192   </div>
193
194  </body>
195 </html>