summaryrefslogtreecommitdiffstats
path: root/toolkit/components
Commit message (Collapse)AuthorAgeLines
* Issue #1263 - Part 1: Remove DiskSpaceWatcherwolfbeast2019-11-08-239/+0
|
* MoonchildProductions#1251 - Part 27: Fix ifdef style.athenian2002019-10-21-2/+2
| | | | This should do it for all the commits to files I changed, but while I'm in here I could probably go ahead and turn ALL the singular if defined statements into ifdef statements by using grep/find on the tree. On the other hand, perhaps we should do that as a separate issue so that this doesn't become a case of scope creep.
* MoonchildProductions#1251 - Part 4: Core build system changes, lots of ↵athenian2002019-10-21-0/+4
| | | | | | | | libevent/IPC junk. This is mostly ifdefs, but as you can see, Solaris is actually a lot like Linux. They're both more SysV than BSD at core, and most of the differences have more to do with Solaris not using glibc than anything else. I still need to audit a lot of these changes and understand why they're needed and what the alternative approaches are. After this patch, most of the core functionality needed to build Solaris is here.
* MoonchildProductions#1251 - Part 1: Restore initial Solaris support, fixed up.athenian2002019-10-21-4/+12
| | | | | | | | | | | | | | Compared with what Pale Moon had for Solaris originally, this is mostly the same zero point I started patching from, but I've made the following changes here after reviewing all this initial code I never looked at closely before. 1. In package-manifest.in for both Basilisk and Pale Moon, I've made the SPARC code for libfreebl not interefere with the x86 code, use the proper build flags, and also updated it to allow a SPARC64 build which is more likely to be used than the 32-bit SPARC code we had there. 2. See Mozilla bug #832272 and the old rules.mk patch from around Firefox 30 in oracle/solaris-userland. I believe they screwed up NSINSTALL on Solaris when they were trying to streamline the NSS buildsystem, because they started having unexplained issues with it around that time after Firefox 22 that they never properly resolved until Mozilla began building NSS with gyp files. I'm actually not even sure how relevant the thing they broke actually is to Solaris at this point, bug 665509 is so old it predates Firefox itself and goes back to the Mozilla suite days. I believe $(INSTALL) -t was wrong, and they meant $(NSINSTALL) -t because that makes more sense and is closer to what was there originally. It's what they have for WINNT, and it's possible a fix more like that could serve for Solaris as well. Alternatively, we could get rid of all these half-broken Makefiles and start building NSS with gyp files like Mozilla did. 3. I've completely cut out support for the Sun compiler and taken into account the reality that everyone builds Firefox (and therefore its forks) with GCC now on Solaris. This alone helped clean up a lot of the uglier parts of the code. 4. I've updated all remaining SOLARIS build flags to the newer XP_SOLARIS, because the SOLARIS flag is no longer set when building Solaris. 5. I've confirmed the workaround in gtxFontconfigFonts.cpp is no longer necessary. The Solaris people got impatient about implementing a half-baked patch for a fontconfig feature that wasn't ready yet back in 2009, and somehow convinced Mozilla to patch their software to work around it when really they should have just fixed or removed their broken fontconfig patch. The feature they wanted has since been implemented properly, and no version of Solaris still uses the broken patch that required this fix. If anyone had ever properly audited this code, it would have been removed a long time ago.
* Issue #1134: Reinstate postDataString for about:home searches.wolfbeast2019-08-10-2/+8
|
* Hide and disable open_all/cut/copy/delete/properties when openingwolfbeast2019-07-28-3/+7
| | | | | | bookmarks/history context menu with no selection This resolves #882 (by not offering options that can't be used)
* Revert "Capture delayed events and cancel as necessary."wolfbeast2019-07-18-2/+7
| | | | | | | | | Tag #1052 (backout). Backed out for creating issues like #1191 and other issue-less problems with e.g. losing the caret from text boxes. Of note: this was also backed out from m-c for similar reasons in Bug 1332433. This fixes #1191. This reverts commit 3424afccaebc71c4acd4fa9eadf519c408c5965b.
* Issue #1160 - Remove HotFix Preferences from TelemetryGaming4JC2019-07-05-10/+1
|
* Revert "Treat *.jnlp as an executable class file, like *.jar"wolfbeast2019-06-28-1/+1
| | | | | | | | | | | | | | | | | | | Rationale: This was a Mozilla oversight and/or error. This change has caused harm and is causing users to switch back to Chrome, Safari or Edge for their WebStart needs. JNLP is not an executable and should not be treated as such. JNLP should be treated the same as any (e.g. Word) document and allowed to be opened with the designated program. A JNLP file will not cause execution on a system unless it has a valid signature, and the user explicitly authorizes the launching based on information provided by the signature. Moreover, there will even be a check by the Java environment to see if the Java runtime (if there is one) is current, and prompt the user to update if required. This reverts commit 21495c58976e3cbbfe54d2e54d1fd67e36dff2a6 and modifies ApplicationReputation.cpp to keep the list in sync (was a discrepancy before).
* Make nsFind::Find actually use a string type as input.wolfbeast2019-05-29-1/+1
| | | | Futureproofing follow-up to b89570e31cfb84449241e363a595540b8810c217
* [places] Prevent some abuse of smart queries.wolfbeast2019-05-26-4/+6
|
* Merge pull request #1080 from Ascrod/readerviewMoonchild2019-05-06-292/+387
|\ | | | | Reader Updates
| * Bug 1429442 - Buttons in "type control" popup in reader mode should have ↵monikamaheshwari2019-04-27-0/+19
| | | | | | | | tooltips r=Gijs,MarcoZ
| * Bug 1151735 - Hide font panel when text is being selected r=GijsSonali92019-04-27-3/+7
| |
| * Bug 1422680 - simplify aboutReader.css font-size classes using CSS variables ↵monikamaheshwari2019-04-27-6/+3
| | | | | | | | r=Gijs
| * Bug 1399616 - add WP emoji styling to reader mode.Ascrod2019-04-27-0/+2
| |
| * Fix parse node limit preference. Tag #361.Ascrod2019-04-27-1/+1
| |
| * Replace explicit pref observer with lazy preference getters. Tag #361.Ascrod2019-04-27-33/+11
| |
| * Update surrounding code for new Readerable module. Tag #361.Ascrod2019-04-27-108/+134
| |
| * Update Readability from mozilla-central release branch (FF 66.0.3). Tag #361.Ascrod2019-04-27-166/+235
| |
* | Capture delayed events and cancel as necessary.wolfbeast2019-04-26-7/+2
| | | | | | | | Tag #1052
* | Don't use UpdateChannel.jsm in nsBlocklistService.jsMatt A. Tobin2019-04-25-7/+8
| |
* | Issue #1053 - Drop support Android and remove Fennec - Part 1b: Remove ↵Matt A. Tobin2019-04-23-11/+1
| | | | | | | | MOZ_FENNEC
* | Sort out search serviceMatt A. Tobin2019-04-23-5114/+20
| | | | | | | | The ESR52 implementation is now Basilisk specific and the older implementation is the shared toolkit one
* | Remove tests from search serviceMatt A. Tobin2019-04-23-5262/+0
| |
* | Merge pull request #1048 from Ascrod/geodefaultsNew Tobin Paradigm2019-04-23-850/+14
|\ \ | | | | | | Remove geo-specific selection of default search engines.
| * | Remove browser.search.region usage. Tag #245.Ascrod2019-04-20-17/+1
| | |
| * | Remove geoip lookup for search engine defaults. Tag #245.Ascrod2019-04-20-833/+13
| |/
* | Merge pull request #1045 from ThosRTanner/patch-1New Tobin Paradigm2019-04-21-2/+1
|\ \ | |/ |/| Remove unused parameter from call
| * Remove unused parameter from callThosRTanner2019-04-20-2/+1
| | | | | | Fixes #1043
* | Remove unused try/catch block. Tag #991.Ascrod2019-04-18-3/+0
| |
* | Merge branch 'master' into default-prefAscrod2019-04-18-4/+4
|\|
| * Remove various FxA testsMoonchild2019-04-18-4/+4
| |
* | Pref try/catch block fixup. Tag #991.Ascrod2019-04-13-10/+16
| |
* | Issue #991 Part 7: Toolkit ComponentsAscrod2019-04-13-204/+55
|/
* Issue #187: Remove solaris 1st party code OS checks.wolfbeast2019-03-30-11/+4
|
* Merge pull request #834 from g4jc/remove_contextidMoonchild2019-03-25-155/+41
|\ | | | | Issue #756 - Remove Contextual Identity
| * Issue #756 - Remove Contextual Identity from UnifiedCompleteGaming4JC2019-03-18-116/+40
| | | | | | | | reverts m-c 1287866
| * Issue #756 - Remove contextual identity from BackgroundPageThumbs.jsmGaming4JC2019-03-18-39/+1
| | | | | | | | reverts m-c 1279568, 1309699, 1310112
* | Remove obsolete getPref helpers.Ascrod2019-03-24-96/+31
|/
* Don't include nsDownloadManagerUI if the Communicator version is usedMatt A. Tobin2019-03-06-3/+4
| | | | Maintain backwards compatibility with MOZ_SUITE
* Revert "Don't include nsDownloadManagerUI if the Communicator version is used"Matt A. Tobin2019-03-06-4/+3
| | | | This reverts commit 853fe00ba0cb91d564031706ef82038e9a4619ed.
* Don't include nsDownloadManagerUI if the Communicator version is usedMatt A. Tobin2019-03-06-3/+4
| | | | Maintain backwards compatibility with MOZ_SUITE
* Make the Auth prompt DOS protection a browser-element opt-in feature.wolfbeast2019-03-01-10/+22
|
* WIP fix 1wolfbeast2019-02-28-19/+29
|
* Remove toolkit/components/maintenanceservice/wolfbeast2019-02-20-2525/+0
| | | | Tag #145
* Remove WebExtension support from the platform.wolfbeast2019-02-13-38714/+0
| | | | | | - Conditional code - WE APIs - WE toolkit theming
* Include blankthumb in the correct file.wolfbeast2019-02-05-5/+5
|
* Merge branch 'cycle_collector-work'wolfbeast2019-02-03-1/+0
|\
| * Merge branch 'master' into cycle_collector-workwolfbeast2019-01-29-3/+10
| |\