diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-11 09:36:14 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-11 09:36:14 +0800 |
commit | 5c2d5ded3f02254945c91b393dd73a9af7b67051 (patch) | |
tree | d65ffa93ec37f0617b185fea54f3caed2bf3b400 /addressbook/gui/search | |
parent | e95537c77b48fa69b862a41deccb4f7d196b495c (diff) | |
download | gsoc2013-evolution-5c2d5ded3f02254945c91b393dd73a9af7b67051.tar.gz gsoc2013-evolution-5c2d5ded3f02254945c91b393dd73a9af7b67051.tar.zst gsoc2013-evolution-5c2d5ded3f02254945c91b393dd73a9af7b67051.zip |
New search dialog for addressbook.
2000-08-10 Christopher James Lahey <clahey@helixcode.com>
* gui/search/, gui/search/addresstypes.xml: New search dialog for
addressbook.
svn path=/trunk/; revision=4715
Diffstat (limited to 'addressbook/gui/search')
-rw-r--r-- | addressbook/gui/search/addresstypes.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/addressbook/gui/search/addresstypes.xml b/addressbook/gui/search/addresstypes.xml new file mode 100644 index 0000000000..57fc10d330 --- /dev/null +++ b/addressbook/gui/search/addresstypes.xml @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<filterdescription> +<partset> + <part name="name"> + <title>Sender</title> + <input type="optionlist" name="sender-type"> + <option value="contains"> + <title>contains</title> + <code>(contains "fullname" ${name}))</code> + </option> + <option value="not contains"> + <title>does not contain</title> + <code>(not (contains "fullname" ${name})))</code> + </option> + </input> + <input type="string" name="name"/> + </part> + <part name="email"> + <title>Sender</title> + <input type="optionlist" name="sender-type"> + <option value="contains"> + <title>contains</title> + <code>(contains "email" ${email}))</code> + </option> + <option value="not contains"> + <title>does not contain</title> + <code>(not (contains "email" ${email})))</code> + </option> + </input> + <input type="string" name="email"/> + </part> + <part name="sexp"> + <title>Expression</title> + <input type="code" name="code"/> + </part> +</partset> +</filterdescription> |