From 14ab083ec2a83503d6ce4c8cf8ed8b6024990b71 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Tue, 21 Jul 2009 14:19:57 +0000
Subject: [PATCH] Disable content filtering for URLs ending in .ogg or ogv.
Fixes #2816708 reported by cyberpatrol and Johan Brannlund.
---
default.action.master | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/default.action.master b/default.action.master
index 0bb641b4..1219e8e2 100644
--- a/default.action.master
+++ b/default.action.master
@@ -11,7 +11,7 @@
#
# File : $Source: /cvsroot/ijbswa/current/default.action.master,v $
#
-# $Id: default.action.master,v 1.182 2009/07/07 16:35:01 ler762 Exp $
+# $Id: default.action.master,v 1.183 2009/07/11 11:13:26 fabiankeil Exp $
#
# Requires : This version requires Privoxy v3.0.11 or later due to
# syntax changes.
@@ -640,6 +640,16 @@ standard.Advanced
{-handle-as-image}
/.*\.(js|php|css|.?html?)
+#############################################################################
+# These belong to multimedia files of which Firefox occasionally only
+# requests parts. #2816708
+#############################################################################
+{-filter -deanimate-gifs}
+# Sticky Actions = -filter -deanimate-gifs
+# URL = http://www.example.org/foo/bar.ogg
+# URL = http://www.example.net/bar.ogv
+/.*\.og[gv]$
+
#############################################################################
# Generic block patterns by host:
#############################################################################
--
2.50.1