diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-02-13 06:08:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-02-13 06:08:05 +0800 |
commit | b493c854eaf091ddb5654631f5c13f74be669686 (patch) | |
tree | 379bbf998c26bacd9bcfeee82046ce96326c8895 /filter | |
parent | cfb7f58d26e2428627b50adb168b62c9772ef746 (diff) | |
download | gsoc2013-evolution-b493c854eaf091ddb5654631f5c13f74be669686.tar.gz gsoc2013-evolution-b493c854eaf091ddb5654631f5c13f74be669686.tar.zst gsoc2013-evolution-b493c854eaf091ddb5654631f5c13f74be669686.zip |
Re-added contains and not-contains. Also added filter/vfolder rules for
2002-02-12 Jeffrey Stedfast <fejj@ximian.com>
* vfoldertypes.xml:
* filtertypes.xml: Re-added contains and
not-contains. Also added filter/vfolder rules for
Flag-for-Followup.
svn path=/trunk/; revision=15694
Diffstat (limited to 'filter')
-rw-r--r-- | filter/ChangeLog | 5 | ||||
-rw-r--r-- | filter/filtertypes.xml | 19 | ||||
-rw-r--r-- | filter/libfilter-i18n.h | 3 | ||||
-rw-r--r-- | filter/vfoldertypes.xml | 18 |
4 files changed, 43 insertions, 2 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index a3034802b6..1e449c566b 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,6 +1,9 @@ 2002-02-12 Jeffrey Stedfast <fejj@ximian.com> - * filtertypes.xml: Re-added contains and not-contains. + * vfoldertypes.xml: + * filtertypes.xml: Re-added contains and + not-contains. Also added filter/vfolder rules for + Flag-for-Followup. 2002-02-04 Jeffrey Stedfast <fejj@ximian.com> diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index fe71153517..1c2aa47bc5 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -414,7 +414,6 @@ <input type="score" name="versus"/> </part> - <part name="size"> <title>Size (kB)</title> <input type="optionlist" name="size-type"> @@ -466,6 +465,24 @@ </input> </part> + <part name="follow-up"> + <title>Follow Up</title> + <input type="optionlist" name="match-type"> + <option value="is"> + <title>is Flagged</title> + <code> + (match-all (user-tag "follow-up")) + </code> + </option> + <option value="is not"> + <title>is not Flagged</title> + <code> + (match-all (not (user-tag "follow-up"))) + </code> + </option> + </input> + </part> + <part name="attachments"> <title>Attachments</title> <input type="optionlist" name="match-type"> diff --git a/filter/libfilter-i18n.h b/filter/libfilter-i18n.h index 57f2871e49..9d272d478d 100644 --- a/filter/libfilter-i18n.h +++ b/filter/libfilter-i18n.h @@ -20,13 +20,16 @@ char *s = N_("Execute Shell Command"); char *s = N_("Exist"); char *s = N_("exists"); char *s = N_("Expression"); +char *s = N_("Follow Up"); char *s = N_("Important"); char *s = N_("is"); char *s = N_("is after"); char *s = N_("is before"); +char *s = N_("is Flagged"); char *s = N_("is greater than"); char *s = N_("is less than"); char *s = N_("is not"); +char *s = N_("is not Flagged"); char *s = N_("Mailing list"); char *s = N_("Message Body"); char *s = N_("Message Header"); diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml index b3e92dd79a..5808bbfffc 100644 --- a/filter/vfoldertypes.xml +++ b/filter/vfoldertypes.xml @@ -289,6 +289,24 @@ </input> </part> + <part name="follow-up"> + <title>Follow Up</title> + <input type="optionlist" name="match-type"> + <option value="is"> + <title>is Flagged</title> + <code> + (match-all (user-tag "follow-up")) + </code> + </option> + <option value="is not"> + <title>is not Flagged</title> + <code> + (match-all (not (user-tag "follow-up"))) + </code> + </option> + </input> + </part> + <part name="attachments"> <title>Attachments</title> <input type="optionlist" name="match-type"> |