diff options
author | Not Zed <NotZed@Ximian.com> | 2002-04-10 00:36:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-04-10 00:36:49 +0800 |
commit | ef108f7218d01f8b57d588e904680c03f688eb16 (patch) | |
tree | 056d6205fab5dd6e77493f00dcdfe500be029308 | |
parent | 92d85ea01a3e856173bb0a926264fa3576d7d4eb (diff) | |
download | gsoc2013-evolution-ef108f7218d01f8b57d588e904680c03f688eb16.tar.gz gsoc2013-evolution-ef108f7218d01f8b57d588e904680c03f688eb16.tar.zst gsoc2013-evolution-ef108f7218d01f8b57d588e904680c03f688eb16.zip |
Added closing ) for "not starts with" subject rule. Added closing ) for
2002-04-10 Not Zed <NotZed@Ximian.com>
* filtertypes.xml: Added closing ) for "not starts with" subject
rule.
Added closing ) for all the other broken rules too ...
svn path=/trunk/; revision=16408
-rw-r--r-- | filter/ChangeLog | 1 | ||||
-rw-r--r-- | filter/filtertypes.xml | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 137b0ed385..eac1cdaaeb 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -2,6 +2,7 @@ * filtertypes.xml: Added closing ) for "not starts with" subject rule. + Added closing ) for all the other broken rules too ... 2002-04-04 Dan Winship <danw@ximian.com> diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml index c6bed96797..cf7fd3c35d 100644 --- a/filter/filtertypes.xml +++ b/filter/filtertypes.xml @@ -174,7 +174,7 @@ <option value="is not"> <title>is not</title> <code> - (match-all (not (header-matches "Subject" ${subject})) + (match-all (not (header-matches "Subject" ${subject}))) </code> </option> <option value="starts with"> @@ -198,7 +198,7 @@ <option value="not ends with"> <title>does not end with</title> <code> - (match-all (not (header-ends-with "Subject" ${subject})) + (match-all (not (header-ends-with "Subject" ${subject}))) </code> </option> <option value="matches soundex"> @@ -242,7 +242,7 @@ <option value="is not"> <title>is not</title> <code> - (match-all (not (header-matches ${header-field} ${word})) + (match-all (not (header-matches ${header-field} ${word}))) </code> </option> <option value="starts with"> @@ -254,7 +254,7 @@ <option value="not starts with"> <title>does not start with</title> <code> - (match-all (not (header-starts-with ${header-field} ${word})) + (match-all (not (header-starts-with ${header-field} ${word}))) </code> </option> <option value="ends with"> @@ -266,7 +266,7 @@ <option value="not ends with"> <title>does not end with</title> <code> - (match-all (not (header-ends-with ${header-field} ${word})) + (match-all (not (header-ends-with ${header-field} ${word}))) </code> </option> <option value="exists"> |