[squid-users] squid and regex help

2003-09-05 Thread mdew
Using regex "/etc/squid.adservers" I'm attempting to block any URL's with "penis" AND "large" in the url. Basically *penis*large* and *large*penis* ..I was looking at doing like so.. (/large/ && /penis/) (/penis/ && /large/) Removing the brackets doesnt change anything. /penis/ && /large/ /larg

RE: [squid-users] squid and regex help

2003-09-05 Thread Adam Aube
> Using regex "/etc/squid.adservers" I'm attempting to > block any URL's with "penis" AND "large" in the url. > (/large/ && /penis/) > (/penis/ && /large/) > But this doesnt work :/ With the Squid regex acls, you are working inside the / /. In order to do what you want to do, you'll need two ent

Re: [squid-users] squid and regex help

2003-09-05 Thread Christoph Haas
On Sat, Sep 06, 2003 at 02:22:00AM +1200, mdew wrote: > Using regex "/etc/squid.adservers" I'm attempting to block any URL's > with "penis" AND "large" in the url. Basically *penis*large* and > *large*penis* ..I was looking at doing like so.. > > (/large/ && /penis/) > (/penis/ && /large/) See "

Re: [squid-users] squid and regex help

2003-09-05 Thread Antony Stone
On Friday 05 September 2003 10:21 pm, Christoph Haas wrote: > On Sat, Sep 06, 2003 at 02:22:00AM +1200, mdew wrote: > > Using regex "/etc/squid.adservers" I'm attempting to block any URL's > > with "penis" AND "large" in the url. Basically *penis*large* and > > *large*penis* ..I was looking at do