Hi, On 4/23/07, Nagyon Almos <[EMAIL PROTECTED]> wrote: > > 2) I am trying to make some of my own filters hence > > I would like to specify the extensions (in the filter xml file) > > with egrep-style regular expressions. Is it possible? > > I tried it too but this didnt work: > I specified > <filter> > <mimetype>text/x-vcard</mimetype> > <extension>.(vcf|vcard)</extension> > <command>cat</command> > <arguments>%s</arguments> > </filter>
Indeed, this won't work. You have to do: <extension>.vcf</extension> <extension>.vcard</extension> You can specify multiple (or zero) extension and mimetype conditions, any of which match. Joe _______________________________________________ Dashboard-hackers mailing list [email protected] http://mail.gnome.org/mailman/listinfo/dashboard-hackers
