| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
We don't have the modal view on our BZ.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
Copy _get_all_group_names from Bugzilla/Config/GroupSecurity.pm.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
_get_all_group_names is the older name, so use that.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
Our BZ doesn't have the bool type.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Cherry-picked from 0ba9c1f12813a685dff8e15c5c68893668ceb4cb in bmo.git.
|
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
From https://github.com/eclipsewebmaster/eclipse-bugzilla/commit/161858aa8142316f4057a82d7b691eeaed741b3a.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
(cherry picked from commit 3af55bfe0bd10a85b7cd69e26a19034a6d2e78f5)
|
|
|
|
|
| |
(cherry picked from commit 34f2b77f153f9f5ab4a4ef6723dcc31fff50a4d9)
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
|
|
| |
xen0n explains it's a single Chinese character so makes more sense
capitalised.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
Looks better, I think. Never seen 'LOONG' in the wild.
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
|
|
| |
(from: https://github.com/mozilla-bteam/bmo/commit/fc3a97a79e15a15b8c66f9ff8088dd2b015d5ca4)
Signed-off-by: Sam James <sam@gentoo.org>
|
|
|
|
| |
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
| |
Patch taken from Fedora's .src.rpm. Thanks to dilfridge for finding it.
Bug: https://bugzilla.redhat.com/show_bug.cgi?id=1855962.
|
|
|
|
| |
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
| |
Signed-off-by: Max Magorsch <arzano@gentoo.org>
|
|
|
|
| |
Signed-off-by: Max Magorsch <arzano@gentoo.org>
|
|
|
|
| |
Signed-off-by: Max Magorsch <arzano@gentoo.org>
|
|
|
|
| |
Signed-off-by: Max Magorsch <arzano@gentoo.org>
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
|
|
|
|
|
|
|
|
| |
r=dylan
(cherry picked from commit 31651c978e921e9e46cddd455f103fcf4b1a332a)
(rebased for 5.0 by mgorny)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
|
|
|
|
| |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
|
|
|
| |
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|
|\
| |
| |
| |
| |
| |
| |
| |
| | |
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>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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 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 upstream 5.0.6 release, now without conflicts after the
problematic code reformatting change.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
|