Files
watcher/watcher
Vincent Françoise 77c07a466f Added filter operators
In this changeset, I refactored the DB filter system to support
comparison operators using a django-like syntax.
A filter can take 2 forms:

- "<FIELDNAME>" which is a syntactic sugar for "<FIELDNAME>__eq"
- "<FIELDNAME>__<OPERATOR>" where <OPERATOR> is the comparison operator
  to be used.

Here is the list of the supported operators:

- 'eq' (==)
- 'neq' (!=)
- 'gt' (>)
- 'gte' (>=)
- 'lt' (<)
- 'lte' (<=)
- 'in' (in)
- 'notin' (not in)

Change-Id: I53a61d50a3253342a40f0ff87cb5612ed57a3bd1
2016-06-17 10:37:44 +02:00
..
2016-06-10 17:08:28 +02:00
2016-06-17 10:37:44 +02:00
2016-06-17 10:37:44 +02:00
2016-06-10 17:08:28 +02:00
2016-06-17 10:37:44 +02:00
2015-10-22 17:04:14 +02:00
2016-06-08 14:00:43 +02:00
2016-04-22 10:33:21 +02:00