name change
[privoxy.git] / templates / edit-actions-add-url-form
1 ##############################################################################
2 #
3 # File        :  $Source: /cvsroot/ijbswa/current/templates/edit-actions-add-url-form,v $
4 #
5 # Purpose     :  Template used to add a URL pattern to the actions file.
6 #
7 #
8 # Copyright   :  Written by and Copyright (C) 2001 the SourceForge
9 #                Privoxy team.  http://ijbswa.sourceforge.net
10 #
11 #                Original Author: Copyright (C) 2001 Jonathan Foster
12 #                http://www.jon-foster.co.uk/
13 #
14 #                This program is free software; you can redistribute it 
15 #                and/or modify it under the terms of the GNU General
16 #                Public License as published by the Free Software
17 #                Foundation; either version 2 of the License, or (at
18 #                your option) any later version.
19 #
20 #                This program is distributed in the hope that it will
21 #                be useful, but WITHOUT ANY WARRANTY; without even the
22 #                implied warranty of MERCHANTABILITY or FITNESS FOR A
23 #                PARTICULAR PURPOSE.  See the GNU General Public
24 #                License for more details.
25 #
26 #                The GNU General Public License should be included with
27 #                this file.  If not, you can view it at
28 #                http://www.gnu.org/copyleft/gpl.html
29 #                or write to the Free Software Foundation, Inc., 59
30 #                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31 #
32 # Revisions   :
33 #    $Log: edit-actions-add-url-form,v $
34 #    Revision 1.7  2002/03/23 16:18:15  swa
35 #    renamed every reference to the old name with foobar.
36 #    fixed "application foobar application" tag, fixed
37 #    "the foobar" with "foobar". left junkbuster in cvs
38 #    comments and remarks to history untouched. should
39 #    make final rename easier.
40 #
41 #    Revision 1.6  2002/03/16 15:22:19  jongfoster
42 #    Moving 'alpha' warning to the end of the page
43 #
44 #    Revision 1.5  2002/03/03 10:29:12  swa
45 #    point users to the right feedback forms,
46 #    not necessarily the developer list.
47 #
48 #    Revision 1.4  2002/01/23 00:26:45  jongfoster
49 #    Reducing length of URLs
50 #    Where encoded and unencoded versions of a string existed, removing
51 #    the unencoded one.
52 #
53 #    Revision 1.3  2002/01/17 21:33:00  jongfoster
54 #    Replacing all references to the URL of the config interface
55 #    with @default-cgi@
56 #
57 #    Revision 1.2  2002/01/17 21:21:03  jongfoster
58 #    DOS->Unix line endings
59 #
60 #    Revision 1.1  2001/11/13 00:58:18  jongfoster
61 #    New version of actions file editor templates
62 #
63 #
64 ##############################################################################
65 #
66 # Standard support:
67 #
68 # This file currently produces valid HTML 4.01 Strict.
69 #
70 # If you change it, please save the generated page from your web browser
71 # and then upload it to http://validator.w3.org/ for checking.
72 #
73 #############################################################################
74 #
75 # Available variables include:
76 #
77 # filename
78 # ver
79 # section
80 #
81 #############################################################################
82 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
83 <html>
84
85 <head>
86 <meta http-equiv="Content-Style-Type" content="text/css">
87 <meta http-equiv="Content-Script-Type" content="text/javascript">
88 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
89 <meta name="robots" content="noindex,nofollow">
90
91 <title>Privoxy: Edit URL Pattern</title>
92
93 <style type="text/css">
94 body         { font-family: Helvetica, Helv, Arial, Sans-Serif, sans-serif;
95                background-color: #ffffff;
96                color: #000000            }
97 td.light     { background-color: #eeeeee }
98 td.dark      { background-color: #dddddd }
99 </style>
100
101 <script type="text/javascript">
102 <!--
103 function validate(text)
104 {
105   if (text=="")
106   {
107     alert("You need to type a pattern in order to continue!");
108     return false;
109   }
110
111   return true;
112 }
113 //-->
114 </script>
115
116 </head>
117
118 <body>
119
120 <table cellpadding="20" cellspacing="10" border="0" width="100%">
121   <tr>
122     <td class="dark">
123       <p><b><big><big>This is the Internet 
124         J</big>UNK</big><i style="color: #ff0000">BUSTER</i><big><big>
125         @version@ on @my-hostname@ (@my-ip-address@),
126         port @my-port@, 
127         @if-enabled-display-then@Enabled@else-not-enabled-display@Disabled@endif-enabled-display@</big></big></b></p>
128     </td>
129   </tr>
130
131   <tr>
132     <td class="light">
133       <h2>Add URL Pattern</h2>
134       <form method="GET" action="edit-actions-add-url"
135             onSubmit="return validate(u.value);">
136         <p>
137           <input type="hidden" name="f" value="@f@">
138           <input type="hidden" name="v" value="@v@">
139           <input type="hidden" name="s" value="@s@">
140           <input type="text" name="u" value="" size="78"><br>
141           <input type="submit" value="Submit"> &nbsp;
142           <input type="reset" value="Reset"> &nbsp;
143           <a href="edit-actions-list?f=@f@">Cancel</a>
144         </p>
145       </form>
146     </td>
147   </tr>
148
149   <tr>
150     <td class="dark">
151       <h2>More Privoxy:</h2>
152       <ul>@menu@</ul>
153     </td>
154   </tr>
155
156   <tr>
157     <td>
158       <small><small>Valid <a href="http://validator.w3.org/">HTML 4.01 Strict</a></small></small>
159     </td>
160   </tr>
161
162 </table>
163
164 </body>
165
166 </html>
167