X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=templates%2Fedit-actions-list;h=a16368e8d5520c993866569060aaa2e2fa6b48d3;hb=51ed869832968bce561de8957ec0e925f02a3ac2;hp=1f7e90d6ff4827c5e1ed634f4ca3c5382aa32f90;hpb=48e059f179e615db2f7002834182d135cfbde3f9;p=privoxy.git diff --git a/templates/edit-actions-list b/templates/edit-actions-list index 1f7e90d6..a16368e8 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-2006 the SourceForge # Privoxy team. http://www.privoxy.org/ # # Original Author: Copyright (C) 2001 Jonathan Foster @@ -31,6 +31,42 @@ # # 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. +# # Revision 1.22 2002/05/12 15:45:33 jongfoster # Applying [Patch 552094] New templates for edit-actions-list # This cleans up the templates by: @@ -118,7 +154,7 @@ # MS Internet Explorer 4+ - Untested # MS IE 3.x, NS3.x - Untested (Don't support CSS, so everything # should work, but will look ugly). -# Mozilla >=0.6 - Untested +# Mozilla >=0.6 - Yes - everything works. # # All browsers should work, you just might not get the pretty CSS buttons. # @@ -198,13 +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+"#l"+pattern; } + { + link.href="edit-actions-remove-url?f=@f@&v=@v@&p="+pattern; + return true; + } + return false; +} + +function e_p(link,pattern,curtext) +{ + 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(link,section) +{ + 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; +} //--> @@ -236,10 +297,11 @@ function rm_p(pattern,curtext)

    What is all this?

    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. + 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, as well how the settings on this page + work.

    @@ -252,10 +314,10 @@ function rm_p(pattern,curtext)

    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. + Put your rules in a separate actions file, like user.action instead.

    @@ -274,21 +336,25 @@ function rm_p(pattern,curtext) - - - - - - - - - -
    Actions
    -Edit -@all-urls-buttons@ -
    @all-urls-actions@
    URL patterns
    /   (Matches all requests)
    Advanced
    -Insert new section below -
    + + + + + + + + + + + + + +
    Actions:
    + Edit + @all-urls-buttons@ +
    @all-urls-actions@
    URL patterns:
    /   (Matches all requests)
    Advanced:
    + Insert new section below +
    @@ -298,7 +364,7 @@ function rm_p(pattern,curtext)

    More Privoxy:

    - +