X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=templates%2Fedit-actions-list;h=a16368e8d5520c993866569060aaa2e2fa6b48d3;hb=51ed869832968bce561de8957ec0e925f02a3ac2;hp=638383b6e5f384f316d02be9e1bb3229094b9e22;hpb=aa203bd24abf981a2e509130182baa27b2f061ef;p=privoxy.git diff --git a/templates/edit-actions-list b/templates/edit-actions-list index 638383b6..a16368e8 100644 --- a/templates/edit-actions-list +++ b/templates/edit-actions-list @@ -1,11 +1,11 @@ ############################################################################## # -# File : $Source: /cvsroot/ijbswa//current/templates/edit-actions-list,v $ +# File : $Source: /cvsroot/ijbswa/current/templates/edit-actions-list,v $ # # Purpose : Template used to edit the actions file. # # -# Copyright : Written by and Copyright (C) 2001 the SourceForge +# Copyright : Written by and Copyright (C) 2001-2006 the SourceForge # Privoxy team. http://www.privoxy.org/ # # Original Author: Copyright (C) 2001 Jonathan Foster @@ -31,6 +31,38 @@ # # Revisions : # $Log: edit-actions-list,v $ +# 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 +# +# Revision 1.25 2002/05/21 21:02:52 oes +# Added more help links +# +# Revision 1.24 2002/05/21 19:11:40 oes +# - Added client-side JavaScript versions of edit and add URL forms +# - Moved jump targets to before container table cell +# - Let earu determine the jump target when removing URLs via JS +# - Fixed broken help link +# # Revision 1.23 2002/05/12 15:53:10 jongfoster # Restoring CVS log information accidentally removed in # my previous commit. @@ -202,27 +234,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))) - { window.location.href="edit-actions-url?f=@f@&v=@v@&p="+pattern+"&u="+escape(newtext); } + if ((newtext=window.prompt("Edit the pattern to your needs:", unescape(curtext))) != null) + { + if (newtext != "") + { link.href="edit-actions-url?f=@f@&v=@v@&p="+pattern+"&u="+escape(newtext); } + else + { 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:", "")) - { window.location.href="edit-actions-add-url?f=@f@&v=@v@&s="+section+"&u="+escape(newtext); } + if (((newtext=window.prompt("Enter the new pattern:", "")) != null ) && (newtext != "")) + { + link.href="edit-actions-add-url?f=@f@&v=@v@&s="+section+"&u="+escape(newtext); + return true; + } return false; } - //--> @@ -255,9 +298,10 @@ function a_p(section)

    If you haven't already done so, it is strongly recommended that you at least skim the - chapter on the actions file 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.

    @@ -270,7 +314,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. @@ -294,7 +338,7 @@ function a_p(section) - + - + - +
    Actions
    Actions:
    Edit @@ -302,9 +346,9 @@ function a_p(section)
    @all-urls-actions@
    URL patterns
    URL patterns:
    /   (Matches all requests)
    Advanced
    Advanced:
    Insert new section below @@ -320,7 +364,7 @@ function a_p(section)

    More Privoxy:

    -
      @menu@
    +