aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | * Bumped versions post-releaseDavid Lawrence2018-02-161-1/+1
| | | |
| | * | Merge branch 'master' into bugstestRobin H. Johnson2019-11-301-0/+1
| | |\ \
| * | \ \ Merge remote-tracking branch 'origin/master' into bugstestRobin H. Johnson2020-01-293-3/+4
| |\ \ \ \ | |/ / / / |/| / / / | |/ / / | | | | | | | | Master gained some changes that didn't stage in bugstest first. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* | / / Gentoo: alpha is now ~arch-onlygentoo-5.0.4.15Michał Górny2020-01-262-3/+3
| |/ / |/| | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | bug template: Add a link to clone in same productgentoo-5.0.4.14Michał Górny2019-10-311-0/+4
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | attachment: Add a note about file read permissionsMichał Górny2019-10-311-0/+1
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | Revert "Try reenabling SecureMail"Michał Górny2019-10-311-0/+0
| | | | | | | | | | | | | | | | | | The attempt failed. Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | Try reenabling SecureMailgentoo-5.0.4.13Michał Górny2019-10-161-0/+0
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * | Try reenabling SecureMailMichał Górny2019-10-151-0/+0
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
| * | Merge branch 'master' into bugstestMichał Górny2019-10-152-6/+0
| |\ \ | |/ / |/| |
* | | Remove BSD from arch team listgentoo-5.0.4.12Michał Górny2019-10-112-6/+0
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | Do not add cloned bug to 'depends on'gentoo-5.0.4.11Michał Górny2019-09-131-1/+1
| | | | | | | | | | | | | | | Bug: https://bugs.gentoo.org/521230 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | Remove 'This bug was ... clone of ...' text from default commentMichał Górny2019-09-131-5/+0
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* | | Fix cloning bugs with 'Gentoo Linux' productgentoo-5.0.4.10Michał Górny2019-09-131-2/+1
| | | | | | | | | | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>