.issues/cec60e25154133d3/new/1259365663.M969393P10754Q1.vlan-laptop
author John Kozak <jk@thameslighter.net>
Fri, 14 Dec 2018 13:07:34 +0000
changeset 94 c34c3ad7a25d
parent 47 1f5ed31cc92a
permissions -rwxr-xr-x
update to 4.8 API

From: Andrey Vlasovskikh <andrey.vlasovskikh@gmail.com>
Date: Sat, 28 Nov 2009 02:30:08
State: new
Subject: Add more filter expressions: ~=, !=, !~=
Message-Id: <cec60e25154133d3-0-artemis@vlan-laptop>

At this moment only exact `=` is supported in filters.

I propose adding the following constructs:

* `~=` for "contains"
* `!~=` for "does not contain"
* `!=` for "is not equal to"

Some examples of filters that use these constructs are provided below.

All the tickes by John Smith that are not fixed:

    $ hg ilist -p from~=Smith -p state!=fixed

All the tickets of John Smith by specifying his email:

    $ hg ilist -p to=~smith@example.com

All the tickets of high priority (i. e. of `critical` priority or not
prioritized ones), notice that the logical "or" should be used for joining the
same properties:

    $ hg ilist -p priority=critical -p priority!=''