Make the date comparisons read the same as the ones in filtertypes.xml
2002-01-02 Jeffrey Stedfast <fejj@ximian.com> * vfoldertypes.xml: Make the date comparisons read the same as the ones in filtertypes.xml svn path=/trunk/; revision=15232
This commit is contained in:
committed by
Jeffrey Stedfast
parent
2ad2e53049
commit
c3cc401ac8
@ -1,3 +1,8 @@
|
||||
2002-01-02 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* vfoldertypes.xml: Make the date comparisons read the same as the
|
||||
ones in filtertypes.xml
|
||||
|
||||
2001-12-17 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* filtertypes.xml: Add new action to execute a shell command.
|
||||
|
||||
@ -337,13 +337,13 @@
|
||||
</code>
|
||||
</option>
|
||||
<option value="before">
|
||||
<title>was before</title>
|
||||
<title>is before</title>
|
||||
<code>
|
||||
(match-all (< (get-sent-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="after">
|
||||
<title>was after</title>
|
||||
<title>is after</title>
|
||||
<code>
|
||||
(match-all (> (get-sent-date) ${versus}))
|
||||
</code>
|
||||
@ -368,13 +368,13 @@
|
||||
</code>
|
||||
</option>
|
||||
<option value="before">
|
||||
<title>was before</title>
|
||||
<title>is before</title>
|
||||
<code>
|
||||
(match-all (< (get-received-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="after">
|
||||
<title>was after</title>
|
||||
<title>is after</title>
|
||||
<code>
|
||||
(match-all (> (get-received-date) ${versus}))
|
||||
</code>
|
||||
|
||||
@ -190,70 +190,68 @@
|
||||
<part name="sexp">
|
||||
<title>Expression</title>
|
||||
<input type="code" name="code"/>
|
||||
</part>
|
||||
</part>
|
||||
|
||||
<part name="sent-date">
|
||||
<title>Message was sent</title>
|
||||
<title>Date sent</title>
|
||||
<input type="optionlist" name="date-spec-type">
|
||||
<option value="is">
|
||||
<title>is</title>
|
||||
<code>
|
||||
(match-all (= (get-sent-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="is-not">
|
||||
<title>is not</title>
|
||||
<code>
|
||||
(match-all (not (= (get-sent-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
<option value="before">
|
||||
<title>before</title>
|
||||
<title>is before</title>
|
||||
<code>
|
||||
(match-all (< (get-sent-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="on-or-before">
|
||||
<title>on or before</title>
|
||||
<code>
|
||||
(match-all (not (> (get-sent-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
<option value="after">
|
||||
<title>after</title>
|
||||
<title>is after</title>
|
||||
<code>
|
||||
(match-all (> (get-sent-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="on-or-after">
|
||||
<title>on or after</title>
|
||||
<code>
|
||||
(match-all (not (< (get-sent-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
</input>
|
||||
<input type="datespec" name="versus">
|
||||
</input>
|
||||
<input type="datespec" name="versus"/>
|
||||
</part>
|
||||
|
||||
<part name="recv-date">
|
||||
<title>Message was received</title>
|
||||
<title>Date received</title>
|
||||
<input type="optionlist" name="date-spec-type">
|
||||
<option value="is">
|
||||
<title>is</title>
|
||||
<code>
|
||||
(match-all (= (get-received-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="is-not">
|
||||
<title>is not</title>
|
||||
<code>
|
||||
(match-all (not (= (get-received-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
<option value="before">
|
||||
<title>before</title>
|
||||
<title>is before</title>
|
||||
<code>
|
||||
(match-all (< (get-received-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="on-or-before">
|
||||
<title>on or before</title>
|
||||
<code>
|
||||
(match-all (not (> (get-received-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
<option value="after">
|
||||
<title>after</title>
|
||||
<title>is after</title>
|
||||
<code>
|
||||
(match-all (> (get-received-date) ${versus}))
|
||||
</code>
|
||||
</option>
|
||||
<option value="on-or-after">
|
||||
<title>on or after</title>
|
||||
<code>
|
||||
(match-all (not (< (get-received-date) ${versus})))
|
||||
</code>
|
||||
</option>
|
||||
</input>
|
||||
<input type="datespec" name="versus">
|
||||
</input>
|
||||
</input>
|
||||
<input type="datespec" name="versus"/>
|
||||
</part>
|
||||
|
||||
<part name="status">
|
||||
|
||||
Reference in New Issue
Block a user