X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=templates%2Fedit-actions-list;h=b516fffecc24e38146fef529d3771e86fd75dfe2;hp=06c84b6385b511724d617d67fcaca1f21bdee84d;hb=f8e10b0e3ce35c32fe782e5871275b27650aa31b;hpb=1fafdd0184d40f4f90b0f38866f8606568589db5;ds=sidebyside diff --git a/templates/edit-actions-list b/templates/edit-actions-list index 06c84b63..b516fffe 100644 --- a/templates/edit-actions-list +++ b/templates/edit-actions-list @@ -5,7 +5,7 @@ # Purpose : Template used to edit the actions file. # # -# Copyright : Written by and Copyright (C) 2001 the SourceForge +# Copyright : Written by and Copyright (C) 2001-2007 the SourceForge # Privoxy team. http://www.privoxy.org/ # # Original Author: Copyright (C) 2001 Jonathan Foster @@ -31,13 +31,28 @@ # # Revisions : # $Log: edit-actions-list,v $ -# Revision 1.27 2002/09/05 16:14:59 oes -# Synced with stable branch: -# Revision 1.26.2.2 2002/08/23 02:22:53 hal9 -# Fix a perl brain fart with
  • in comments +# Revision 1.31 2006/09/10 14:39:24 hal9 +# Fix typo + minor change. # -# Revision 1.26.2.1 2002/08/22 23:31:54 hal9 -# Add Documentation Link to menu. +# Revision 1.30 2006/09/09 01:12:15 hal9 +# Soften actions files update interval. +# +# Revision 1.29 2006/07/18 14:49:13 david__schmidt +# Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch) +# with what was really the latest development (the v_3_0_branch branch) +# +# Revision 1.26.2.4 2003/12/17 16:35:17 oes +# Work around new & silly MSIE behaviour where the request resulting from +# changing window.location.href doesn't reveal the referrer anymore +# +# Revision 1.26.2.3 2002/09/25 15:34:09 oes +# - Work around JS problem in NS 2.0 (no joke) +# - Make JS string edit popup remove the pattern +# if edited to empty; make JS add popup do nothing +# if pattern empty. +# +# Revision 1.26.2.2 2002/08/23 02:22:53 hal9 +# Fix a perl brain fart with
  • in comments. # # Revision 1.26 2002/05/23 23:37:25 oes # Nit @@ -176,6 +191,7 @@ + Privoxy: Edit actions file @f@.action @@ -222,32 +238,38 @@ td.indentbuttons { // JavaScript-capable browsers will call this function, which does a // client-side prompt for speed. It may kick off the delete directly. // It always returns false to cancel following the link. -function rm_p(pattern,curtext) +function rm_p(link,pattern,curtext) { if (window.confirm("Are you sure you want to delete this URL pattern?\nPattern is: "+unescape(curtext))) - { window.location.href="edit-actions-remove-url?f=@f@&v=@v@&p="+pattern; } + { + link.href="edit-actions-remove-url?f=@f@&v=@v@&p="+pattern; + return true; + } return false; } -function e_p(pattern,curtext) +function e_p(link,pattern,curtext) { if ((newtext=window.prompt("Edit the pattern to your needs:", unescape(curtext))) != null) { if (newtext != "") - { window.location.href="edit-actions-url?f=@f@&v=@v@&p="+pattern+"&u="+escape(newtext); } + { link.href="edit-actions-url?f=@f@&v=@v@&p="+pattern+"&u="+escape(newtext); } else - { window.location.href="edit-actions-remove-url?f=@f@&v=@v@&p="+pattern; } + { link.href="edit-actions-remove-url?f=@f@&v=@v@&p="+pattern; } + return true; } return false; } -function a_p(section) +function a_p(link,section) { if (((newtext=window.prompt("Enter the new pattern:", "")) != null ) && (newtext != "")) - { window.location.href="edit-actions-add-url?f=@f@&v=@v@&s="+section+"&u="+escape(newtext); } + { + link.href="edit-actions-add-url?f=@f@&v=@v@&s="+section+"&u="+escape(newtext); + return true; + } return false; } - //--> @@ -280,9 +302,10 @@ function a_p(section)

    If you haven't already done so, it is strongly recommended that you at least skim the - chapter on actions files in the user manual - before making any changes. You will also find a comprehensive list of all available actions - there. + chapter on actions files in the User Manual + before making any changes. You will also find a comprehensive list of + all available actions there, as well how the settings on this page + work.

    @@ -295,7 +318,7 @@ function a_p(section)

    This is the default action file. Updates for it are available from - Privoxy.org on a regular basis. + Privoxy.org from time to time. It is therefore not recommended that you add your private rules here, since they will be lost if you install an update in the future. Put your rules in a separate actions file, like user.action instead. @@ -367,12 +390,6 @@ function a_p(section) - - - Valid HTML 4.01 Strict - - -