[evolution-patches] #42636, vfolder/search 'subject begins with' failing
- From: Not Zed <notzed ximian com>
- To: evolution-patches ximian com
- Subject: [evolution-patches] #42636, vfolder/search 'subject begins with' failing
- Date: 05 Aug 2003 16:57:41 -0400
simple fix, the s-expressions were broken in the vfoldertypes.xml file.
Index: filter/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/filter/ChangeLog,v
retrieving revision 1.371
diff -u -3 -r1.371 ChangeLog
--- filter/ChangeLog 13 Jun 2003 17:26:40 -0000 1.371
+++ filter/ChangeLog 5 Aug 2003 20:56:52 -0000
@@ -1,3 +1,17 @@
+2003-08-05 Not Zed <NotZed Ximian com>
+
+ ** See bug #42636.
+
+ * vfoldertypes.xml: Fix some of the subject rules, they were
+ missing matching ')'s.
+
+2003-08-01 Not Zed <NotZed Ximian com>
+
+ ** See bug #47208.
+
+ * filter-code.c (build_code): wrap the expression in a match-all
+ so boolean expressions work properly for folder searches.
+
2003-06-13 Larry Ewing <lewing ximian com>
* filter-source.c (filter_source_finalize): free current_url.
Index: filter/vfoldertypes.xml
===================================================================
RCS file: /cvs/gnome/evolution/filter/vfoldertypes.xml,v
retrieving revision 1.26
diff -u -3 -r1.26 vfoldertypes.xml
--- filter/vfoldertypes.xml 16 Jul 2002 02:36:20 -0000 1.26
+++ filter/vfoldertypes.xml 5 Aug 2003 20:56:52 -0000
@@ -139,7 +139,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">
@@ -151,7 +151,7 @@
<option value="not starts with">
<title>does not start with</title>
<code>
- (match-all (not (header-starts-with "Subject" ${subject}))
+ (match-all (not (header-starts-with "Subject" ${subject})))
</code>
</option>
<option value="ends with">
@@ -163,7 +163,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>
</input>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]