aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/search/addresstypes.xml
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2000-08-23 17:09:21 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-08-23 17:09:21 +0800
commitf05ae9ba25935518ca945a4bf4fe80a6a4ff38e7 (patch)
treec12caa3307aa54884ca71fcfe6793d0763978f31 /addressbook/gui/search/addresstypes.xml
parentc3d7a35a9f00bae329978b56abb09c1500797b49 (diff)
downloadgsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar.gz
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar.bz2
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar.lz
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar.xz
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.tar.zst
gsoc2013-evolution-f05ae9ba25935518ca945a4bf4fe80a6a4ff38e7.zip
Fixed fullname->full_name for search field.
2000-08-14 Not Zed <NotZed@HelixCode.com> * gui/search/addresstypes.xml: Fixed fullname->full_name for search field. * gui/search/e-addressbook-search-dialog.c (get_widget): Check we actually got any parts to build the dialogue with. 2000-08-13 Not Zed <NotZed@HelixCode.com> * gui/component/addressbook-component.c (owner_set_cb): Set the global_shell_client nastyhack when we know it. This is only required to link with the filter code ... * gui/component/Makefile.am (evolution_addressbook_LDADD): Added libfilter.a to the link line. * gui/search/Makefile.am (noinst_LIBRARIES): Change library name from libaddressbooksearchdialog to libaddressbooksearch, as used elsewhere. * gui/search/e-addressbook-search-dialog.c (get_widget): Implement. (get_query): Likewise. (e_addressbook_search_dialog_destroy): Unref filter stuff when done. * gui/component/addressbook.c (control_deactivate): Added chris's patch to put the meny in svn path=/trunk/; revision=4980
Diffstat (limited to 'addressbook/gui/search/addresstypes.xml')
-rw-r--r--addressbook/gui/search/addresstypes.xml38
1 files changed, 31 insertions, 7 deletions
diff --git a/addressbook/gui/search/addresstypes.xml b/addressbook/gui/search/addresstypes.xml
index d855561cce..bf64e841b0 100644
--- a/addressbook/gui/search/addresstypes.xml
+++ b/addressbook/gui/search/addresstypes.xml
@@ -2,32 +2,56 @@
<filterdescription>
<partset>
<part name="name">
- <title>Sender</title>
+ <title>Name</title>
<input type="optionlist" name="name-type">
<option value="contains">
<title>contains</title>
- <code>(contains "fullname" ${name}))</code>
+ <code>(contains "full_name" ${name})</code>
</option>
<option value="not contains">
<title>does not contain</title>
- <code>(not (contains "fullname" ${name})))</code>
+ <code>(not (contains "full_name" ${name}))</code>
+ </option>
+ <option value="is">
+ <title>is</title>
+ <code>(is "full_name" ${name})))</code>
+ </option>
+ <option value="is not">
+ <title>is not</title>
+ <code>(not (is "full_name" ${name}))</code>
+ </option>
+ <option value="begin">
+ <title>begins with</title>
+ <code>(beginswith "full_name" ${name})</code>
+ </option>
+ <option value="end">
+ <title>ends in</title>
+ <code>(endswith "full_name" ${name})</code>
</option>
</input>
<input type="string" name="name"/>
</part>
<part name="email">
- <title>Sender</title>
+ <title>Email</title>
<input type="optionlist" name="email-type">
<option value="contains">
<title>contains</title>
- <code>(contains "email" ${email}))</code>
+ <code>(contains "email" ${email})</code>
</option>
<option value="not contains">
<title>does not contain</title>
- <code>(not (contains "email" ${email})))</code>
+ <code>(not (contains "email" ${email}))</code>
+ </option>
+ <option value="is">
+ <title>is</title>
+ <code>(is "email" ${email})</code>
+ </option>
+ <option value="is not">
+ <title>is not</title>
+ <code>(not (is "email" ${email}))</code>
</option>
</input>
- <input type="string" name="email"/>
+ <input type="address" name="email"/>
</part>
<part name="sexp">
<title>Expression</title>