aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* BugUrl: enhance Gerrit regexHEADgentoo-5.0.6.25masterSam James2023-01-301-0/+7
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* BugUrl: consistency changes for GerritSam James2023-01-301-2/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* BugUrl: style tweaks for consistency in Chromium.pmSam James2023-01-301-21/+21
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* BugUrl: add Gerrit (from Eclipse)gentoo-5.0.6.24Sam James2023-01-303-0/+47
| | | | | | From https://github.com/eclipsewebmaster/eclipse-bugzilla/commit/161858aa8142316f4057a82d7b691eeaed741b3a. Signed-off-by: Sam James <sam@gentoo.org>
* Bug 1252782 - can't add a "See Also" to a Chromium bug on bugs.chromium.orggentoo-5.0.6.23David Lawrence2023-01-303-0/+51
| | | | (cherry picked from commit 3af55bfe0bd10a85b7cd69e26a19034a6d2e78f5)
* Bug 919122 - support for sourceforge.net Allura bugs in see_also field. r=gerv.Matt Selsky2023-01-302-7/+25
| | | | | (cherry picked from commit 34f2b77f153f9f5ab4a4ef6723dcc31fff50a4d9) Signed-off-by: Sam James <sam@gentoo.org>
* Add a custom 500 error page explaining attaching problemsgentoo-5.0.6.22Michał Górny2023-01-091-0/+37
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Try treating Gentoo Bugzilla short URLs as local in see alsogentoo-5.0.6.21Michał Górny2022-12-031-11/+7
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Enable short Gentoo Bugzilla URLs in "See Also"Michał Górny2022-12-032-0/+49
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Correct arch groupinggentoo-5.0.6.20Michał Górny2022-05-142-8/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* extensions/Gentoo: loong -> Loonggentoo-5.0.6.19Sam James2022-05-062-2/+2
| | | | | | | xen0n explains it's a single Chinese character so makes more sense capitalised. Signed-off-by: Sam James <sam@gentoo.org>
* extensions/Gentoo: LOONG -> loonggentoo-5.0.6.18Sam James2022-04-242-2/+2
| | | | | | Looks better, I think. Never seen 'LOONG' in the wild. Signed-off-by: Sam James <sam@gentoo.org>
* extensions/Gentoo: add loong to arch listgentoo-5.0.6.17Sam James2022-04-242-0/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* Bug 1535376 - add support for upstream phabricator to the see-also fieldsgentoo-5.0.6.16dklawren2022-02-183-0/+43
| | | | | | (from: https://github.com/mozilla-bteam/bmo/commit/fc3a97a79e15a15b8c66f9ff8088dd2b015d5ca4) Signed-off-by: Sam James <sam@gentoo.org>
* template: add status_whiteboard to email headersgentoo-5.0.6.15bugmail-whiteboardRobin H. Johnson2021-10-261-0/+1
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* Add an extension to block spam from new accountsgentoo-5.0.6.14Michał Górny2021-08-214-0/+98
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Bug 1645768 - Please add 'See Also' support for GitLabgentoo-5.0.6.13David Lawrence2021-08-152-3/+4
| | | | | | | Taken from https://github.com/mozilla-bteam/bmo/pull/1584. Thanks to asturm for digging it up. Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Bug 1575003 - Can't link to gitlab issues in the "see also" fielddklawren2021-08-152-0/+46
| | | | | | | Patch from https://github.com/mozilla-bteam/bmo/commit/3751928389c0062877ac23b5040226f849a88cfd. Thanks to asturm for digging it up. Signed-off-by: Michał Górny <mgorny@gentoo.org>
* Fix sending bug mail after perl upgradegentoo-5.0.6.12Michał Górny2021-08-071-4/+4
| | | | | | Patch taken from Fedora's .src.rpm. Thanks to dilfridge for finding it. Bug: https://bugzilla.redhat.com/show_bug.cgi?id=1855962.
* fix riscv for new bugsgentoo-5.0.6.11Mikle Kolyada2021-03-141-1/+1
| | | | Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* extensions/Gentoo/web: remove junk from PNG filegentoo-5.0.6.10Robin H. Johnson2020-08-071-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Optimize the size of `gentoo_org.png` by removing all non-visual information and compressing the file better losslessly. The old file contained significant data in PNG chunks of type ancillary & private (see libpng reference) types prVW, mkBF, mkTS, mkBS, mkBT. They were clearly created by Adobe Fireworks CS3. `pngcrush` implicitly removes those, but does not remove textual information by default, which was ALSO inserted by Adobe Fireworks. The `sBIT` chunk is not needed in our use case, leaving `pHYs` as the only non-critical chunk per the PNG specification. `pHYs` is kept because it provides DPI information needed for HiDPI displays. ``` pngcrush \ -reduce \ -brute \ -rem tEXt \ -rem iTXt \ -rem sBIT \ gentoo_org.png.old \ gentoo_org.png.new ``` Size: Before: 47637 After: 1986 Saving: 45651 Reference: http://www.libpng.org/pub/png/spec/1.1/PNG-Encoders.html#E.Use-of-private-chunks Closes: https://bugs.gentoo.org/736308 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* AttachmentFilter: Exclude php files as wellgentoo-5.0.6.9Max Magorsch2020-05-081-2/+5
| | | | Signed-off-by: Max Magorsch <arzano@gentoo.org>
* Enable the AttachmentFiltergentoo-5.0.6.8Max Magorsch2020-05-081-0/+0
| | | | Signed-off-by: Max Magorsch <arzano@gentoo.org>
* AttachmentFilter: Add missing Bugzilla::Error importgentoo-5.0.6.7Max Magorsch2020-05-081-0/+1
| | | | Signed-off-by: Max Magorsch <arzano@gentoo.org>
* Add user error message for illegal html attachmentsgentoo-5.0.6.6Max Magorsch2020-05-062-1/+6
| | | | Signed-off-by: Max Magorsch <arzano@gentoo.org>
* Add the AttachmentFilter extensionMax Magorsch2020-05-063-0/+43
| | | | | | | | | | | The extension can be used to filter attachments. Currently it's filtering html attachments, based on the mime-type and the filename. The extension is currently disabled. Signed-off-by: Max Magorsch <arzano@gentoo.org>
* Update arch statesgentoo-5.0.6.5Michał Górny2020-04-262-8/+12
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* move IA64 to ~archgentoo-5.0.6.4Mikle Kolyada2020-04-092-2/+2
| | | | Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* Bug 1307003 - Add whoami endpointgentoo-5.0.6.3David Lawrence2020-03-303-1/+107
| | | | | | | | r=dylan (cherry picked from commit 31651c978e921e9e46cddd455f103fcf4b1a332a) (rebased for 5.0 by mgorny) Signed-off-by: Michał Górny <mgorny@gentoo.org>
* remove SuperH from CCgentoo-5.0.6.2Mikle Kolyada2020-03-262-2/+0
| | | | Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
* Fix typo in attachment permission messagegentoo-5.0.6.1Michał Górny2020-03-131-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* SecureMail: keep disabled in prodgentoo-5.0.6.0Robin H. Johnson2020-03-071-0/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* Bugzilla 5.0.6! Merge branch 'bugstest'Robin H. Johnson2020-03-07299-57954/+60652
|\ | | | | | | | | | | | | | | | | This update Gentoo production Bugzilla to 5.0.6. Please note that upstream reformatted all code, so the commit series has some extra hops to help reflect that change. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| * Bugzilla/Util: disable BiDi tr safetyRobin H. Johnson2020-01-301-1/+8
| | | | | | | | | | | | | | | | | | | | | | Perl Safe.pm and 5.30 don't interact well, the following expression is disabled. This introduces a small risk of BiDi characters being added to bugs. Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1588175 Reference: https://rt.perl.org/Public/Bug/Display.html?id=72942 Reference: https://github.com/Perl/perl5/issues/17271 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| * Merge branch 'bugstest-5.0.6' into bugstestRobin H. Johnson2020-01-29298-57954/+60645
| |\ | | | | | | | | | | | | | | | | | | Merge my 5.0.6 import changes. This is specifically a merge to make it easier to merge upstream changes again after the code reformatting. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| | * Merge tag 'release-5.0.6' into bugstestRobin H. Johnson2020-01-27104-321/+349
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | Merge upstream 5.0.6 release, now without conflicts after the problematic code reformatting change. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| | | * bump version and add release notes for 5.0.6release-5.0.6Dylan William Hardison2019-02-092-1/+5
| | | |
| | | * Bug 1526703 - Increase the size of the flagtype id columnDylan William Hardison2019-02-092-7/+30
| | | |
| | | * no bug - perltidy again, using the latest releasePerl Tidy2019-01-31101-298/+269
| | | | | | | | | | | | | | | | blame jeff
| | | * add perl-fmt scriptDylan William Hardison2019-01-311-0/+24
| | | |
| | | * Bug 1497042 - Enclose table names in CREATE queriesSébastien Santoro2019-01-301-3/+7
| | | |
| | | * update release notesrelease-5.0.5Dylan William Hardison2019-01-301-0/+9
| | | |
| | | * Bug 981487 - change bugs_fulltext from myisam to innodbDylan William Hardison2019-01-302-12/+5
| | | |
| | * | Merge commit '7f3a749d7bd78a3e4aee163f562d7e95b0954b44' into bugstestRobin H. Johnson2020-01-270-0/+0
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This looks like an empty merge, but this is needed to clean up Git merges behavior. Specifically, the Perl-Tidy process was run on the Gentoo state prior to this, and then the conflicts were ported back from the previous build. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| | | * no bug - reformat all the code using the new perltidy rulesPerl Tidy2019-01-30281-57005/+59679
| | | |
| | * | Gentoo-local version of 7f3a749d7bd78a3e4aee163f562d7e95b0954b44 w/ ↵Robin H. Johnson2019-12-01294-57956/+60589
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Perl-Tidy-20180220 Reformat all code using Perl-Tidy v20180220 and .perltidyrc from matching upstream 7f3a749d7bd78a3e4aee163f562d7e95b0954b44 commit. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| | * | Merge commit '3395d78cc8b0bd660e56f73a2689d495f2a22628' into bugstestRobin H. Johnson2019-11-306-3/+33
| | |\| | | | | | | | | | | | | | | | | | | | | Merging in upstream changes incrementally. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
| | | * Bug 1226123 - Email addresses with an apostrophe in them break the "Send ↵Arshad Kazmi2018-09-251-1/+1
| | | | | | | | | | | | | | | | Mail to Bug Assignees" button in buglists
| | | * add a new hook: template_after_create (#60)Dylan William Hardison2018-03-213-0/+29
| | | |
| | | * bug 1429243 - Fix default values for version and op_sys when importing from ↵Quanah Gibson-Mount2018-03-201-1/+2
| | | | | | | | | | | | | | | | Jitterbugs