aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filtertypes.xml
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-10 07:24:02 +0800
committerDan Winship <danw@src.gnome.org>2000-07-10 07:24:02 +0800
commit7ffeca2735c0d928be4f5379de136e0606ccb652 (patch)
tree1558695ee9b2c7e0822b33b7d7b5b2b7c8a0a223 /filter/filtertypes.xml
parent90d51074c9c7c5284e3ff3e0a0eb4b5f5d96761f (diff)
downloadgsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar.gz
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar.bz2
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar.lz
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar.xz
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.tar.zst
gsoc2013-evolution-7ffeca2735c0d928be4f5379de136e0606ccb652.zip
add a "string" type
* filter-xml.[ch]: add a "string" type * filtertype.xml, vfoldertypes.xml: Use type="string" rather than "folder" for subject/body matching. * filter-arg-types.c: Update some strings for "text" input. Fix some warnings (including one that pointed out a real bug). * filter-arg.c, filter-druid.c, filter-format.c: fix warnings svn path=/trunk/; revision=4025
Diffstat (limited to 'filter/filtertypes.xml')
-rw-r--r--filter/filtertypes.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/filtertypes.xml b/filter/filtertypes.xml
index dcba45dc00..2a94de574f 100644
--- a/filter/filtertypes.xml
+++ b/filter/filtertypes.xml
@@ -20,14 +20,14 @@
<code>
(match-all (header-contains "Subject" ${words}))
</code>
- <description lang="en">The Subject contains <source type="folder" name="words">words</source>.</description>
+ <description lang="en">The Subject contains <source type="string" name="words">words</source>.</description>
</rule>
<rule name="body-contains">
<code>
(match-all (body-contains ${words}))
</code>
- <description lang="en">The body contains <source type="folder" name="words">words</source>.</description>
+ <description lang="en">The body contains <source type="string" name="words">words</source>.</description>
</rule>
<rule name="cc-address">
@@ -85,7 +85,7 @@
<code>
(match-all (not (body-contains ${words})))
</code>
- <description lang="en">The body does not contain <source type="folder" name="words">words</source>.</description>
+ <description lang="en">The body does not contain <source type="string" name="words">words</source>.</description>
</rule>
</ruleset>