coderbone / arsenalsuite

Automatically exported from code.google.com/p/arsenalsuite
GNU General Public License v2.0
1 stars 1 forks source link

Re-visit column filters with additional capabilities #46

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Consider the following use cases for column filters:

* regex matching  ( ~^Cou.*copy )
* range matching  ( > N )
* list matching ( comma delimited list of values - makes it impossible to 
search for commas )

Original issue reported on code.google.com by barry.ro...@gmail.com on 7 Dec 2010 at 5:06

GoogleCodeExporter commented 8 years ago

Original comment by jmuenzner on 7 Dec 2010 at 5:58

GoogleCodeExporter commented 8 years ago
Regex matching is done. It does not need ~, it will match normal strings using 
regexp as well (no performance issues were registered).

This includes list matching by using regular expressions like:
  barry.rob.*|jay.m.*
or
  user1|user2|user3
etc

Range matching could be done with regexp as well in most cases.
To be evaluated.

Original comment by jmuenzner on 10 Jan 2011 at 11:02