* Jim Wright <[EMAIL PROTECTED]> wrote:
> Suppose you want files from some.dom.com://*/foo/*.png.  The
> part I'm thinking of here is "foo as last directory component,
> and png as filename extension."  Can the individual rules be
> combined to express this?

Only one rule is needed for that pattern:

  some.dom.com/.*/foo/[^/]*.png$

The file/path/domain specifiers would actually get in the way for
this type of matching.  What you'd really want is either a full
URI/URL match, or a raw tag match.  Either would work with the
above pattern.


-- Scott

Reply via email to