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