Closed
Bug 1212597
Opened 10 years ago
Closed 5 years ago
Buglink not working
Categories
(Webtools Graveyard :: DXR, defect)
Webtools Graveyard
DXR
Tracking
(firefox44 affected)
RESOLVED
WONTFIX
| Tracking | Status | |
|---|---|---|
| firefox44 | --- | affected |
People
(Reporter: erik, Unassigned)
Details
https://dxr.mozilla.org/comm-central/source/mailnews/addrbook/src/nsAbLDAPDirectoryQuery.cpp#599 isn't linked. Perhaps it's a misconfig, though the pattern looks good to me: https://github.com/klibby/dxr-docker/blob/master/dxr.config#L37-L40
| Reporter | ||
Comment 1•10 years ago
|
||
Saying...
regex = "(?i)bug\s+#?([0-9]+)"
...ends up giving you quotes in the pattern. Saying...
regex = (?i)bug\s+#?([0-9]+)
...gives up at the # because it looks like a comment.
| Reporter | ||
Comment 2•10 years ago
|
||
It looks like a configobj bug, though the intended behavior is so underspecified that it's hard to tell. In the meantime, I submitted a PR that works around it: https://github.com/klibby/dxr-docker/pull/6.
| Reporter | ||
Comment 3•10 years ago
|
||
The configobj bug: https://github.com/DiffSK/configobj/issues/97
Comment 4•5 years ago
|
||
DXR is no longer available. Searchfox is now replacing it.
See meta bug 1669906 & https://groups.google.com/g/mozilla.dev.platform/c/jDRjrq3l-CY for more details.
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → WONTFIX
Updated•5 years ago
|
Product: Webtools → Webtools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•