The Omni Group Forums

The Omni Group Forums (http://forums.omnigroup.com/index.php)
-   OmniWeb General (http://forums.omnigroup.com/forumdisplay.php?f=8)
-   -   Ad blocking broken? (http://forums.omnigroup.com/showthread.php?t=1003)

michaeldmartin 2006-07-12 07:50 AM

Ad blocking broken?
 
[img]http://michaeldmartin.net/Picture%2025.png[/img]
As you can see, I told it to block that, yet it isn't..

Forrest 2006-07-12 08:39 AM

Your first expression doesn't look valid. There are notes on this elsewhere in the forum, but IIRC if one of the expressions is bad, none of the following ones will be honored.

zottel 2006-07-12 12:47 PM

You have to use regular expressions, not glob patterns.

In a regular expression, "*" means "the char before the * 0 or more times". E.g.: k* "means zero or more ks", not "a k and anything behind", which it would mean in a glob pattern.

"." means "any char" in a regular expression, so if you want to achieve the glob meaning of "*", you have to type ".*".

Thus, your pattern should be ".*googlesyndication.*", or just "googlesyndication", as this will match on any string containing "googlesyndication".


All times are GMT -8. The time now is 11:46 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.