new port-search wildcarding - bad idea?

* for an exact match use "quoting", a bit like what Google does
to enforce a search term

* otherwise terms are assumed to be wildcard bounded and case insensitive

* without quotes, * and ? characters are supported for multi and single
character wildcards.

we could revert this commit if we don't like it.
This commit is contained in:
Oliver Gorwits
2013-09-08 22:41:17 +01:00
parent e77a806f65
commit 947614ddd8
9 changed files with 24 additions and 14 deletions

View File

@@ -68,7 +68,7 @@
var port = $(this).text();
port = $.trim(port);
portfilter.val(port);
portfilter.val('"'+ port +'"');
$('.nd_field-clear-icon').show();
$('#ports_form').trigger('submit');