diff options
author | Francois Marier <francois@debian.org> | 2008-06-29 21:51:31 +1200 |
---|---|---|
committer | Francois Marier <francois@debian.org> | 2008-06-29 21:51:31 +1200 |
commit | 03a60521d41962fb3d36e8e8002e9bba51796ff6 (patch) | |
tree | 36150e8a410695002674e5ad202c425d1796b0c9 /issues/i_99d9dd74.cil | |
parent | 42280f662d3ce4affb00eb68a22a081dfb951395 (diff) |
Imported Upstream version v0.3.0upstream/v0.3.0
Diffstat (limited to 'issues/i_99d9dd74.cil')
-rw-r--r-- | issues/i_99d9dd74.cil | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/issues/i_99d9dd74.cil b/issues/i_99d9dd74.cil new file mode 100644 index 0000000..208d1b9 --- /dev/null +++ b/issues/i_99d9dd74.cil @@ -0,0 +1,31 @@ +Summary: Add a filter '--grep=regex' +Status: New +CreatedBy: Andrew Chilton <andychilton@gmail.com> +AssignedTo: Andrew Chilton <andychilton@gmail.com> +Label: Milestone-Future +Label: Release-v0.2.1 +Label: Type-Enhancement +Inserted: 2008-06-24T12:16:57 +Updated: 2008-06-27T23:59:48 + +Having a 'grep' filter would be quite powerful. It could be used in the 'list' +and 'summary' commands. It would be good if it accepts Perl regexes and might +work a little something like this: + +Find all issues with 'screenshot' in them: + + $ cil list --grep=screenshot + +Find any issue that mentions one of the following: + + $ cil list --grep=css|html|javascript + +This one would be directed at the 'CreatedBy' and 'AssignedTo' fields: + + $ cil list --grep=andychilton@ + +This one would probably be targeted at the 'Label' field: + + $ cil list --grep=^Release-v0.2 + +So accepting Perl regexes would be excellent. |