renamed every reference to the old name with foobar.
[privoxy.git] / templates / edit-actions-url-form
1 ##############################################################################
2 #
3 # File        :  $Source: /cvsroot/ijbswa/current/templates/edit-actions-url-form,v $
4 #
5 # Purpose     :  Template used to edit a URL pattern in an actions file.
6 #
7 #
8 # Copyright   :  Written by and Copyright (C) 2001 the SourceForge
9 #                IJBSWA 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-url-form,v $
34 #    Revision 1.6  2002/03/16 15:22:19  jongfoster
35 #    Moving 'alpha' warning to the end of the page
36 #
37 #    Revision 1.5  2002/03/03 10:29:13  swa
38 #    point users to the right feedback forms,
39 #    not necessarily the developer list.
40 #
41 #    Revision 1.4  2002/01/23 00:26:45  jongfoster
42 #    Reducing length of URLs
43 #    Where encoded and unencoded versions of a string existed, removing
44 #    the unencoded one.
45 #
46 #    Revision 1.3  2002/01/17 21:33:00  jongfoster
47 #    Replacing all references to the URL of the config interface
48 #    with @default-cgi@
49 #
50 #    Revision 1.2  2002/01/17 21:21:05  jongfoster
51 #    DOS->Unix line endings
52 #
53 #    Revision 1.1  2001/11/13 00:58:18  jongfoster
54 #    New version of actions file editor templates
55 #
56 #
57 ##############################################################################
58 #
59 # Standard support:
60 #
61 # This file currently produces valid HTML 4.01 Strict.
62 #
63 # If you change it, please save the generated page from your web browser
64 # and then upload it to http://validator.w3.org/ for checking.
65 #
66 #############################################################################
67 #
68 # Available variables include:
69 #
70 # f - filename
71 # v - version
72 # s - section
73 # p - pattern
74 # u - old value of URL
75 #
76 #############################################################################
77 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
78 <html>
79
80 <head>
81 <meta http-equiv="Content-Style-Type" content="text/css">
82 <meta http-equiv="Content-Script-Type" content="text/javascript">
83 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
84 <meta name="robots" content="noindex,nofollow">
85
86 <title>Foobar: Edit URL Pattern</title>
87
88 <style type="text/css">
89 body         { font-family: Helvetica, Helv, Arial, Sans-Serif, sans-serif;
90                background-color: #ffffff;
91                color: #000000            }
92 td.light     { background-color: #eeeeee }
93 td.dark      { background-color: #dddddd }
94 </style>
95
96 <script type="text/javascript">
97 <!--
98 function validate(text)
99 {
100   if (text=="")
101   {
102     alert("You need to type a pattern in order to continue!");
103     return false;
104   }
105
106   return true;
107 }
108 //-->
109 </script>
110
111 </head>
112
113 <body>
114
115 <table cellpadding="20" cellspacing="10" border="0" width="100%">
116   <tr>
117     <td class="dark">
118       <p><b><big><big>This is the Internet 
119         J</big>UNK</big><i style="color: #ff0000">BUSTER</i><big><big>
120         @version@ on @my-hostname@ (@my-ip-address@),
121         port @my-port@, 
122         @if-enabled-display-then@Enabled@else-not-enabled-display@Disabled@endif-enabled-display@</big></big></b></p>
123     </td>
124   </tr>
125
126   <tr>
127     <td class="light">
128       <h2>Edit URL Pattern</h2>
129       <form method="GET" action="edit-actions-url"
130             onSubmit="return validate(u.value);">
131         <p>
132           <input type="hidden" name="f" value="@f@">
133           <input type="hidden" name="v" value="@v@">
134           <input type="hidden" name="p" value="@p@">
135           <input type="text" name="u" value="@u@" size="78"><br>
136           <input type="submit" value="Submit"> &nbsp;
137           <input type="reset" value="Reset"> &nbsp;
138           <a href="edit-actions-list?f=@f@">Cancel</a>
139         </p>
140       </form>
141     </td>
142   </tr>
143
144   <tr>
145     <td class="dark">
146       <h2>More Foobar:</h2>
147       <ul>@menu@</ul>
148     </td>
149   </tr>
150
151   <tr>
152     <td>
153       <small><small>Valid <a href="http://validator.w3.org/">HTML 4.01 Strict</a></small></small>
154     </td>
155   </tr>
156
157 </table>
158
159 </body>
160
161 </html>
162