Rebuild docs
[privoxy.git] / doc / webserver / user-manual / filter-file.html
index 09acb90..1547271 100644 (file)
@@ -177,7 +177,7 @@ FILTER: foo Replace all "foo" with "bar"
     started.</p>
 
     <div class="SECT2">
-      <h2 class="SECT2"><a name="AEN5285" id="AEN5285">9.1. Filter File
+      <h2 class="SECT2"><a name="AEN5287" id="AEN5287">9.1. Filter File
       Tutorial</a></h2>
 
       <p>Now, let's complete our <span class="QUOTE">"foo"</span> content
@@ -388,6 +388,18 @@ s/(&lt;body [^&gt;]*)onunload(.*&gt;)/$1never$2/iU
       contain <span class="QUOTE">"OnUnload"</span>, but the page's content
       does.</p>
 
+      <table border="0" bgcolor="#E0E0E0" width="100%">
+        <tr>
+          <td>
+            <pre class="SCREEN">
+# Completely removeKill OnUnload popups. Yummy. Test: http://www.zdnet.com/zdsubs/yahoo/tree/yfs.html
+#
+s/(&lt;body [^&gt;]*)onunload(.*&gt;)/$1never$2/iU
+</pre>
+          </td>
+        </tr>
+      </table>
+
       <p>The last example is from the fun department:</p>
 
       <table border="0" bgcolor="#E0E0E0" width="100%">
@@ -902,6 +914,12 @@ while read line; \
 do \
   echo "$line"; \
 done
+
+EXTERNAL-FILTER: rotate-image Rotate an image by 180 degree. Test filter with limited value.
+/usr/local/bin/convert - -rotate 180 -
+
+EXTERNAL-FILTER: citation-needed Adds a "[citation needed]" tag to an image. The coordinates may need adjustment.
+/usr/local/bin/convert - -pointsize 16 -fill white  -annotate +17+418 "[citation needed]" -
 </pre>
           </td>
         </tr>