From owner-freebsd-gecko@freebsd.org Sun May 13 04:38:39 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 816E2FB461B for ; Sun, 13 May 2018 04:38:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 183EB70A14 for ; Sun, 13 May 2018 04:38:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CC876FB4619; Sun, 13 May 2018 04:38:38 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92322FB4617; Sun, 13 May 2018 04:38:38 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D08670A13; Sun, 13 May 2018 04:38:38 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 2A168460; Sun, 13 May 2018 04:38:38 +0000 (UTC) From: Jan Beich To: Stephen Gunn Cc: gecko@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: firefox-60.0_2,1 missing 'Print to LPR' References: Date: Sun, 13 May 2018 06:38:34 +0200 In-Reply-To: (Stephen Gunn's message of "Sat, 12 May 2018 16:23:21 -0500") Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 04:38:39 -0000 --=-=-= Content-Type: text/plain Stephen Gunn writes: > I'm running Firefox 60.0_2,1 on 11.1-RELEASE-p10. In the print > dialog, the option 'Print to LPR' no longer shows up, only 'Print to > File'. If I install firefox-esr, then 'Print to LPR' is again > present. LPR backend doesn't support PDF, so 'Print to LPR' disappeared after Firefox 59 removed GTK_PRINT_CAPABILITY_GENERATE_PS. Try the attached patch to confirm. https://bugzilla.mozilla.org/show_bug.cgi?id=1425188 https://bugzilla.mozilla.org/show_bug.cgi?id=1322653 --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=patch-revert-bug1425188 Content-Description: A patch to revert bug 1425188. Put under /usr/ports/www/firefox/files/ Revert bug 1425188 in order to restore 'Print to LPR' option. diff --git widget/gtk/nsDeviceContextSpecG.cpp widget/gtk/nsDeviceContextSpecG.cpp index a90f13b43b006..ca2449aa766f5 100644 --- widget/gtk/nsDeviceContextSpecG.cpp +++ widget/gtk/nsDeviceContextSpecG.cpp @@ -150,8 +150,8 @@ already_AddRefed nsDeviceContextSpecGTK::MakePrintTarget() // Determine the real format with some GTK magic if (format == nsIPrintSettings::kOutputFormatNative) { if (mIsPPreview) { - // There is nothing to detect on Print Preview, use PDF. - format = nsIPrintSettings::kOutputFormatPDF; + // There is nothing to detect on Print Preview, use PS. + format = nsIPrintSettings::kOutputFormatPS; } else { return nullptr; } diff --git widget/gtk/nsPrintDialogGTK.cpp widget/gtk/nsPrintDialogGTK.cpp index d499fd2f37729..75ec90c2f9c9a 100644 --- widget/gtk/nsPrintDialogGTK.cpp +++ widget/gtk/nsPrintDialogGTK.cpp @@ -180,6 +180,7 @@ nsPrintDialogWidgetGTK::nsPrintDialogWidgetGTK(nsPIDOMWindowOuter *aParent, | GTK_PRINT_CAPABILITY_REVERSE | GTK_PRINT_CAPABILITY_SCALE | GTK_PRINT_CAPABILITY_GENERATE_PDF + | GTK_PRINT_CAPABILITY_GENERATE_PS ) ); diff --git widget/gtk/nsPrintSettingsGTK.cpp widget/gtk/nsPrintSettingsGTK.cpp index 44dc63375a598..dafab1795d943 100644 --- widget/gtk/nsPrintSettingsGTK.cpp +++ widget/gtk/nsPrintSettingsGTK.cpp @@ -214,12 +214,22 @@ NS_IMETHODIMP nsPrintSettingsGTK::GetOutputFormat(int16_t *aOutputFormat) return rv; } - if (format == nsIPrintSettings::kOutputFormatNative && - GTK_IS_PRINTER(mGTKPrinter)) { - if (gtk_printer_accepts_pdf(mGTKPrinter)) { - format = nsIPrintSettings::kOutputFormatPDF; - } else { - format = nsIPrintSettings::kOutputFormatPS; + if (format == nsIPrintSettings::kOutputFormatNative) { + const gchar* fmtGTK = + gtk_print_settings_get(mPrintSettings, + GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT); + if (fmtGTK) { + if (nsDependentCString(fmtGTK).EqualsIgnoreCase("pdf")) { + format = nsIPrintSettings::kOutputFormatPDF; + } else { + format = nsIPrintSettings::kOutputFormatPS; + } + } else if (GTK_IS_PRINTER(mGTKPrinter)) { + if (gtk_printer_accepts_pdf(mGTKPrinter)) { + format = nsIPrintSettings::kOutputFormatPDF; + } else { + format = nsIPrintSettings::kOutputFormatPS; + } } } @@ -424,7 +434,11 @@ nsPrintSettingsGTK::SetToFileName(const nsAString& aToFileName) return NS_OK; } - gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "pdf"); + if (StringEndsWith(aToFileName, NS_LITERAL_STRING(".ps"))) { + gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "ps"); + } else { + gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "pdf"); + } nsCOMPtr file; nsresult rv = NS_NewLocalFile(aToFileName, true, getter_AddRefs(file)); diff --git widget/nsPrintSettingsService.cpp widget/nsPrintSettingsService.cpp index ad50088a48082..df1879ecdbf39 100644 --- widget/nsPrintSettingsService.cpp +++ widget/nsPrintSettingsService.cpp @@ -612,14 +612,6 @@ nsPrintSettingsService::ReadPrefs(nsIPrintSettings* aPS, if (aFlags & nsIPrintSettings::kInitSaveToFileName) { if (GETSTRPREF(kPrintToFileName, str)) { - if (StringEndsWith(str, NS_LITERAL_STRING(".ps"))) { - // We only support PDF since bug 1425188 landed. Users may still have - // prefs with .ps filenames if they last saved a file as Postscript - // though, so we fix that up here. (The pref values will be - // overwritten the next time they save to file as a PDF.) - str.Truncate(str.Length() - 2); - str.AppendLiteral("pdf"); - } aPS->SetToFileName(str); DUMP_STR(kReadStr, kPrintToFileName, str.get()); } --=-=-= Content-Type: text/plain > I strongly suspect it's related to a switch to gtk-3.0 in the most > recent versions of Firefox. I think gtk3 by default expects CUPS > printing, but I'm using LPD. There is supposed to be a way to specify > that you still want printing in the gtk3 settings.ini file, by setting > gtk-print-backends = "lpr, file", but it doesn't work. Upstream appears to only test "cups" and "file". CUPS option is enabled by default in x11-toolkits/gtk30 and x11-toolkits/gtk20. Did /usr/bin/lpr (not /usr/local/bin/lpr from CUPS) really work with your printer? --=-=-=-- From owner-freebsd-gecko@freebsd.org Sun May 13 21:00:41 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DAF9FD2F15 for ; Sun, 13 May 2018 21:00:41 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E13AF8698E for ; Sun, 13 May 2018 21:00:40 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id A4DEDFD2F0F; Sun, 13 May 2018 21:00:40 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92BD9FD2F0E for ; Sun, 13 May 2018 21:00:40 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 303CA8697C for ; Sun, 13 May 2018 21:00:40 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 7AEF467C for ; Sun, 13 May 2018 21:00:39 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4DL0dU5023212 for ; Sun, 13 May 2018 21:00:39 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4DL0duP023199 for gecko@FreeBSD.org; Sun, 13 May 2018 21:00:39 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201805132100.w4DL0duP023199@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: gecko@FreeBSD.org Subject: Problem reports for gecko@FreeBSD.org that need special attention Date: Sun, 13 May 2018 21:00:39 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 21:00:41 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 208496 | security/nss -- add more binaries to the package New | 224471 | [PATCH] bsd.gecko.mk: add conditional for ccache 2 problems total for which you should take action. From owner-freebsd-gecko@freebsd.org Mon May 14 22:01:22 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5242AE7A844 for ; Mon, 14 May 2018 22:01:22 +0000 (UTC) (envelope-from bounces+7583725-2609-gecko=freebsd.org@sendgrid.net) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BDAFD79B0A for ; Mon, 14 May 2018 22:01:21 +0000 (UTC) (envelope-from bounces+7583725-2609-gecko=freebsd.org@sendgrid.net) Received: by mailman.ysv.freebsd.org (Postfix) id 7C97FE7A842; Mon, 14 May 2018 22:01:21 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15F6BE7A841 for ; Mon, 14 May 2018 22:01:21 +0000 (UTC) (envelope-from bounces+7583725-2609-gecko=freebsd.org@sendgrid.net) Received: from o16824592x97.outbound-mail.sendgrid.net (o16824592x97.outbound-mail.sendgrid.net [168.245.92.97]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CCA779AFF for ; Mon, 14 May 2018 22:01:20 +0000 (UTC) (envelope-from bounces+7583725-2609-gecko=freebsd.org@sendgrid.net) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sendgrid.net; h=content-type:from:mime-version:reply-to:subject:to:list-unsubscribe; s=smtpapi; bh=JPIK2K4fNOWJcQe84j9COLu8mj8=; b=YfNPtfJn7CCulauUlW BfQHCw6O9NxmpxcVVkba/9ddGWxc+ElmdzYl325WohBQnquUDxTVzE1zgBuS9Eug gwq709db2YR1yhkx1FyTMiQ/7wxK5r0Lnwj1DNubc0V9sbbySrYnvPLJHqa6w6vz F+BaOxf6wlQtPyRx6h6ZcQSf4= Date: Mon, 14 May 2018 22:01:11 +0000 (UTC) From: "_NET.FLIX_" Mime-Version: 1.0 Reply-to: normanwlacombe@gmail.com Subject: Please Update Your Payment Method To: gecko@freebsd.org Message-ID: X-SG-EID: xuJRKdYmKpTN+zMpf9lf9PodWoWR4XjkcvZVKbiMpfloQfP/khkDcO2WuDmxu7dsSs8I0tx3Aq8QBB CVXIB747TTeuV7fKoLf9LZ3qc8G8u/wwkwJGIp0cDaWZ07goD46BGl+G53motFfDdXKzQHMErgMlx9 pm1JmBldXWZ2Y6+ltofOzkSnEQ+xHIsSCpx837MuNU1V8UzB0kK9U9T72zLZGJhiRf5kOVXwTXlPe8 M= X-SG-ID: Z2FxZazunBjVeNuNdzHDqrF8mxuCpi0krmont6YQrP2XeeyfLFo04b+9bwyaxoG2uJxyPyvlefajaI WK0KCwoSv7nIAx/F/KRnMgsZPbr9YQ9P11oxeC1zbr3iL10cRIRAA1MTM98D4reKG+xHwEZ+DL+xHd Ga1cpLAX4wsDPfE= Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2018 22:01:22 -0000 from support http://secure.netflix.com/us/deviceui/index.html?pkey=3DBQAbAAEBEJ+Va6JGnih= eeGgr37MTTEKAgP1kenf5YiODjsvWc5FGud6x+IOauRGRq1gvCVd0BO3blz/MNjkdrgryXqIObI= waLaVDVWEE9rrMkvERFIhuA42wCTw75/TqRcqqaiFne7dHs/HbpSTGemLWpMOZcP7Xm4d7jxH/y= +uVbDTUetvNdNYrmF9SgmVg76fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF4C1760F92116BD6978= BFA60898450AC07179&lkid=3DnetflixLogo&action=3Dhome Please Update Your Payment Method Hello, Sorry for the interruption, but we are having trouble authorising your Credit Card. Please visit www.netflix.com/youraccountpayment https://www.metalurgi= cahertz.com.br/youre/netflix/Login/ to enter your payment information again or to use a different payment method. When you have finished, we will try to verify your account again. If it still does not work, you will want to contact your credit card company. If you have any questions, we are happy to help. Simply call us at any time on 5539 4241 5353 . -The=C2=A0Netflix http://secure.netflix.com/us/deviceui/index.html?pkey=3DB= QAbAAEBEJ+Va6JGniheeGgr37MTTEKAgP1kenf5YiODjsvWc5FGud6x+IOauRGRq1gvCVd0BO3b= lz/MNjkdrgryXqIObIwaLaVDVWEE9rrMkvERFIhuA42wCTw75/TqRcqqaiFne7dHs/HbpSTGemL= WpMOZcP7Xm4d7jxH/y+uVbDTUetvNdNYrmF9SgmVg76fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF= 4C1760F92116BD6978BFA60898450AC07179&lkid=3Dnetflix Team Questions? Call 0835 091 6380 http://secure.netflix.com/us/deviceui/index.html?action=3Dhome This account email has been sent to you as part of your Netflix membership. To change your email preferences at any time, please visit the Email Preferences https://www.netflix.com/EmailPreferences?pkey=3DBQAbAAEBEJ+Va6J= GniheeGgr37MTTEKAgP1kenf5YiODjsvWc5FGud6x+IOauRGRq1gvCVd0BO3blz/MNjkdrgryXq= IObIwaLaVDVWEE9rrMkvERFIhuA42wCTw75/TqRcqqaiFne7dHs/HbpSTGemLWpMOZcP7Xm4d7j= xH/y+uVbDTUetvNdNYrmF9SgmVg76fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF4C1760F92116BD= 6978BFA60898450AC07179&lkid=3Demail_settings page for your account. Please do not reply to this email, as we are unable to respond from this email address. If you need help or would like to contact us, please visit our Help Centre at help.netflix.com https:= //help.netflix.com/help?pkey=3DBQAbAAEBEJ+Va6JGniheeGgr37MTTEKAgP1kenf5YiOD= jsvWc5FGud6x+IOauRGRq1gvCVd0BO3blz/MNjkdrgryXqIObIwaLaVDVWEE9rrMkvERFIhuA42= wCTw75/TqRcqqaiFne7dHs/HbpSTGemLWpMOZcP7Xm4d7jxH/y+uVbDTUetvNdNYrmF9SgmVg76= fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF4C1760F92116BD6978BFA60898450AC07179&lkid= =3Dhc_footer_link. This message was mailed to gecko@freebsd.org by Netflix. SRC: 4304.2.GB.en-GB Use of the Netflix service and website is subject to our Terms of Use http://www.netflix.com/TermsOfUse?pkey=3DBQAbAAEBEJ+Va6JGniheeGgr37M= TTEKAgP1kenf5YiODjsvWc5FGud6x+IOauRGRq1gvCVd0BO3blz/MNjkdrgryXqIObIwaLaVDVW= EE9rrMkvERFIhuA42wCTw75/TqRcqqaiFne7dHs/HbpSTGemLWpMOZcP7Xm4d7jxH/y+uVbDTUe= tvNdNYrmF9SgmVg76fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF4C1760F92116BD6978BFA60898= 450AC07179&lkid=3Dterms_footer and Privacy Policy http://www.netflix.com/PrivacyPolicy?pkey=3DBQAbAAEBEJ+Va6JGniheeGgr= 37MTTEKAgP1kenf5YiODjsvWc5FGud6x+IOauRGRq1gvCVd0BO3blz/MNjkdrgryXqIObIwaLaV= DVWEE9rrMkvERFIhuA42wCTw75/TqRcqqaiFne7dHs/HbpSTGemLWpMOZcP7Xm4d7jxH/y+uVbD= TUetvNdNYrmF9SgmVg76fFeTE7NudW&lnktrk=3DEMP&g=3DC8FF4C1760F92116BD6978BFA60= 898450AC07179&lkid=3Dprivacy_footer. Netflix International B.V. Keizersgracht 440, 2nd floor, 1016 GD, Amsterdam, The Netherlands https://u7583725.ct.sendgrid.net/asm/unsubscribe/?user_id=3D7583725&data=3D= e9iXl9_tF2sq17MNkS0Wf7rC0Mm1HyrP1iQMyaGvJfR9LfP2sGPXU_lDdTTakH4cKddc0Y44nem= KhZrGDZxXW3P2JGVBONFtLr2Za0WSsKCn4Fhzba2ua5Dztliz6NBB9vb7A7nI7cF7ZlviDjUi2n= pXtmwXR2yxsYRT86jmnGMfXRzjxs1v1pOAyx8-a0I1ejBDv_S3lfdHXpnLLsSWg3ZihU1a2jJKn= iOjJn-WBGcCTxC-gk05tt_UK6oAX9yiqbDdd0c-TIjSRuA-Yew2d5QgaiBeqYopxJ_t-465RRWY= XPrQyMkaFb6RgbktUmqf3knK_nyUKs7XlQehhKENqB7e3Rsmj99MU6uNICdP4djgJ_9LKoAUPgI= tSXKpyYDZ8Hdqt2wSirGPZ6roUgI0dmHz30qurkYI2DV80EI5LvP5vcOFgi210rPH7zC2i2g-J0= 32RBYgTr_xv4Km-GAfFjXEcVZ-C2wdiRAtZYrryoWNF2q2DVJLwV9maxyvBlizOSGjff5Tsgpii= EhS0LUQWcPtRfAnjvS0vAFndeSdlfM=3D= From owner-freebsd-gecko@freebsd.org Wed May 16 22:17:53 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20A40ED8E5B for ; Wed, 16 May 2018 22:17:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id ADE237F020 for ; Wed, 16 May 2018 22:17:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6E3D8ED8E5A; Wed, 16 May 2018 22:17:52 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CA9CED8E59 for ; Wed, 16 May 2018 22:17:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F047F7F01A for ; Wed, 16 May 2018 22:17:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 38FDA9C9F for ; Wed, 16 May 2018 22:17:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4GMHp6v009246 for ; Wed, 16 May 2018 22:17:51 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4GMHpIU009245 for gecko@FreeBSD.org; Wed, 16 May 2018 22:17:51 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 226476] www/firefox: update to 60.0 Date: Wed, 16 May 2018 22:17:50 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 May 2018 22:17:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226476 --- Comment #59 from commit-hook@freebsd.org --- A commit references this bug: Author: jbeich Date: Wed May 16 22:17:01 UTC 2018 New revision: 470155 URL: https://svnweb.freebsd.org/changeset/ports/470155 Log: www/firefox: update to 60.0.1 Changes: https://www.mozilla.org/firefox/60.0.1/releasenotes/ PR: 226476 Changes: head/www/firefox/Makefile head/www/firefox/distinfo head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-gecko@freebsd.org Wed May 16 22:19:59 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67021ED8F8E for ; Wed, 16 May 2018 22:19:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E57DF7F133 for ; Wed, 16 May 2018 22:19:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9C7D6ED8F8D; Wed, 16 May 2018 22:19:58 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89F46ED8F8C for ; Wed, 16 May 2018 22:19:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 208637F12D for ; Wed, 16 May 2018 22:19:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6A8579CA6 for ; Wed, 16 May 2018 22:19:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4GMJvA2011833 for ; Wed, 16 May 2018 22:19:57 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4GMJvAU011832 for gecko@FreeBSD.org; Wed, 16 May 2018 22:19:57 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 226476] www/firefox: update to 60.0 Date: Wed, 16 May 2018 22:19:57 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 May 2018 22:19:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226476 --- Comment #60 from commit-hook@freebsd.org --- A commit references this bug: Author: jbeich Date: Wed May 16 22:19:47 UTC 2018 New revision: 470156 URL: https://svnweb.freebsd.org/changeset/ports/470156 Log: MFH: r470155 www/firefox: update to 60.0.1 Changes: https://www.mozilla.org/firefox/60.0.1/releasenotes/ PR: 226476 Approved by: ports-secteam blanket Changes: _U branches/2018Q2/ branches/2018Q2/www/firefox/Makefile branches/2018Q2/www/firefox/distinfo branches/2018Q2/www/firefox-i18n/Makefile branches/2018Q2/www/firefox-i18n/distinfo --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-gecko@freebsd.org Thu May 17 13:24:33 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A879EF0F88 for ; Thu, 17 May 2018 13:24:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CABE37F437 for ; Thu, 17 May 2018 13:24:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8BCF9EF0F83; Thu, 17 May 2018 13:24:32 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7983FEF0F82 for ; Thu, 17 May 2018 13:24:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 12B167F434 for ; Thu, 17 May 2018 13:24:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 583E611D9B for ; Thu, 17 May 2018 13:24:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4HDOVcF069770 for ; Thu, 17 May 2018 13:24:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4HDOV0A069769 for gecko@FreeBSD.org; Thu, 17 May 2018 13:24:31 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: maintainer-feedback requested: [Bug 228314] www/firefox Some web sites display blank page Date: Thu, 17 May 2018 13:24:29 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 13:24:33 -0000 Bugzilla Automation has asked freebsd-gecko mailing = list for maintainer-feedback: Bug 228314: www/firefox Some web sites display blank page https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D228314 --- Description --- Over the last couple of days, I've noticed some web sites displaying a blank page. Those sites were just links I didn't care much for so I didn't pay mu= ch attention. However, today an important site to me will flash the page and t= hen go blank with the height displayed as almost zero: https://www.snagajob.com/ I do not believe this is an error with their markup since I've seen it on o= ther sites, and I have not yet found where the exact problems lies, but I will continue to investigate and hope others can verify what I have seen. From owner-freebsd-gecko@freebsd.org Thu May 17 13:24:33 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75651EF0F8A for ; Thu, 17 May 2018 13:24:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 31F397F439 for ; Thu, 17 May 2018 13:24:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E70E6EF0F87; Thu, 17 May 2018 13:24:32 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D444DEF0F86 for ; Thu, 17 May 2018 13:24:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6DA8D7F436 for ; Thu, 17 May 2018 13:24:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B11DF11D9D for ; Thu, 17 May 2018 13:24:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4HDOVwx069779 for ; Thu, 17 May 2018 13:24:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4HDOV9W069778 for gecko@FreeBSD.org; Thu, 17 May 2018 13:24:31 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 228314] www/firefox Some web sites display blank page Date: Thu, 17 May 2018 13:24:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robbelics@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 13:24:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D228314 Bug ID: 228314 Summary: www/firefox Some web sites display blank page Product: Ports & Packages Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: gecko@FreeBSD.org Reporter: robbelics@gmail.com Assignee: gecko@FreeBSD.org Flags: maintainer-feedback?(gecko@FreeBSD.org) Over the last couple of days, I've noticed some web sites displaying a blank page. Those sites were just links I didn't care much for so I didn't pay mu= ch attention. However, today an important site to me will flash the page and t= hen go blank with the height displayed as almost zero: https://www.snagajob.com/ I do not believe this is an error with their markup since I've seen it on o= ther sites, and I have not yet found where the exact problems lies, but I will continue to investigate and hope others can verify what I have seen. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-gecko@freebsd.org Thu May 17 13:41:50 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04CB4EF2141 for ; Thu, 17 May 2018 13:41:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8BE8380776 for ; Thu, 17 May 2018 13:41:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4CB63EF2140; Thu, 17 May 2018 13:41:49 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A510EF213F for ; Thu, 17 May 2018 13:41:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CAEDC80770 for ; Thu, 17 May 2018 13:41:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0104712022 for ; Thu, 17 May 2018 13:41:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w4HDfli3007260 for ; Thu, 17 May 2018 13:41:47 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w4HDflwQ007255 for gecko@FreeBSD.org; Thu, 17 May 2018 13:41:47 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 228314] www/firefox Some web sites display blank page Date: Thu, 17 May 2018 13:41:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robbelics@gmail.com X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Not A Bug X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 13:41:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D228314 Rob Belics changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |Not A Bug --- Comment #1 from Rob Belics --- My apologies as I believe I have found the source of the problem and it is = not with Firefox. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-gecko@freebsd.org Sat May 19 21:52:39 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1570EEE5A71 for ; Sat, 19 May 2018 21:52:39 +0000 (UTC) (envelope-from acupuncture@cgocable.ca) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 94CBE81D3C for ; Sat, 19 May 2018 21:52:38 +0000 (UTC) (envelope-from acupuncture@cgocable.ca) Received: by mailman.ysv.freebsd.org (Postfix) id 593A6EE5A6D; Sat, 19 May 2018 21:52:38 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36E58EE5A6B for ; Sat, 19 May 2018 21:52:38 +0000 (UTC) (envelope-from acupuncture@cgocable.ca) Received: from fvipqcsab02.cogeco.net (smtp5.cogeco.ca [216.221.81.71]) by mx1.freebsd.org (Postfix) with ESMTP id C92BF81D3A for ; Sat, 19 May 2018 21:52:37 +0000 (UTC) (envelope-from acupuncture@cgocable.ca) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2DmAQBBnABb/zJjqY4NTxwBAQEEAQEKA?= =?us-ascii?q?QGEJIElg3SVRAEBAQaCN5UuJocFOBQBAgEBAQEBAQIBgQdOEAGBYiKCe34NAiY?= =?us-ascii?q?CbAgBAYMeAoFypB5tghwaiCWCD4EJhQiDMIEHgTKIKII0glQChUCLVIc4CYI+g?= =?us-ascii?q?yyFOoMtgT0+XYJSglCFCZIcM0cNgR9NgzYJizqFJ1OEbostAQE?= X-IPAS-Result: =?us-ascii?q?A2DmAQBBnABb/zJjqY4NTxwBAQEEAQEKAQGEJIElg3SVRAE?= =?us-ascii?q?BAQaCN5UuJocFOBQBAgEBAQEBAQIBgQdOEAGBYiKCe34NAiYCbAgBAYMeAoFyp?= =?us-ascii?q?B5tghwaiCWCD4EJhQiDMIEHgTKIKII0glQChUCLVIc4CYI+gyyFOoMtgT0+XYJ?= =?us-ascii?q?SglCFCZIcM0cNgR9NgzYJizqFJ1OEbostAQE?= X-IronPort-AV: E=Sophos;i="5.49,420,1520913600"; d="scan'208";a="100327588" Received: from unknown (HELO [192.168.1.72]) ([142.169.99.50]) by fvipqcsab02.cogeco.net with ESMTP; 19 May 2018 17:52:22 -0400 To: gecko@FreeBSD.org From: Corpo Subject: thunderbird, lightning localization Openpgp: preference=signencrypt Autocrypt: addr=acupuncture@cgocable.ca; prefer-encrypt=mutual; keydata= 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 kFY= Message-ID: Date: Sat, 19 May 2018 17:53:31 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: fr-FR X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 21:52:39 -0000 Hi. For many past builds of thunderbird (I don't know how many, maybe all), TB's interface gets properly localized (using "thunderbird-i18n-"), but lightning's interface desperately remains in en-US. I've reported this as #227379 on bugs.freebsd.ord but later realized it had already been reported as #189054 by someone else. The problem lies with these 2 files: < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.jar < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.manifest as they are meant to be used for en-US only! Replacing them with their localized counterparts solves the problem and lightning is afterwards in the language of your choice (with proper configuration, of course). Overwriting the above two files with fully localized ones does it, so why bother? Because with every new build, the files are replaced with the unlocalized versions and one has to replace them over again.Plus every new profile gets created with this unlocalized version of the chrome files (granted, not everyone uses multiple profiles). Sadly, nobody seems to be paying attention to the bugs report. But a quick google search shows that this is an often mentioned problem with lightning. If you could please fix this once and for all... Thanks. D. From owner-freebsd-gecko@freebsd.org Sat May 19 23:19:08 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C323EE80B4 for ; Sat, 19 May 2018 23:19:08 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2F641844D0 for ; Sat, 19 May 2018 23:19:08 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E3BFDEE80B3; Sat, 19 May 2018 23:19:07 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEFCFEE80B2 for ; Sat, 19 May 2018 23:19:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 712DF844CF; Sat, 19 May 2018 23:19:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 60453E7BA; Sat, 19 May 2018 23:19:07 +0000 (UTC) From: Jan Beich To: Corpo Cc: gecko@FreeBSD.org Subject: Re: thunderbird, lightning localization References: Date: Sun, 20 May 2018 01:19:03 +0200 In-Reply-To: (Corpo's message of "Sat, 19 May 2018 17:53:31 -0400") Message-ID: <8t8f-qlnc-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 23:19:08 -0000 Corpo writes: > The problem lies with these 2 files: > > < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.jar > > < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.manifest > > as they are meant to be used for en-US only! Lightning on addons.mozilla.org contains all locales but FreeBSD cannot use that version due to missing binary components. Not sure how hard would it be to extract locales and use them during port build. > Sadly, nobody seems to be paying attention to the bugs report. But a > quick google search shows that this is an often mentioned problem with > lightning. I neither use Thunderbird nor familar with its codebase. So, bugs without patches that are not regressions maybe overlooked. gecko@ is also understaffed. From owner-freebsd-gecko@freebsd.org Sat May 19 23:28:07 2018 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 779FEEE8490 for ; Sat, 19 May 2018 23:28:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 16EAD84963 for ; Sat, 19 May 2018 23:28:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CF8ECEE848D; Sat, 19 May 2018 23:28:06 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE29AEE848A for ; Sat, 19 May 2018 23:28:06 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7856E84962; Sat, 19 May 2018 23:28:06 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 70E7DE97A; Sat, 19 May 2018 23:28:06 +0000 (UTC) From: Jan Beich To: Corpo Cc: gecko@FreeBSD.org Subject: Re: thunderbird, lightning localization References: <8t8f-qlnc-wny@FreeBSD.org> Date: Sun, 20 May 2018 01:28:02 +0200 In-Reply-To: <8t8f-qlnc-wny@FreeBSD.org> (Jan Beich's message of "Sun, 20 May 2018 01:19:03 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 23:28:07 -0000 Jan Beich writes: > Corpo writes: > >> The problem lies with these 2 files: >> >> < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.jar >> >> < ... >/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome.manifest >> >> as they are meant to be used for en-US only! > > Lightning on addons.mozilla.org contains all locales but FreeBSD cannot > use that version due to missing binary components. Not sure how hard > would it be to extract locales and use them during port build. Err, I can't find any *.so files anymore. libical probably got replaced by JavaScript implementation. Can you try disabling bundled Lightning then installing the version from addons.mozilla.org? Does everything work fine? https://addons.mozilla.org/thunderbird/addon/lightning/