Open
Bug 1285998
Opened 9 years ago
Updated 6 years ago
Provide search field for cf_crash_signature that searches inside each crash signature specially
Categories
(bugzilla.mozilla.org :: Search, enhancement)
Tracking
()
NEW
People
(Reporter: dylan, Unassigned)
References
(Blocks 1 open bug)
Details
(Keywords: bugzilla-search)
Crash signatures can be in the form of [@ FOO], [ @ FOO ], and variations of that theme. It would be nice if a user could just search for "FOO" and return those. This is possible with a custom search field
Comment 1•9 years ago
|
||
I find things by searching for "FOO". Here's some working code:
var params = {
include_fields: 'id,summary,status,resolution',
f1: 'cf_crash_signature',
o1: 'casesubstring',
v1: signature,
};
$.getJSON('https://bugzilla.mozilla.org/rest/bug', params)
That `signature` there is not `[@` or anything like that.
Comment 2•9 years ago
|
||
Peter, I believe the issue with your query is that it will not only match "FOO", but any signature that contains "FOO".
For example, for the signature 'js::' you would match bug 1280591 (correctly), but also bug 1259214 (incorrectly).
Comment 3•9 years ago
|
||
(In reply to Marco Castelluccio [:marco] from comment #2)
> Peter, I believe the issue with your query is that it will not only match
> "FOO", but any signature that contains "FOO".
> For example, for the signature 'js::' you would match bug 1280591
> (correctly), but also bug 1259214 (incorrectly).
Yeah. That makes sense. I figured that out later. Realistically, WE have few signatures that are subsets of others.
Keywords: bugzilla-search
Blocks: 1354315
Updated•7 years ago
|
Type: defect → enhancement
| Reporter | ||
Updated•6 years ago
|
Assignee: dylan → nobody
You need to log in
before you can comment on or make changes to this bug.
Description
•