From ptisnovs at icedtea.classpath.org Mon Feb 1 10:18:30 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Mon, 01 Feb 2016 10:18:30 +0000 Subject: /hg/gfx-test: Added eight new tests into BitBltUsingBgColor. Message-ID: changeset 0642bcdfa44a in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=0642bcdfa44a author: Pavel Tisnovsky date: Mon Feb 01 11:21:59 2016 +0100 Added eight new tests into BitBltUsingBgColor. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r 501c75daf75e -r 0642bcdfa44a ChangeLog --- a/ChangeLog Mon Jan 18 11:24:12 2016 +0100 +++ b/ChangeLog Mon Feb 01 11:21:59 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-01 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Added eight new tests into BitBltUsingBgColor. + 2016-01-18 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r 501c75daf75e -r 0642bcdfa44a src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Jan 18 11:24:12 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Feb 01 11:21:59 2016 +0100 @@ -15616,6 +15616,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteGrayBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteGray(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 12:52:49 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 12:52:49 +0000 Subject: [Bug 2004] When accessing applet it will crash In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2004 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |INVALID --- Comment #9 from JiriVanek --- Please reopen if you are facing any issues with current 1.6.2 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 12:53:19 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 12:53:19 +0000 Subject: [Bug 1991] ice tea problem with remote login to wdmycloud In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1991 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |INVALID --- Comment #3 from JiriVanek --- Please reopen if you are facing any issues with current 1.6.2 -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 12:54:09 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 12:54:09 +0000 Subject: [Bug 1990] iced tea plugin problem with remote login to wdmycloud In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1990 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #4 from JiriVanek --- Please reopen if you are facing any issues with current 1.6.2 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 12:58:36 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 12:58:36 +0000 Subject: [Bug 1907] Please add a MetaInfo file for software centers In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1907 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #2 from JiriVanek --- Is pushed now in upstream. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:00:23 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:00:23 +0000 Subject: [Bug 1895] Icedtea plugin throws up an error screen in Firefox In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1895 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #15 from JiriVanek --- Please reopen (with some url where to debug the issue) if issues are still persisting on 1.6.2 and neewer. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:01:37 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:01:37 +0000 Subject: [Bug 1805] fatal error crash running iDRAC7 virtual media In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1805 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jvanek at redhat.com --- Comment #2 from JiriVanek --- Hello! iDracs are known to work with latest ITWs. Please reopen if you encounter (with 1.6.2 differently) -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:05:31 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:05:31 +0000 Subject: [Bug 1805] fatal error crash running iDRAC7 virtual media In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1805 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:11:02 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:11:02 +0000 Subject: [Bug 1733] XML parsing exception when running javaws In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1733 --- Comment #6 from JiriVanek --- Hi Matej, it hav ebeen longtime, but now I tested the latest file on latest 1.6.2 and it seems to be working fine. Do you mind to try? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:51:18 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:51:18 +0000 Subject: [Bug 1729] Launch failure -- can't load jar file via https In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1729 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #6 from JiriVanek --- Hello. This seems to be wroking for me now. Plase reopen if it fails on 1.6.2 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:54:46 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:54:46 +0000 Subject: [Bug 1614] javaws fails on special character in jnlp In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1614 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #5 from JiriVanek --- jnlp parses fine now. However the codebase seems dead. Please reopen if it is still failing on 1.6.2. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:55:53 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:55:53 +0000 Subject: [Bug 1582] Plugins don't start - test page just does nothing In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1582 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from JiriVanek --- This was fixed recently and works fine on 1.6.2 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:58:56 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:58:56 +0000 Subject: [Bug 1432] Runescape updater gets stuck at 2 percent In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1432 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #4 from JiriVanek --- runescape is using native installers now and officially supports only windows. If i got it wrong, please reopen and provide information how to test this. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 13:59:47 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 13:59:47 +0000 Subject: [Bug 1412] Class not found exception on apache commons validator (icedtea 7) In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1412 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |jvanek at redhat.com --- Comment #1 from JiriVanek --- is this somehow reproducible? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:00:56 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:00:56 +0000 Subject: [Bug 1323] Implement separate_jvm parameter In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1323 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from JiriVanek --- Hello,. This is not going to happen unless some individum posts patch. Generally, the chnage will not be easy. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:07:05 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:07:05 +0000 Subject: [Bug 1213] logmein.com applet does not start from icedtea-web version 1.2.1 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1213 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from JiriVanek --- I was unable to verify thiss (even after creating an account) If tehre is something to fix for with itw 1.6.2, please reopen. Also it seems tat they are supportinmg only mac, win and android -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:09:09 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:09:09 +0000 Subject: [Bug 1597] Can't read such terrible fonts, can't make bigger with CTRL++ In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1597 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #4 from JiriVanek --- Hello. This strictly depends on how applet is written. Sometimes ctr+ is working, sometimes not. Also the fonts depends on your istallation, so this looks like not a bug. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:10:49 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:10:49 +0000 Subject: [Bug 1583] XML Parse error? In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1583 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #2 from JiriVanek --- Hello! May you try with 1.6.2 (and be sure tagsoup is on) please? However, exception do not look familiar. If it will keep crashing, I will need some more information how to debug this. J. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:16:43 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:16:43 +0000 Subject: [Bug 1515] An unecessary net.sourceforge.jnlp.LaunchException is reported when clicking on Cancel In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1515 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #2 from JiriVanek --- Hello, openjdk 7+8 + latest iTW 1.6.2 this works for me. However, on JDK some of those games works, some does not. The error is diferent: java.lang.NoSuchMethodError: sun.applet.AppletImageRef.get()Ljava/lang/Object; at sun.applet.PluginAppletViewer.getCachedImage(PluginAppletViewer.java:826) at sun.applet.PluginAppletViewer.getImage(PluginAppletViewer.java:822) at java.applet.Applet.getImage(Applet.java:277) at java.applet.Applet.getImage(Applet.java:299) at goph.init(goph.java:76) at sun.applet.AppletPanel.run(AppletPanel.java:430) at sun.applet.AppletViewerPanelAccess.run(AppletViewerPanelAccess.java:84) at java.lang.Thread.run(Thread.java:747) This method was indedd removed in JDK9, so games needs update. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:23:40 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:23:40 +0000 Subject: [Bug 798] Choppy Audio in Runescape In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=798 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |INVALID --- Comment #6 from JiriVanek --- I think runescape no longer works on applets/javaws. please reopena and provide ho to debug info if I'm wrong. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:29:45 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:29:45 +0000 Subject: [Bug 1396] Application Fujitsu ServerView RAID Manager (5.6.4) does not run In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1396 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #5 from JiriVanek --- Please may you verify on latest 1.6.2 Also the debug logs are useless. sorry. 1.6.2 will give you much better outputs if issue persists. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:31:32 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:31:32 +0000 Subject: [Bug 897] Can't list and uninstall applications In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=897 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |INVALID --- Comment #2 from JiriVanek --- Indeed. As for desktop integretions we support only desktop/menu shortcuts to jnlps/html. In latest releases those can be managed. Of ocurse you can clean cahe any time. support for installations is not going to happen. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:32:12 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:32:12 +0000 Subject: [Bug 1142] Repeated prompts for approval are displayed for certificates that have been previously approved during current runtime In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1142 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #1 from JiriVanek --- This was redesigned and should be fixed in Head. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:33:49 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:33:49 +0000 Subject: [Bug 1123] itweb-settings is missing the runtime parameters In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1123 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #3 from JiriVanek --- This was already added ( I thnik since 1.5) (and fixed recently (1.6.2) the bug with ewscaped = char). -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:36:41 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:36:41 +0000 Subject: [Bug 1802] Logic error in checkApplicationLibraryAllowableCodebaseAttribute In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1802 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |jvanek at redhat.com --- Comment #1 from JiriVanek --- Yes, this is security thightening. Isnt more simple to add more values or better value to manifest? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 14:40:34 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 14:40:34 +0000 Subject: [Bug 809] Fails with USAA Deposit at Home In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=809 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #11 from JiriVanek --- I'm unable to reproduce at all. Knife, may you help? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 18:47:48 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 18:47:48 +0000 Subject: [Bug 2781] CACAO - typeinfo.cpp: typeinfo_merge_nonarrays: Assertion `dest && result && x.any && y.any' failed In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2781 --- Comment #11 from Andrew John Hughes --- I can handle incorporating it. It just missed the last release because the milestone wasn't set :-( -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 1 18:48:47 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 01 Feb 2016 18:48:47 +0000 Subject: [Bug 2781] [IcedTea7] CACAO - typeinfo.cpp: typeinfo_merge_nonarrays: Assertion `dest && result && x.any && y.any' failed In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2781 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|CACAO - typeinfo.cpp: |[IcedTea7] CACAO - |typeinfo_merge_nonarrays: |typeinfo.cpp: |Assertion `dest && result |typeinfo_merge_nonarrays: |&& x.any && y.any' failed |Assertion `dest && result | |&& x.any && y.any' failed -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 2 00:22:36 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 02 Feb 2016 00:22:36 +0000 Subject: [Bug 2832] New: [IcedTea8] CACAO - typeinfo.cpp: typeinfo_merge_nonarrays: Assertion `dest && result && x.any && y.any' failed Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2832 Bug ID: 2832 Summary: [IcedTea8] CACAO - typeinfo.cpp: typeinfo_merge_nonarrays: Assertion `dest && result && x.any && y.any' failed Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: CACAO Assignee: stefan at complang.tuwien.ac.at Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org, xerxes at zafena.se Clone of bug 2781 for IcedTea 3.x. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 2 00:22:53 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 02 Feb 2016 00:22:53 +0000 Subject: [Bug 2832] [IcedTea8] CACAO - typeinfo.cpp: typeinfo_merge_nonarrays: Assertion `dest && result && x.any && y.any' failed In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2832 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Assignee|stefan at complang.tuwien.ac.a |gnu.andrew at redhat.com |t | Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 2 00:22:53 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 02 Feb 2016 00:22:53 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2832 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptisnovs at icedtea.classpath.org Tue Feb 2 10:25:40 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Tue, 02 Feb 2016 10:25:40 +0000 Subject: /hg/gfx-test: Added eight new tests into BitBltUsingBgColor. Message-ID: changeset ab680a546c72 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=ab680a546c72 author: Pavel Tisnovsky date: Tue Feb 02 11:29:14 2016 +0100 Added eight new tests into BitBltUsingBgColor. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r 0642bcdfa44a -r ab680a546c72 ChangeLog --- a/ChangeLog Mon Feb 01 11:21:59 2016 +0100 +++ b/ChangeLog Tue Feb 02 11:29:14 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-02 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Added eight new tests into BitBltUsingBgColor. + 2016-02-01 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r 0642bcdfa44a -r ab680a546c72 src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Feb 01 11:21:59 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Feb 02 11:29:14 2016 +0100 @@ -15736,6 +15736,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_INDEXED}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeByteIndexedBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeByteIndexed(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From jvanek at icedtea.classpath.org Tue Feb 2 16:50:41 2016 From: jvanek at icedtea.classpath.org (jvanek at icedtea.classpath.org) Date: Tue, 02 Feb 2016 16:50:41 +0000 Subject: /hg/icedtea-web: maven artifacts version substituted to contains... Message-ID: changeset a35604e217b9 in /hg/icedtea-web details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=a35604e217b9 author: Jiri Vanek date: Tue Feb 02 17:48:59 2016 +0100 maven artifacts version substituted to contains only major version diffstat: ChangeLog | 6 ++++++ Makefile.am | 13 ++++++++++++- 2 files changed, 18 insertions(+), 1 deletions(-) diffs (40 lines): diff -r 213ea33a35b2 -r a35604e217b9 ChangeLog --- a/ChangeLog Thu Jan 28 13:40:08 2016 +0100 +++ b/ChangeLog Tue Feb 02 17:48:59 2016 +0100 @@ -1,3 +1,9 @@ +2016-02-02 Jiri Vanek + + maven artifacts version substituted to contains only major version + * .Makefile: ($(abs_top_builddir)/metadata) version stripped by everything + behind second number + 2016-01-28 Matthias Klose Jiri Vanek diff -r 213ea33a35b2 -r a35604e217b9 Makefile.am --- a/Makefile.am Thu Jan 28 13:40:08 2016 +0100 +++ b/Makefile.am Tue Feb 02 17:48:59 2016 +0100 @@ -511,11 +511,22 @@ sed -i '/RhinoBasedPacEvaluator/ d' $@ endif +# if 'sed' will be missing on machine, use old IFS hack as on other places +# the 'sed' cycles is changing some custom version like 1.6.2 fedora23.4 to simple 1.6 +# if changed, keep in mind that also 1.7 should bubble to 1.7 +# also 1.7pre or 1.7preHASH should end up like 1.7 $(abs_top_builddir)/metadata: $(top_srcdir)/metadata.in mkdir -p $(abs_top_builddir)/metadata-work ; \ METAFILES=`ls $(top_srcdir)/metadata.in` ; \ + SEDDED_VERSION=`echo "$(FULL_VERSION)" | sed 's/[^0-9]\+/ /g'` ; \ + x=0; for i in $$SEDDED_VERSION ; do \ + let x++; \ + if [ $$x -eq 1 ] ; then V1=$$i; fi; \ + if [ $$x -eq 2 ] ; then V2=$$i; fi; \ + done; \ + XVERSION=$$V1.$$V2; \ for F in $$METAFILES ; do \ - cat $(top_srcdir)/metadata.in/$$F | sed "s;%{name};$(PACKAGE_NAME);g" | sed "s;%{version};$(FULL_VERSION);g" > $(abs_top_builddir)/metadata-work/$$F ; \ + cat $(top_srcdir)/metadata.in/$$F | sed "s;%{name};$(PACKAGE_NAME);g" | sed "s;%{version};$$XVERSION;g" > $(abs_top_builddir)/metadata-work/$$F ; \ done ; \ mv $(abs_top_builddir)/metadata-work $(abs_top_builddir)/metadata ; From jvanek at icedtea.classpath.org Tue Feb 2 16:57:45 2016 From: jvanek at icedtea.classpath.org (jvanek at icedtea.classpath.org) Date: Tue, 02 Feb 2016 16:57:45 +0000 Subject: /hg/release/icedtea-web-1.6: 2 new changesets Message-ID: changeset f6e5aaaba724 in /hg/release/icedtea-web-1.6 details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=f6e5aaaba724 author: Jiri Vanek date: Tue Feb 02 17:49:18 2016 +0100 maven artifacts version substituted to contains only major version changeset d518c093bd44 in /hg/release/icedtea-web-1.6 details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=d518c093bd44 author: Jiri Vanek date: Tue Feb 02 17:57:33 2016 +0100 Pre-release tuning diffstat: ChangeLog | 13 +++++++++++++ Makefile.am | 15 +++++++++++++-- NEWS | 2 +- configure.ac | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) diffs (77 lines): diff -r 5be0492c4e4b -r d518c093bd44 ChangeLog --- a/ChangeLog Thu Jan 28 13:40:08 2016 +0100 +++ b/ChangeLog Tue Feb 02 17:57:33 2016 +0100 @@ -1,3 +1,16 @@ +2016-02-02 Jiri Vanek + + Pre-release tuning + * Makefile.am: (netx-html-gen.stamp) set number of changests to 33 (since 1.6.1) + * NEWS: date of 1.6.2 set + * configure.ac: (AC_INIT) set to use 1.6.2 + +2016-02-02 Jiri Vanek + + maven artifacts version substituted to contains only major version + * .Makefile: ($(abs_top_builddir)/metadata) version stripped by everything + behind second number + 2016-01-28 Matthias Klose Jiri Vanek diff -r 5be0492c4e4b -r d518c093bd44 Makefile.am --- a/Makefile.am Thu Jan 28 13:40:08 2016 +0100 +++ b/Makefile.am Tue Feb 02 17:57:33 2016 +0100 @@ -508,11 +508,22 @@ sed -i '/RhinoBasedPacEvaluator/ d' $@ endif +# if 'sed' will be missing on machine, use old IFS hack as on other places +# the 'sed' cycles is changing some custom version like 1.6.2 fedora23.4 to simple 1.6 +# if changed, keep in mind that also 1.7 should bubble to 1.7 +# also 1.7pre or 1.7preHASH should end up like 1.7 $(abs_top_builddir)/metadata: $(top_srcdir)/metadata.in mkdir -p $(abs_top_builddir)/metadata-work ; \ METAFILES=`ls $(top_srcdir)/metadata.in` ; \ + SEDDED_VERSION=`echo "$(FULL_VERSION)" | sed 's/[^0-9]\+/ /g'` ; \ + x=0; for i in $$SEDDED_VERSION ; do \ + let x++; \ + if [ $$x -eq 1 ] ; then V1=$$i; fi; \ + if [ $$x -eq 2 ] ; then V2=$$i; fi; \ + done; \ + XVERSION=$$V1.$$V2; \ for F in $$METAFILES ; do \ - cat $(top_srcdir)/metadata.in/$$F | sed "s;%{name};$(PACKAGE_NAME);g" | sed "s;%{version};$(FULL_VERSION);g" > $(abs_top_builddir)/metadata-work/$$F ; \ + cat $(top_srcdir)/metadata.in/$$F | sed "s;%{name};$(PACKAGE_NAME);g" | sed "s;%{version};$$XVERSION;g" > $(abs_top_builddir)/metadata-work/$$F ; \ done ; \ mv $(abs_top_builddir)/metadata-work $(abs_top_builddir)/metadata ; @@ -580,7 +591,7 @@ mkdir -p html-gen; \ cp AUTHORS NEWS COPYING ChangeLog html-gen/; \ export HTML_GEN_DEBUG=true; \ - ${SHELL} html-gen.sh 40; \ + ${SHELL} html-gen.sh 33; \ unset HTML_GEN_DEBUG) ${INSTALL_DATA} $(NETX_SRCDIR)/../html-gen/*.html $(NETX_RESOURCE_DIR) rm -r $(NETX_SRCDIR)/../html-gen/ diff -r 5be0492c4e4b -r d518c093bd44 NEWS --- a/NEWS Thu Jan 28 13:40:08 2016 +0100 +++ b/NEWS Tue Feb 02 17:57:33 2016 +0100 @@ -8,7 +8,7 @@ CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY -New in release 1.6.2 (YYYY-MM-DD): +New in release 1.6.2 (2016-02-03): * all connection restrictions now consider also port * PR2779: html-gen.sh: Don't try to call hg if .hg directory isn't present * PR2591 - IcedTea-Web request resources twice for meta informations and causes ClientAbortException on tomcat in conjunction with JnlpDownloadServlet diff -r 5be0492c4e4b -r d518c093bd44 configure.ac --- a/configure.ac Thu Jan 28 13:40:08 2016 +0100 +++ b/configure.ac Tue Feb 02 17:57:33 2016 +0100 @@ -1,4 +1,4 @@ -AC_INIT([icedtea-web],[1.6.2pre],[distro-pkg-dev at openjdk.java.net], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) +AC_INIT([icedtea-web],[1.6.2],[distro-pkg-dev at openjdk.java.net], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) AM_INIT_AUTOMAKE([1.9 tar-pax foreign]) AC_CONFIG_FILES([Makefile netx.manifest]) AM_MAINTAINER_MODE([enable]) From jvanek at icedtea.classpath.org Wed Feb 3 16:03:55 2016 From: jvanek at icedtea.classpath.org (jvanek at icedtea.classpath.org) Date: Wed, 03 Feb 2016 16:03:55 +0000 Subject: /hg/release/icedtea-web-1.6: 2 new changesets Message-ID: changeset cd66b93aeb9b in /hg/release/icedtea-web-1.6 details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=cd66b93aeb9b author: Jiri Vanek date: Wed Feb 03 17:01:12 2016 +0100 Added tag icedtea-web-1.6.2 for changeset d518c093bd44 changeset d33979624d93 in /hg/release/icedtea-web-1.6 details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=d33979624d93 author: Jiri Vanek date: Wed Feb 03 17:03:39 2016 +0100 Post-release changes diffstat: .hgtags | 1 + ChangeLog | 6 ++++++ NEWS | 2 ++ configure.ac | 2 +- 4 files changed, 10 insertions(+), 1 deletions(-) diffs (42 lines): diff -r d518c093bd44 -r d33979624d93 .hgtags --- a/.hgtags Tue Feb 02 17:57:33 2016 +0100 +++ b/.hgtags Wed Feb 03 17:03:39 2016 +0100 @@ -5,3 +5,4 @@ b73f794d8e3f05888a11644957be9b58ff3c4b88 icedtea-web-1.5-branchpoint d55e263cf02c0e5f8e207d666c93b63bae72a08f icedtea-web-1.6 ba6519dd5e79f42aa5e3abe95fd1a8fcdb4bc8f1 icedtea-web-1.6.1 +d518c093bd44e4565255f82161fbd39831ca4222 icedtea-web-1.6.2 diff -r d518c093bd44 -r d33979624d93 ChangeLog --- a/ChangeLog Tue Feb 02 17:57:33 2016 +0100 +++ b/ChangeLog Wed Feb 03 17:03:39 2016 +0100 @@ -1,3 +1,9 @@ +2016-02-03 Jiri Vanek + + Post-release changes + * NEWS: added 1.6.3 section + * configure.ac: (AC_INIT) bumped to 1.6.3pre + 2016-02-02 Jiri Vanek Pre-release tuning diff -r d518c093bd44 -r d33979624d93 NEWS --- a/NEWS Tue Feb 02 17:57:33 2016 +0100 +++ b/NEWS Wed Feb 03 17:03:39 2016 +0100 @@ -8,6 +8,8 @@ CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY +New in release 1.6.3 (YYYY-MM-DD): + New in release 1.6.2 (2016-02-03): * all connection restrictions now consider also port * PR2779: html-gen.sh: Don't try to call hg if .hg directory isn't present diff -r d518c093bd44 -r d33979624d93 configure.ac --- a/configure.ac Tue Feb 02 17:57:33 2016 +0100 +++ b/configure.ac Wed Feb 03 17:03:39 2016 +0100 @@ -1,4 +1,4 @@ -AC_INIT([icedtea-web],[1.6.2],[distro-pkg-dev at openjdk.java.net], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) +AC_INIT([icedtea-web],[1.6.3pre],[distro-pkg-dev at openjdk.java.net], [icedtea-web], [http://icedtea.classpath.org/wiki/IcedTea-Web]) AM_INIT_AUTOMAKE([1.9 tar-pax foreign]) AC_CONFIG_FILES([Makefile netx.manifest]) AM_MAINTAINER_MODE([enable]) From bugzilla-daemon at icedtea.classpath.org Wed Feb 3 16:22:49 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 03 Feb 2016 16:22:49 +0000 Subject: [Bug 2768] [IcedTea8] Move SystemTap GCC 4.5 patch to OpenJDK tree or discard if no longer needed In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2768 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 3 16:22:50 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 03 Feb 2016 16:22:50 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2768, which changed state. Bug 2768 Summary: [IcedTea8] Move SystemTap GCC 4.5 patch to OpenJDK tree or discard if no longer needed http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2768 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jvanek at redhat.com Wed Feb 3 16:44:43 2016 From: jvanek at redhat.com (Jiri Vanek) Date: Wed, 3 Feb 2016 17:44:43 +0100 Subject: IcedTea-Web 1.6.2 Message-ID: <56B22E7B.7040705@redhat.com> Hello! There is bug-fixes dedicated release of ITW: Tarballs are as usually on wildbeast at classpath.org http://icedtea.wildebeest.org/download/source/icedtea-web-1.6.2.tar.gz ef9b7746dab933afa871428da73169f6 icedtea-web-1.6.2.tar.gz The docs of 1.6.2 are at http://icedtea.wildebeest.org/download/icedtea-web-docs/1.6.2/html/ (As usually .... After the build, you may find new, not installed metadata directory, where are gnome-software and maven artefacts (yes, itw had become someone's dependence :) ) Feel free to use or not use them at all. Also please, I'm strongly encouraging all packagers, to move theirs distros to 1.6.2. I'm closing bugs which are working with 1.6.2 as "works". 1.5 will not get any other update unless some security flaw is found. Also although there were few regressions between 1.5 and 1.6, they all should begone now. Also - if your distro already dropped or deprecated NPAPPI try to point users to ITW's javaws -html switch. I think the global knowledge of this switch is really small. Its not all mighty, but should cover the minority of applets which deserves to survive fail of NPAPI. My special thanks are going to all who helped to test prerelease: Thomas Mayer J. Franz Neon and Doko (To who I stormed with "Hey can you build me 1.6.2pre ubuntu packages... and he just did... TYVM!) Best regards from CZ J. From jvanek at redhat.com Wed Feb 3 16:51:25 2016 From: jvanek at redhat.com (Jiri Vanek) Date: Wed, 3 Feb 2016 17:51:25 +0100 Subject: IcedTea-Web 1.6.2 released In-Reply-To: <56B22E7B.7040705@redhat.com> References: <56B22E7B.7040705@redhat.com> Message-ID: <56B2300D.6020808@redhat.com> And the subject is... IcedTea-Web 1.6.2 released Sorry! J. On 02/03/2016 05:44 PM, Jiri Vanek wrote: > Hello! > > There is bug-fixes dedicated release of ITW: > > Tarballs are as usually on wildbeast at classpath.org > http://icedtea.wildebeest.org/download/source/icedtea-web-1.6.2.tar.gz > ef9b7746dab933afa871428da73169f6 icedtea-web-1.6.2.tar.gz > > The docs of 1.6.2 are at http://icedtea.wildebeest.org/download/icedtea-web-docs/1.6.2/html/ (As > usually .... > > After the build, you may find new, not installed metadata directory, where are gnome-software and > maven artefacts (yes, itw had become someone's dependence :) ) Feel free to use or not use them at all. > > Also please, I'm strongly encouraging all packagers, to move theirs distros to 1.6.2. I'm closing > bugs which are working with 1.6.2 as "works". 1.5 will not get any other update unless some security > flaw is found. > Also although there were few regressions between 1.5 and 1.6, they all should begone now. > > Also - if your distro already dropped or deprecated NPAPPI try to point users to ITW's javaws -html > switch. I think the global knowledge of this switch is really small. Its not all mighty, but should > cover the minority of applets which deserves to survive fail of NPAPI. > > My special thanks are going to all who helped to test prerelease: > Thomas Mayer > J. Franz > Neon > and > Doko (To who I stormed with "Hey can you build me 1.6.2pre ubuntu packages... and he just > did... TYVM!) > > Best regards from CZ > J. From ptisnovs at icedtea.classpath.org Thu Feb 4 09:49:40 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Thu, 04 Feb 2016 09:49:40 +0000 Subject: /hg/gfx-test: Added eight new tests into BitBltUsingBgColor. Message-ID: changeset ab3e65563718 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=ab3e65563718 author: Pavel Tisnovsky date: Thu Feb 04 10:53:08 2016 +0100 Added eight new tests into BitBltUsingBgColor. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r ab680a546c72 -r ab3e65563718 ChangeLog --- a/ChangeLog Tue Feb 02 11:29:14 2016 +0100 +++ b/ChangeLog Thu Feb 04 10:53:08 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-04 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Added eight new tests into BitBltUsingBgColor. + 2016-02-02 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r ab680a546c72 -r ab3e65563718 src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Feb 02 11:29:14 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Feb 04 10:53:08 2016 +0100 @@ -15856,6 +15856,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_555_RGB}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort555RGBBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort555RGB(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:32:03 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:32:03 +0000 Subject: [Bug 2841] New: [IcedTea8] Parallelism issues resulting from PR2459 Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2841 Bug ID: 2841 Summary: [IcedTea8] Parallelism issues resulting from PR2459 Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org The following build failure occurs with parallel builds, following bug 2459: /bin/echo "Crypto-Strength: limited" >> /tmp/portage/dev-java/icedtea-3.0.0_pre08/work/icedtea-3.0.0/openjdk.build/jdk/jce/unsigned/policy/limited/local_policy_jar.tmp/META-INF/MANIFEST.MF /usr/bin/touch -r /tmp/portage/dev-java/icedtea-3.0.0_pre08/work/icedtea-3.0.0/openjdk.build/jdk/jce/unsigned/policy/limited/local_policy_jar.tmp/exempt_local.policy \ /tmp/portage/dev-java/icedtea-3.0.0_pre08/work/icedtea-3.0.0/openjdk.build/jdk/jce/unsigned/policy/limited/local_policy_jar.tmp/META-INF /usr/bin/touch: failed to get attributes of '/tmp/portage/dev-java/icedtea-3.0.0_pre08/work/icedtea-3.0.0/openjdk.build/jdk/jce/unsigned/policy/limited/local_policy_jar.tmp/exempt_local.policy': No such file or directory -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:33:32 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:33:32 +0000 Subject: [Bug 1882] Dangerous interplay between GC, JIT and JVM resulting in JVM crash In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1882 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX Severity|blocker |normal --- Comment #3 from Andrew John Hughes --- These versions are no longer supported. Please re-open if this still exists with a current version, with details on how to reproduce it. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:34:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:34:59 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2841 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:34:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:34:59 +0000 Subject: [Bug 2841] [IcedTea8] Parallelism issues resulting from PR2459 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2841 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:37:19 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:37:19 +0000 Subject: [Bug 2842] New: [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 Bug ID: 2842 Summary: [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org OpenJDK's configure dereferences symlinks, breaking tools which wrap the compiler. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:37:39 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:37:39 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2842 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 02:37:39 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 02:37:39 +0000 Subject: [Bug 2842] [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED URL| |https://bugzilla.redhat.com | |/show_bug.cgi?id=1256464 Blocks| |1282 Target Milestone|--- |3.1.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:06 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:06 +0000 Subject: [Bug 2777] [IcedTea8] Fix MAX/MIN template usage on s390 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2777 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:07 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:07 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2777, which changed state. Bug 2777 Summary: [IcedTea8] Fix MAX/MIN template usage on s390 http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2777 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:20 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:20 +0000 Subject: [Bug 2459] [IcedTea8] Policy JAR files should be timestamped with the date of the policy file they hold In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2459 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:20 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:20 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2459, which changed state. Bug 2459 Summary: [IcedTea8] Policy JAR files should be timestamped with the date of the policy file they hold http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2459 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:38 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:38 +0000 Subject: [Bug 2321] [IcedTea8] Checksum of policy JAR files changes on every build In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2321 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:39 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:39 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2321, which changed state. Bug 2321 Summary: [IcedTea8] Checksum of policy JAR files changes on every build http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2321 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:39 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:39 +0000 Subject: [Bug 2459] [IcedTea8] Policy JAR files should be timestamped with the date of the policy file they hold In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2459 Bug 2459 depends on bug 2321, which changed state. Bug 2321 Summary: [IcedTea8] Checksum of policy JAR files changes on every build http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2321 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:55 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:55 +0000 Subject: [Bug 2127] [IcedTea8] SunEC provider crashes when built using system NSS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2127 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:05:56 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:05:56 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2127, which changed state. Bug 2127 Summary: [IcedTea8] SunEC provider crashes when built using system NSS http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2127 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:06:05 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:06:05 +0000 Subject: [Bug 2767] [IcedTea8] Remove remaining rogue binaries from OpenJDK tree In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2767 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:06:06 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:06:06 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2767, which changed state. Bug 2767 Summary: [IcedTea8] Remove remaining rogue binaries from OpenJDK tree http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2767 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:06:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:06:59 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2815, which changed state. Bug 2815 Summary: [IcedTea8] Race condition in SunEC provider with system NSS http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2815 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:06:58 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:06:58 +0000 Subject: [Bug 2815] [IcedTea8] Race condition in SunEC provider with system NSS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2815 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:07:02 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:07:02 +0000 Subject: [Bug 2769] [IcedTea8] Backport "8140620: Find and load default.sf2 as the default soundbank on Linux" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2769 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:07:03 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:07:03 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2769, which changed state. Bug 2769 Summary: [IcedTea8] Backport "8140620: Find and load default.sf2 as the default soundbank on Linux" http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2769 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:25:01 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:25:01 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 1368, which changed state. Bug 1368 Summary: [IcedTea8] Ensure debug data is available for all libraries and binaries without redundant files http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1368 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:25:00 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:25:00 +0000 Subject: [Bug 1368] [IcedTea8] Ensure debug data is available for all libraries and binaries without redundant files In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1368 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:39:50 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:39:50 +0000 Subject: [Bug 2842] [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 --- Comment #1 from hg commits --- details: http://icedtea.classpath.org//hg/icedtea8-forest?cmd=changeset;node=842cc183c9f6 author: mduigou date: Tue Jan 14 10:25:22 2014 -0800 8031668, PR2842: TOOLCHAIN_FIND_COMPILER unexpectedly resolves symbolic links Reviewed-by: erikj, ihse -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:40:00 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:00 +0000 Subject: [Bug 2842] [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 --- Comment #2 from hg commits --- details: http://icedtea.classpath.org//hg/icedtea8-forest?cmd=changeset;node=61798573efe5 author: ihse date: Fri Feb 05 03:23:59 2016 +0000 8148351, PR2842: Only display resolved symlink for compiler, do not change path Reviewed-by: erikj -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew at icedtea.classpath.org Fri Feb 5 03:40:22 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:22 +0000 Subject: /hg/icedtea8-forest/jaxws: Added tag icedtea-3.0.0pre08 for chan... Message-ID: changeset 1f1e5105e2fa in /hg/icedtea8-forest/jaxws details: http://icedtea.classpath.org/hg/icedtea8-forest/jaxws?cmd=changeset;node=1f1e5105e2fa author: andrew date: Fri Feb 05 03:38:12 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset 26a1fdce80b7 diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r 26a1fdce80b7 -r 1f1e5105e2fa .hgtags --- a/.hgtags Tue Dec 08 03:10:35 2015 +0000 +++ b/.hgtags Fri Feb 05 03:38:12 2016 +0000 @@ -452,3 +452,4 @@ c21563403b7a043be3d8f1afdd314e91438e357c jdk8u60-b23 1c0bd390de6663c03939525779c2b0400994dde3 icedtea-3.0.0pre06 2012603e0e903fcefe85a17ece0ce5ea0ce5df28 icedtea-3.0.0pre07 +26a1fdce80b734da2d105182f51430f0d015bef0 icedtea-3.0.0pre08 From andrew at icedtea.classpath.org Fri Feb 5 03:40:28 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:28 +0000 Subject: /hg/icedtea8-forest/langtools: Added tag icedtea-3.0.0pre08 for ... Message-ID: changeset 89932e50957f in /hg/icedtea8-forest/langtools details: http://icedtea.classpath.org/hg/icedtea8-forest/langtools?cmd=changeset;node=89932e50957f author: andrew date: Fri Feb 05 03:38:14 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset 0d3479e0bac6 diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r 0d3479e0bac6 -r 89932e50957f .hgtags --- a/.hgtags Tue Dec 08 03:10:39 2015 +0000 +++ b/.hgtags Fri Feb 05 03:38:14 2016 +0000 @@ -452,3 +452,4 @@ 7f88b5dc78cebc2c5ebb716938fd9a7632b052b2 jdk8u60-b23 69b782e543d54118f9354b6071830de5feb96b83 icedtea-3.0.0pre06 3c76eafe1b7010bf5536add7097c318d349efb16 icedtea-3.0.0pre07 +0d3479e0bac61b3fab0f8e884fc6bda8f8f351a5 icedtea-3.0.0pre08 From andrew at icedtea.classpath.org Fri Feb 5 03:40:35 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:35 +0000 Subject: /hg/icedtea8-forest/hotspot: Added tag icedtea-3.0.0pre08 for ch... Message-ID: changeset 2afab5ce75a5 in /hg/icedtea8-forest/hotspot details: http://icedtea.classpath.org/hg/icedtea8-forest/hotspot?cmd=changeset;node=2afab5ce75a5 author: andrew date: Fri Feb 05 03:38:17 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset c313c4782bb3 diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r c313c4782bb3 -r 2afab5ce75a5 .hgtags --- a/.hgtags Thu Jan 28 02:50:10 2016 +0000 +++ b/.hgtags Fri Feb 05 03:38:17 2016 +0000 @@ -704,3 +704,4 @@ 8ec803e97a0d578eaeaf8375ee295a5928eb546f aarch64-jdk8u60-b24.2 2ee4407fe4e4ae13c5c7ef20709616cb3f43dea9 icedtea-3.0.0pre06 ddebea156752c9a58ab2ab82f5dc28efee5f8f82 icedtea-3.0.0pre07 +c313c4782bb33aa4ea49f1342c54b3138af418a1 icedtea-3.0.0pre08 From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:40:52 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:52 +0000 Subject: [Bug 2841] [IcedTea8] Parallelism issues resulting from PR2459 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2841 --- Comment #1 from hg commits --- details: http://icedtea.classpath.org//hg/icedtea8-forest/jdk?cmd=changeset;node=9b6cfe5f5078 author: andrew date: Fri Feb 05 02:34:32 2016 +0000 PR2841: Parallelism issues resulting from PR2459 Summary: Declare dependencies of Manifest rule before Manifest rule -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Fri Feb 5 03:40:56 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:56 +0000 Subject: [Bug 2459] [IcedTea8] Policy JAR files should be timestamped with the date of the policy file they hold In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2459 --- Comment #3 from hg commits --- details: http://icedtea.classpath.org//hg/icedtea8-forest/jdk?cmd=changeset;node=9b6cfe5f5078 author: andrew date: Fri Feb 05 02:34:32 2016 +0000 PR2841: Parallelism issues resulting from PR2459 Summary: Declare dependencies of Manifest rule before Manifest rule -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew at icedtea.classpath.org Fri Feb 5 03:41:07 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:41:07 +0000 Subject: /hg/icedtea8-forest/nashorn: Added tag icedtea-3.0.0pre08 for ch... Message-ID: changeset da2254579723 in /hg/icedtea8-forest/nashorn details: http://icedtea.classpath.org/hg/icedtea8-forest/nashorn?cmd=changeset;node=da2254579723 author: andrew date: Fri Feb 05 03:38:16 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset 7babac6e7ecf diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r 7babac6e7ecf -r da2254579723 .hgtags --- a/.hgtags Tue Dec 08 03:10:42 2015 +0000 +++ b/.hgtags Fri Feb 05 03:38:16 2016 +0000 @@ -437,3 +437,4 @@ 23165e806566f01cdc56421ea82c7e74a6fd85d5 jdk8u60-b23 6f6d12f78ab05aa9ece89aeec09177ae088f33aa icedtea-3.0.0pre06 fd478ce27023b3a4a7a9b64e65ce670c2b047542 icedtea-3.0.0pre07 +7babac6e7ecf625dc1f8f2c961c09ea9822ae90f icedtea-3.0.0pre08 From andrew at icedtea.classpath.org Fri Feb 5 03:40:43 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:43 +0000 Subject: /hg/icedtea8-forest/jdk: 2 new changesets Message-ID: changeset 9b6cfe5f5078 in /hg/icedtea8-forest/jdk details: http://icedtea.classpath.org/hg/icedtea8-forest/jdk?cmd=changeset;node=9b6cfe5f5078 author: andrew date: Fri Feb 05 02:34:32 2016 +0000 PR2841: Parallelism issues resulting from PR2459 Summary: Declare dependencies of Manifest rule before Manifest rule changeset 4375c0bd22ca in /hg/icedtea8-forest/jdk details: http://icedtea.classpath.org/hg/icedtea8-forest/jdk?cmd=changeset;node=4375c0bd22ca author: andrew date: Fri Feb 05 03:38:13 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset 809d98eeda49 diffstat: .hgtags | 1 + make/CreateSecurityJars.gmk | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diffs (67 lines): diff -r 809d98eeda49 -r 4375c0bd22ca .hgtags --- a/.hgtags Tue Oct 27 15:19:15 2015 -0400 +++ b/.hgtags Fri Feb 05 03:38:13 2016 +0000 @@ -469,3 +469,4 @@ 0b8920048898b50eca657d53d91468b41cc3269b aarch64-jdk8u60-b24.2 fb2a70b389fef390376e585f11fbf7571ef44489 icedtea-3.0.0pre06 c4b25140f059fc7115c4b19385b66f98d9b14da2 icedtea-3.0.0pre07 +809d98eeda495566d255eb01353e5251be7a8067 icedtea-3.0.0pre08 diff -r 809d98eeda49 -r 4375c0bd22ca make/CreateSecurityJars.gmk --- a/make/CreateSecurityJars.gmk Tue Oct 27 15:19:15 2015 -0400 +++ b/make/CreateSecurityJars.gmk Fri Feb 05 03:38:13 2016 +0000 @@ -208,6 +208,8 @@ $(install-file) $(TOUCH) -t $(POLICY_CREATION_DATE) $@ + US_EXPORT_POLICY_JAR_POLICIES := $(US_EXPORT_POLICY_JAR_TMP)/default_US_export.policy + $(US_EXPORT_POLICY_JAR_MANIFEST_FILE): $(US_EXPORT_POLICY_JAR_POLICIES) $(MKDIR) -p $(US_EXPORT_POLICY_JAR_TMP)/META-INF $(ECHO) "Manifest-Version: 1.0" > $@ @@ -216,8 +218,6 @@ $(US_EXPORT_POLICY_JAR_TMP)/META-INF $(TOUCH) -r $(US_EXPORT_POLICY_JAR_TMP)/META-INF $@ - US_EXPORT_POLICY_JAR_POLICIES := $(US_EXPORT_POLICY_JAR_TMP)/default_US_export.policy - US_EXPORT_POLICY_JAR_DEPS := $(US_EXPORT_POLICY_JAR_POLICIES) $(US_EXPORT_POLICY_JAR_MANIFEST_FILE) $(US_EXPORT_POLICY_JAR_UNLIMITED_UNSIGNED): $(US_EXPORT_POLICY_JAR_DEPS) @@ -280,6 +280,9 @@ $(install-file) $(TOUCH) -t $(POLICY_CREATION_DATE) $@ + LOCAL_POLICY_JAR_LIMITED_POLICIES := $(LOCAL_POLICY_JAR_LIMITED_TMP)/exempt_local.policy \ + $(LOCAL_POLICY_JAR_LIMITED_TMP)/default_local.policy + $(LOCAL_POLICY_JAR_LIMITED_MANIFEST_FILE): $(LOCAL_POLICY_JAR_LIMITED_POLICIES) $(MKDIR) -p $(LOCAL_POLICY_JAR_LIMITED_TMP)/META-INF $(ECHO) "Manifest-Version: 1.0" > $@ @@ -288,9 +291,6 @@ $(LOCAL_POLICY_JAR_LIMITED_TMP)/META-INF $(TOUCH) -r $(LOCAL_POLICY_JAR_LIMITED_TMP)/META-INF $@ - LOCAL_POLICY_JAR_LIMITED_POLICIES := $(LOCAL_POLICY_JAR_LIMITED_TMP)/exempt_local.policy \ - $(LOCAL_POLICY_JAR_LIMITED_TMP)/default_local.policy - LOCAL_POLICY_JAR_LIMITED_DEPS := $(LOCAL_POLICY_JAR_LIMITED_POLICIES) \ $(LOCAL_POLICY_JAR_LIMITED_MANIFEST_FILE) @@ -302,6 +302,8 @@ $(install-file) $(TOUCH) -t $(POLICY_CREATION_DATE) $@ + LOCAL_POLICY_JAR_UNLIMITED_POLICIES := $(LOCAL_POLICY_JAR_UNLIMITED_TMP)/default_local.policy + $(LOCAL_POLICY_JAR_UNLIMITED_MANIFEST_FILE): $(LOCAL_POLICY_JAR_UNLIMITED_POLICIES) $(MKDIR) -p $(LOCAL_POLICY_JAR_UNLIMITED_TMP)/META-INF $(ECHO) "Manifest-Version: 1.0" > $@ @@ -310,8 +312,6 @@ $(LOCAL_POLICY_JAR_UNLIMITED_TMP)/META-INF $(TOUCH) -r $(LOCAL_POLICY_JAR_UNLIMITED_TMP)/META-INF $@ - LOCAL_POLICY_JAR_UNLIMITED_POLICIES := $(LOCAL_POLICY_JAR_UNLIMITED_TMP)/default_local.policy - LOCAL_POLICY_JAR_UNLIMITED_DEPS := $(LOCAL_POLICY_JAR_UNLIMITED_POLICIES) \ $(LOCAL_POLICY_JAR_UNLIMITED_MANIFEST_FILE) From andrew at icedtea.classpath.org Fri Feb 5 03:40:09 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:09 +0000 Subject: /hg/icedtea8-forest/corba: Added tag icedtea-3.0.0pre08 for chan... Message-ID: changeset 178a782d6f4f in /hg/icedtea8-forest/corba details: http://icedtea.classpath.org/hg/icedtea8-forest/corba?cmd=changeset;node=178a782d6f4f author: andrew date: Fri Feb 05 03:38:11 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset ebc2780ebeb3 diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r ebc2780ebeb3 -r 178a782d6f4f .hgtags --- a/.hgtags Tue Dec 08 03:10:33 2015 +0000 +++ b/.hgtags Fri Feb 05 03:38:11 2016 +0000 @@ -452,3 +452,4 @@ 0828bb6521738ad5a7fe11f0aa3495465f002848 jdk8u60-b23 9e44a6fa912760c513f9a59826c061fd5ca17c5e icedtea-3.0.0pre06 7418bb690047791d64e1b4adb692ad07d8a44bad icedtea-3.0.0pre07 +ebc2780ebeb34e292b5cfb0e8da1efafa8395306 icedtea-3.0.0pre08 From andrew at icedtea.classpath.org Fri Feb 5 03:40:16 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Fri, 05 Feb 2016 03:40:16 +0000 Subject: /hg/icedtea8-forest/jaxp: Added tag icedtea-3.0.0pre08 for chang... Message-ID: changeset 2cac1e7582cc in /hg/icedtea8-forest/jaxp details: http://icedtea.classpath.org/hg/icedtea8-forest/jaxp?cmd=changeset;node=2cac1e7582cc author: andrew date: Fri Feb 05 03:38:12 2016 +0000 Added tag icedtea-3.0.0pre08 for changeset ac52a8eed353 diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r ac52a8eed353 -r 2cac1e7582cc .hgtags --- a/.hgtags Tue Dec 08 03:10:34 2015 +0000 +++ b/.hgtags Fri Feb 05 03:38:12 2016 +0000 @@ -454,3 +454,4 @@ 9d6b607dcbf820cfec17d6f8775d8649630cfb35 jdk8u60-b23 69e0cb284d8aa2a686c0428ff971dd2fee7a717c icedtea-3.0.0pre06 c08ba71fef662a52a0ac4f2fbacd1acc37764bc2 icedtea-3.0.0pre07 +ac52a8eed3530872eebf7092ea687b0ac8c03944 icedtea-3.0.0pre08 From ptisnovs at icedtea.classpath.org Fri Feb 5 12:41:35 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Fri, 05 Feb 2016 12:41:35 +0000 Subject: /hg/gfx-test: Added eight new tests into BitBltUsingBgColor. Message-ID: changeset a79cf268dd7c in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a79cf268dd7c author: Pavel Tisnovsky date: Fri Feb 05 13:45:08 2016 +0100 Added eight new tests into BitBltUsingBgColor. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r ab3e65563718 -r a79cf268dd7c ChangeLog --- a/ChangeLog Thu Feb 04 10:53:08 2016 +0100 +++ b/ChangeLog Fri Feb 05 13:45:08 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-05 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Added eight new tests into BitBltUsingBgColor. + 2016-02-04 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r ab3e65563718 -r a79cf268dd7c src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Thu Feb 04 10:53:08 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Fri Feb 05 13:45:08 2016 +0100 @@ -15976,6 +15976,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_565_RGB}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshort565RGBBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshort565RGB(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From bugzilla-daemon at icedtea.classpath.org Sat Feb 6 12:51:09 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Sat, 06 Feb 2016 12:51:09 +0000 Subject: [Bug 2843] A fatal error has been detected by the Java Runtime Environment In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2843 Yasumasa Suenaga changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |unassigned at icedtea.classpat | |h.org, yasuenag at gmail.com Component|Both |Zero Assignee|heapstats at icedtea.classpath |gnu.andrew at redhat.com |.org | Product|HeapStats |IcedTea --- Comment #1 from Yasumasa Suenaga --- It is not HeapStats issue. You DID NOT use HeapStats when process crashed. I guess that this crash is caused by GC implementation at ZeroVM. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jacques.charpie at romandie.com Sun Feb 7 14:35:40 2016 From: jacques.charpie at romandie.com (=?iso-8859-1?Q?Jacques_Charpi=E9?=) Date: Sun, 7 Feb 2016 15:35:40 +0100 Subject: setting for icedtea plugin Message-ID: <060e01d161b4$d222ab30$76680190$@romandie.com> Hi everybody, I?m not sure if this the right place to ask my question but here it is ;-) I?m using the java icedtea plugin in the iceweasel browser on a raspberry pi2 in order to display a java based HMI for a logic controller (PLC). It works just fine. My question: At every start, I have to authorize the plugin in the following window (here as an example) The application Webvisualization from http:/x.x.x.x/plc/webvisu.htm uses resources from the following remote locations: http:/x.x.x.x/plc Are you sure you want to run this application? Yes No => I have to click ?yes? Question: Is there a setting where to enable this webserver in a configuration so the java plugin can start automatically? Thank you Jack -------------- next part -------------- An HTML attachment was scrubbed... URL: From jvanek at redhat.com Mon Feb 8 10:02:32 2016 From: jvanek at redhat.com (Jiri Vanek) Date: Mon, 8 Feb 2016 11:02:32 +0100 Subject: setting for icedtea plugin In-Reply-To: <060e01d161b4$d222ab30$76680190$@romandie.com> References: <060e01d161b4$d222ab30$76680190$@romandie.com> Message-ID: <56B867B8.5040305@redhat.com> On 02/07/2016 03:35 PM, Jacques Charpi? wrote: > Hi everybody, > > I?m not sure if this the right place to ask my question but here it is ;-) Hello! Yes, thsi si bes tlist ofr ITW. > > I?m using the java icedtea plugin in the iceweasel browser on a raspberry pi2 in order to display a java based HMI for a logic controller (PLC). It works just fine. What version are you using? The solution depends on it. If you are using anythng older then 1.6.2, please update. > > My question: > > At every start, I have to authorize the plugin in the following window (here as an example) > > The application Webvisualization from http:/x.x.x.x/plc/webvisu.htm uses resources from the following remote locations: > > http:/x.x.x.x/plc > > Are you sure you want to run this application? Yes No => I have to click ?yes? Indeed it does. > > Question: Is there a setting where to enable this webserver in a configuration so the java plugin can start automatically? Those check was introduced in 1.5 in 1.5.x you should be able to to disable it by adding deloyment.manifest.attributes.check=false to ~/.config/icedtea-web/deployment.properties (or generally $XDG_CONFIG_DIR/icedtea-web/deployment.properties) in 1.6.x it is deloyment.manifest.attributes.check=NONE Since 1.6 deloyment.manifest.attributes.check have more then true/false value. You can find the values in ITW man page/internal help/online help[1] So instead of NONE sue rather value whoc handles only your dialogue. Since 1.7 (somwehere in 2016) I'm planing (is 4/5 implemented)to have on every dialog "rember me" checkbox. Hope it helps, feel free to ask again or let me know if it do nto work for you. [2] J. [1] http://icedtea.wildebeest.org/download/icedtea-web-docs/1.6.2/html/en/itweb-settings.html i think yours one will be ALAC [2] BEST solution which you can do, si to sign the application AND set correct ALAC manfest entry http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/manifest.html#app_library From ptisnovs at icedtea.classpath.org Mon Feb 8 10:37:52 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Mon, 08 Feb 2016 10:37:52 +0000 Subject: /hg/gfx-test: Updated. Message-ID: changeset 6d628a13f844 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6d628a13f844 author: Pavel Tisnovsky date: Mon Feb 08 11:41:27 2016 +0100 Updated. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r a79cf268dd7c -r 6d628a13f844 ChangeLog --- a/ChangeLog Fri Feb 05 13:45:08 2016 +0100 +++ b/ChangeLog Mon Feb 08 11:41:27 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-08 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Updated. + 2016-02-05 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r a79cf268dd7c -r 6d628a13f844 src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Fri Feb 05 13:45:08 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Feb 08 11:41:27 2016 +0100 @@ -16096,6 +16096,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_GRAY}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_BYTE_GRAY}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeUshortGrayBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeUshortGray(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From ptisnovs at icedtea.classpath.org Tue Feb 9 12:56:39 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Tue, 09 Feb 2016 12:56:39 +0000 Subject: /hg/gfx-test: Added eight new tests into BitBltUsingBgColor. Message-ID: changeset 2e9fd5d53068 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=2e9fd5d53068 author: Pavel Tisnovsky date: Tue Feb 09 14:00:15 2016 +0100 Added eight new tests into BitBltUsingBgColor. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColor.java | 120 +++++++++++++++++++++ 2 files changed, 125 insertions(+), 0 deletions(-) diffs (142 lines): diff -r 6d628a13f844 -r 2e9fd5d53068 ChangeLog --- a/ChangeLog Mon Feb 08 11:41:27 2016 +0100 +++ b/ChangeLog Tue Feb 09 14:00:15 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-09 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: + Added eight new tests into BitBltUsingBgColor. + 2016-02-08 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r 6d628a13f844 -r 2e9fd5d53068 src/org/gfxtest/testsuites/BitBltUsingBgColor.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Mon Feb 08 11:41:27 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColor.java Tue Feb 09 14:00:15 2016 +0100 @@ -16216,6 +16216,126 @@ } /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_USHORT_GRAY}. + * Background color is set to Color.black. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundBlack(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.black); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundBlue(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.blue); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.green. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundGreen(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.green); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundCyan(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.cyan); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.red. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundRed(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.red); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.magenta. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundMagenta(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.magenta); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.yellow. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundYellow(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.yellow); + } + + /** + * Test basic BitBlt operation for diagonal grid buffered image with type {@link BufferedImage#TYPE_CUSTOM}. + * Background color is set to Color.white. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltDiagonalGridBufferedImageTypeCustomBackgroundWhite(TestImage image, Graphics2D graphics2d) + { + return doBitBltDiagonalGridBufferedImageTypeCustom(image, graphics2d, Color.white); + } + + /** * Entry point to the test suite. * * @param args not used in this case From bugzilla-daemon at icedtea.classpath.org Tue Feb 9 18:43:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 09 Feb 2016 18:43:59 +0000 Subject: [Bug 2843] A fatal error has been detected by the Java Runtime Environment In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2843 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Zero |Thumb2 JIT Version|unspecified |2.6.3 Assignee|gnu.andrew at redhat.com |aph at redhat.com Severity|enhancement |normal --- Comment #2 from Andrew John Hughes --- It's the ARM JIT. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptisnovs at icedtea.classpath.org Thu Feb 11 12:13:18 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Thu, 11 Feb 2016 12:13:18 +0000 Subject: /hg/gfx-test: Added five new tests into BitBltUsingBgColorAlpha. Message-ID: changeset 1a1eddab7dcb in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=1a1eddab7dcb author: Pavel Tisnovsky date: Thu Feb 11 13:16:56 2016 +0100 Added five new tests into BitBltUsingBgColorAlpha. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 77 ++++++++++++++++- 2 files changed, 81 insertions(+), 1 deletions(-) diffs (106 lines): diff -r 2e9fd5d53068 -r 1a1eddab7dcb ChangeLog --- a/ChangeLog Tue Feb 09 14:00:15 2016 +0100 +++ b/ChangeLog Thu Feb 11 13:16:56 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-11 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: + Added five new tests into BitBltUsingBgColorAlpha. + 2016-02-09 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColor.java: diff -r 2e9fd5d53068 -r 1a1eddab7dcb src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Tue Feb 09 14:00:15 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Thu Feb 11 13:16:56 2016 +0100 @@ -1,7 +1,7 @@ /* Java gfx-test framework - Copyright (C) 2012, 2013, 2014, 2015 Red Hat + Copyright (C) 2012, 2013, 2014, 2015, 2016 Red Hat This file is part of IcedTea. @@ -3208,6 +3208,81 @@ } /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha000(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.0f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha025(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.25f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha050(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.5f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha075(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 0.75f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundBlueAlpha100(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.blue, 1.00f); + } + + /** * Entry point to the test suite. * * @param args not used in this case From ptisnovs at icedtea.classpath.org Fri Feb 12 10:36:48 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Fri, 12 Feb 2016 10:36:48 +0000 Subject: /hg/gfx-test: Added five new tests into BitBltUsingBgColorAlpha. Message-ID: changeset 88e596b277c4 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=88e596b277c4 author: Pavel Tisnovsky date: Fri Feb 12 11:40:24 2016 +0100 Added five new tests into BitBltUsingBgColorAlpha. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 75 +++++++++++++++++ 2 files changed, 80 insertions(+), 0 deletions(-) diffs (97 lines): diff -r 1a1eddab7dcb -r 88e596b277c4 ChangeLog --- a/ChangeLog Thu Feb 11 13:16:56 2016 +0100 +++ b/ChangeLog Fri Feb 12 11:40:24 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-12 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: + Added five new tests into BitBltUsingBgColorAlpha. + 2016-02-11 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: diff -r 1a1eddab7dcb -r 88e596b277c4 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Thu Feb 11 13:16:56 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Fri Feb 12 11:40:24 2016 +0100 @@ -3283,6 +3283,81 @@ } /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundCyanAlpha000(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.cyan, 0.0f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundCyanAlpha025(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.cyan, 0.25f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundCyanAlpha050(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.cyan, 0.5f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundCyanAlpha075(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.cyan, 0.75f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntBGRBackgroundCyanAlpha100(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntBGR(image, graphics2d, Color.cyan, 1.00f); + } + + /** * Entry point to the test suite. * * @param args not used in this case From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:14:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:14:04 +0000 Subject: [Bug 1252] icedtea-web-1.3 on icedtea-2.3.3 with seamonkey-2.13.2 plugin not detected In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1252 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #2 from JiriVanek --- Hello! Is this already working? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:22:35 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:22:35 +0000 Subject: [Bug 878] Handle HTTP error 511 Network Authentication Required (standard secure proxy authentification/captive portal detection) In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=878 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |jvanek at redhat.com --- Comment #1 from JiriVanek --- Hello! I'm implenting this right now. Are you able to discuss detaisl of implementation and/or help with testing? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:26:16 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:26:16 +0000 Subject: [Bug 895] IcedTea-Web searches for missing classes on each loadClass or findClass In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=895 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from JiriVanek --- The amount of search cycles was reduced, but with dependencies loaded in runtime, it is dangerous to reduce it even more. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:27:01 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:27:01 +0000 Subject: [Bug 894] Applet crash causes plugin to hang until Firefox stops the script. In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=894 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from JiriVanek --- I'm not aware of any hanging behaviour as described. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:27:42 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:27:42 +0000 Subject: [Bug 870] Every Pages with Java Content Crash Xorg In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=870 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #7 from JiriVanek --- If this bug persists in 1.6.2 and newest browsers, please feel free to reopen -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:28:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:28:04 +0000 Subject: [Bug 866] problems with firefox-10.0, java-1.7.0-openjdk, and icedtea-web-1.1.4 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=866 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:28:46 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:28:46 +0000 Subject: [Bug 860] problem with some orca features not working in javaws In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=860 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |INVALID --- Comment #1 from JiriVanek --- The accessibility bridge java-gnome is moreover broken. Please report this to gnome. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:33:30 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:33:30 +0000 Subject: [Bug 858] MarvinSketch and several other Applets not working In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=858 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #7 from JiriVanek --- MarvinSketch is known to be working now. If you encaunter nay issues with 1.6.2 feel free to reopen The attached url with testpage donot seem to be using appelts anymore -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:45:25 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:45:25 +0000 Subject: [Bug 1625] Dell iDRAC virtual console: icedtea does not find trusted.certs and trusted.jssecerts (fails to look into ~/.icedtea/security) In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1625 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #1 from JiriVanek --- idrac is known tro be working with itw 1.6.2. .icedtea is no longger supported location anymore. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:46:46 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:46:46 +0000 Subject: [Bug 1583] XML Parse error? In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1583 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |MOVED --- Comment #3 from JiriVanek --- insufficient data -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:47:11 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:47:11 +0000 Subject: [Bug 1733] XML parsing exception when running javaws In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1733 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |MOVED --- Comment #7 from JiriVanek --- insufficient data -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:47:36 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:47:36 +0000 Subject: [Bug 849] Use XML for AUTHORS/NEWS for use in about.jnlp In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=849 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #1 from JiriVanek --- This is long time done! -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 10:48:38 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 10:48:38 +0000 Subject: [Bug 849] Use XML for AUTHORS/NEWS for use in about.jnlp In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=849 --- Comment #2 from JiriVanek --- Oh - wrong. Authors and NEWS are used in about.jnlp. ITW is never going to move to xml in this format, unless some volunteer appear. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptisnovs at icedtea.classpath.org Mon Feb 15 12:14:30 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Mon, 15 Feb 2016 12:14:30 +0000 Subject: /hg/gfx-test: Added five new tests into BitBltUsingBgColorAlpha. Message-ID: changeset e33f9e5e5e92 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=e33f9e5e5e92 author: Pavel Tisnovsky date: Mon Feb 15 13:18:09 2016 +0100 Added five new tests into BitBltUsingBgColorAlpha. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 75 +++++++++++++++++ 2 files changed, 80 insertions(+), 0 deletions(-) diffs (97 lines): diff -r 88e596b277c4 -r e33f9e5e5e92 ChangeLog --- a/ChangeLog Fri Feb 12 11:40:24 2016 +0100 +++ b/ChangeLog Mon Feb 15 13:18:09 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-15 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: + Added five new tests into BitBltUsingBgColorAlpha. + 2016-02-12 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: diff -r 88e596b277c4 -r e33f9e5e5e92 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Fri Feb 12 11:40:24 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Mon Feb 15 13:18:09 2016 +0100 @@ -2983,6 +2983,81 @@ } /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundBlueAlpha000(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.blue, 0.0f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundBlueAlpha025(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.blue, 0.25f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundBlueAlpha050(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.blue, 0.5f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundBlueAlpha075(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.blue, 0.75f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.blue. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundBlueAlpha100(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.blue, 1.00f); + } + + /** * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. * Background color is set to Color.black. * From robert at marcanoonline.com Mon Feb 15 14:24:36 2016 From: robert at marcanoonline.com (Robert Marcano) Date: Mon, 15 Feb 2016 09:54:36 -0430 Subject: ConcurrentModificationException and duplicate class definition Message-ID: <56C1DFA4.6020208@marcanoonline.com> Greetings. I am trying to narrow down a bug I experience only when using icedtea-web JNLP implementation. It doesn't happen with closed source Oracle implementation. I am using Weld (CDI on a SE environment). When using default Weld configuration it do concurrent bean deployment and I get: java.lang.LinkageError: loader (instance of net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate class definition for name: "com/...../ClassName" [1] At first I thought it was some kind on Weld bug with concurrency. I disabled concurrent deployment with a Weld configuration property. Then I get java.util.ConcurrentModificationException [2] inside JNLPClassLoader. Weld without concurrency doesn't mean the applications is not concurrent. I start Weld initialization on a separate thread meanwhile the login screen is shown and the user is typing the credentials, This reduce the startup time of the application for a few seconds. I have seen a few concurrency related old fixed bugs for icedtea-web. It does looks to me like another one. Any hints? [1] When Weld concurrency is enabled > org.jboss.weld.exceptions.DeploymentException: loader (instance of net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate class definition for name: "com/.../Classname" > at org.jboss.weld.executor.AbstractExecutorServices.checkForExceptions(AbstractExecutorServices.java:66) > at org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:43) > at org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:51) > at org.jboss.weld.bootstrap.ConcurrentBeanDeployer.addClasses(ConcurrentBeanDeployer.java:62) > at org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:209) > at org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:366) > at org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) > at org.jboss.weld.environment.se.Weld.initialize(Weld.java:149) > at com.....WeldInitializer.run(Unknown Source) > Caused by: java.lang.LinkageError: loader (instance of net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate class definition for name: "com/.../Classname" > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1601(JNLPClassLoader.java:106) > at net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1800) > at net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1798) > at java.security.AccessController.doPrivileged(Native Method) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1797) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1834) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1624) > at org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.loadClass(JandexClassFileInfo.java:281) > at org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:225) > at org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:231) > at org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:101) > at org.jboss.weld.util.Beans.isTypeManagedBeanOrDecoratorOrInterceptor(Beans.java:519) > at org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:83) > at org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) > at org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:65) > at org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:62) > at org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:60) > at org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:53) > at java.util.concurrent.FutureTask.run(FutureTask.java:262) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) > at java.lang.Thread.run(Thread.java:744) [2] when Weld concurrency is disabled > Caused by: java.util.ConcurrentModificationException > at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) > at java.util.ArrayList$Itr.next(ArrayList.java:851) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.getPermissions(JNLPClassLoader.java:1180) > at java.security.SecureClassLoader.getProtectionDomain(SecureClassLoader.java:206) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) > at java.net.URLClassLoader.access$100(URLClassLoader.java:73) > at java.net.URLClassLoader$1.run(URLClassLoader.java:368) > at java.net.URLClassLoader$1.run(URLClassLoader.java:362) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:361) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1701(JNLPClassLoader.java:103) > at net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1666) > at net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1663) > at java.security.AccessController.doPrivileged(Native Method) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1662) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1699) > at net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1498) > at java.lang.Class.getDeclaredFields0(Native Method) > at java.lang.Class.privateGetDeclaredFields(Class.java:2583) > at java.lang.Class.getDeclaredFields(Class.java:1916) > at org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:30) > at org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:22) > at java.security.AccessController.doPrivileged(Native Method) > at org.jboss.weld.annotated.slim.backed.SecurityActions.getDeclaredFields(SecurityActions.java:47) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:179) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:173) > at org.jboss.weld.util.LazyValueHolder.get(LazyValueHolder.java:35) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$EagerlyInitializedLazyValueHolder.(BackedAnnotatedType.java:156) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.(BackedAnnotatedType.java:62) > at org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.of(BackedAnnotatedType.java:44) > at org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:83) > at org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:80) > at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3527) > at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2319) > at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2282) > at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2197) > at com.google.common.cache.LocalCache.get(LocalCache.java:3937) > at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3941) > at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4824) > at org.jboss.weld.util.cache.LoadingCacheUtils.getCacheValue(LoadingCacheUtils.java:49) > at org.jboss.weld.util.cache.LoadingCacheUtils.getCastCacheValue(LoadingCacheUtils.java:74) > at org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:175) > at org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:194) > at org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:109) > at org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.createContext(FastAnnotatedTypeLoader.java:98) > at org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:87) > at org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) > at org.jboss.weld.bootstrap.BeanDeployer.addClasses(BeanDeployer.java:135) > at org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:203) > at org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:375) > at org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) > at org.jboss.weld.environment.se.Weld.initialize(Weld.java:556) From robert at marcanoonline.com Mon Feb 15 14:30:40 2016 From: robert at marcanoonline.com (Robert Marcano) Date: Mon, 15 Feb 2016 10:00:40 -0430 Subject: ConcurrentModificationException and duplicate class definition In-Reply-To: <56C1DFA4.6020208@marcanoonline.com> References: <56C1DFA4.6020208@marcanoonline.com> Message-ID: <56C1E110.50002@marcanoonline.com> On 02/15/2016 09:54 AM, Robert Marcano wrote: > Greetings. I am trying to narrow down a bug I experience only when using > icedtea-web JNLP implementation. It doesn't happen with closed source > Oracle implementation. I am using Weld (CDI on a SE environment). When > using default Weld configuration it do concurrent bean deployment and I > get: I forgot to say that this doesn't happen every time. It is reported by a few users randomly, apparently when the application is updated. On a developer machine it happens randomly like 1 in 20 startups with forced updates. > > java.lang.LinkageError: loader (instance of > net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate > class definition for name: "com/...../ClassName" [1] > > At first I thought it was some kind on Weld bug with concurrency. I > disabled concurrent deployment with a Weld configuration property. Then > I get java.util.ConcurrentModificationException [2] inside > JNLPClassLoader. Weld without concurrency doesn't mean the applications > is not concurrent. I start Weld initialization on a separate thread > meanwhile the login screen is shown and the user is typing the > credentials, This reduce the startup time of the application for a few > seconds. > > I have seen a few concurrency related old fixed bugs for icedtea-web. It > does looks to me like another one. Any hints? > > > [1] When Weld concurrency is enabled > >> org.jboss.weld.exceptions.DeploymentException: loader (instance of >> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >> class definition for name: "com/.../Classname" >> at >> org.jboss.weld.executor.AbstractExecutorServices.checkForExceptions(AbstractExecutorServices.java:66) >> >> at >> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:43) >> >> at >> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:51) >> >> at >> org.jboss.weld.bootstrap.ConcurrentBeanDeployer.addClasses(ConcurrentBeanDeployer.java:62) >> >> at >> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:209) >> >> at >> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:366) >> >> at >> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >> >> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:149) >> at com.....WeldInitializer.run(Unknown Source) >> Caused by: java.lang.LinkageError: loader (instance of >> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >> class definition for name: "com/.../Classname" >> at java.lang.ClassLoader.defineClass1(Native Method) >> at java.lang.ClassLoader.defineClass(ClassLoader.java:800) >> at >> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >> at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) >> at java.net.URLClassLoader.access$100(URLClassLoader.java:71) >> at java.net.URLClassLoader$1.run(URLClassLoader.java:361) >> at java.net.URLClassLoader$1.run(URLClassLoader.java:355) >> at java.security.AccessController.doPrivileged(Native Method) >> at java.net.URLClassLoader.findClass(URLClassLoader.java:354) >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1601(JNLPClassLoader.java:106) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1800) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1798) >> >> at java.security.AccessController.doPrivileged(Native Method) >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1797) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1834) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1624) >> >> at >> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.loadClass(JandexClassFileInfo.java:281) >> >> at >> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:225) >> >> at >> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:231) >> >> at >> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:101) >> >> at >> org.jboss.weld.util.Beans.isTypeManagedBeanOrDecoratorOrInterceptor(Beans.java:519) >> >> at >> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:83) >> >> at >> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >> at >> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:65) >> >> at >> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:62) >> >> at >> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:60) >> >> at >> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:53) >> >> at java.util.concurrent.FutureTask.run(FutureTask.java:262) >> at >> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) >> >> at >> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) >> >> at java.lang.Thread.run(Thread.java:744) > > > > > [2] when Weld concurrency is disabled > >> Caused by: java.util.ConcurrentModificationException >> at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) >> at java.util.ArrayList$Itr.next(ArrayList.java:851) >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.getPermissions(JNLPClassLoader.java:1180) >> >> at >> java.security.SecureClassLoader.getProtectionDomain(SecureClassLoader.java:206) >> >> at >> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >> at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) >> at java.net.URLClassLoader.access$100(URLClassLoader.java:73) >> at java.net.URLClassLoader$1.run(URLClassLoader.java:368) >> at java.net.URLClassLoader$1.run(URLClassLoader.java:362) >> at java.security.AccessController.doPrivileged(Native Method) >> at java.net.URLClassLoader.findClass(URLClassLoader.java:361) >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1701(JNLPClassLoader.java:103) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1666) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1663) >> >> at java.security.AccessController.doPrivileged(Native Method) >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1662) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1699) >> >> at >> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1498) >> >> at java.lang.Class.getDeclaredFields0(Native Method) >> at java.lang.Class.privateGetDeclaredFields(Class.java:2583) >> at java.lang.Class.getDeclaredFields(Class.java:1916) >> at >> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:30) >> >> at >> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:22) >> >> at java.security.AccessController.doPrivileged(Native Method) >> at >> org.jboss.weld.annotated.slim.backed.SecurityActions.getDeclaredFields(SecurityActions.java:47) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:179) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:173) >> >> at org.jboss.weld.util.LazyValueHolder.get(LazyValueHolder.java:35) >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$EagerlyInitializedLazyValueHolder.(BackedAnnotatedType.java:156) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.(BackedAnnotatedType.java:62) >> >> at >> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.of(BackedAnnotatedType.java:44) >> >> at >> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:83) >> >> at >> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:80) >> >> at >> com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3527) >> >> at >> com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2319) >> at >> com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2282) >> >> at >> com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2197) >> at com.google.common.cache.LocalCache.get(LocalCache.java:3937) >> at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3941) >> at >> com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4824) >> >> at >> org.jboss.weld.util.cache.LoadingCacheUtils.getCacheValue(LoadingCacheUtils.java:49) >> >> at >> org.jboss.weld.util.cache.LoadingCacheUtils.getCastCacheValue(LoadingCacheUtils.java:74) >> >> at >> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:175) >> >> at >> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:194) >> >> at >> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:109) >> >> at >> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.createContext(FastAnnotatedTypeLoader.java:98) >> >> at >> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:87) >> >> at >> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >> at >> org.jboss.weld.bootstrap.BeanDeployer.addClasses(BeanDeployer.java:135) >> at >> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:203) >> >> at >> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:375) >> >> at >> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >> >> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:556) > From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 15:56:33 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 15:56:33 +0000 Subject: [Bug 849] Use XML for AUTHORS/NEWS for use in about.jnlp In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=849 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |LATER -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 15:58:08 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 15:58:08 +0000 Subject: [Bug 1733] XML parsing exception when running javaws In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1733 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Resolution|MOVED |WORKSFORME -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 15:58:51 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 15:58:51 +0000 Subject: [Bug 1583] XML Parse error? In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1583 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Resolution|MOVED |WONTFIX -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 16:21:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 16:21:04 +0000 Subject: [Bug 2849] New: [IcedTea6] wget not required when downloading is disabled Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2849 Bug ID: 2849 Summary: [IcedTea6] wget not required when downloading is disabled Product: IcedTea Version: 6-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org configure checks for wget unconditionally, but builds with --disable-downloading don't use it. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 16:21:45 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 16:21:45 +0000 Subject: [Bug 2849] [IcedTea6] wget not required when downloading is disabled In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2849 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1503 Target Milestone|--- |6-1.14.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 16:21:45 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 16:21:45 +0000 Subject: [Bug 1503] [TRACKER] IcedTea6 1.14 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1503 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2849 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew at icedtea.classpath.org Mon Feb 15 17:52:43 2016 From: andrew at icedtea.classpath.org (andrew at icedtea.classpath.org) Date: Mon, 15 Feb 2016 17:52:43 +0000 Subject: /hg/icedtea6: PR2849: wget not required when downloading is disa... Message-ID: changeset e9935e163815 in /hg/icedtea6 details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=e9935e163815 author: Andrew John Hughes date: Mon Feb 15 17:48:40 2016 +0000 PR2849: wget not required when downloading is disabled 2016-02-15 Andrew John Hughes PR2849: wget not required when downloading is disabled * NEWS: Updated. * configure.ac: Only check for wget if downloading is enabled. diffstat: ChangeLog | 7 +++++++ NEWS | 1 + configure.ac | 4 +++- 3 files changed, 11 insertions(+), 1 deletions(-) diffs (46 lines): diff -r 412e3ce4141e -r e9935e163815 ChangeLog --- a/ChangeLog Mon Jan 25 22:06:42 2016 +0000 +++ b/ChangeLog Mon Feb 15 17:48:40 2016 +0000 @@ -1,3 +1,10 @@ +2016-02-15 Andrew John Hughes + + PR2849: wget not required when downloading is disabled + * NEWS: Updated. + * configure.ac: + Only check for wget if downloading is enabled. + 2016-01-25 Andrew John Hughes * Makefile.am: diff -r 412e3ce4141e -r e9935e163815 NEWS --- a/NEWS Mon Jan 25 22:06:42 2016 +0000 +++ b/NEWS Mon Feb 15 17:48:40 2016 +0000 @@ -26,6 +26,7 @@ * Bug fixes - PR1886: IcedTea does not checksum supplied tarballs - PR2083: Add support for building Zero on AArch64 + - PR2849: wget not required when downloading is disabled New in release 1.13.10 (2016-01-22): diff -r 412e3ce4141e -r e9935e163815 configure.ac --- a/configure.ac Mon Jan 25 22:06:42 2016 +0000 +++ b/configure.ac Mon Feb 15 17:48:40 2016 +0000 @@ -33,7 +33,6 @@ IT_FIND_TOOL([TAR], [tar]) IT_FIND_TOOL([CHMOD], [chmod]) IT_FIND_TOOL([SHA256SUM], [sha256sum]) -IT_FIND_TOOL([WGET], [wget]) IT_FIND_TOOL([ZIP], [zip]) IT_FIND_TOOL([UNZIP], [unzip]) IT_FIND_TOOL([CPIO], [cpio]) @@ -268,6 +267,9 @@ IT_FIND_ECJ_JAR IT_FIND_TOOL([XSLTPROC], [xsltproc]) fi +if test "x$enable_downloading" = "xyes"; then + IT_FIND_TOOL([WGET], [wget]) +fi IT_USING_CACAO AC_CONFIG_FILES([javac], [chmod +x javac]) AC_CONFIG_FILES([javap], [chmod +x javap]) From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 17:53:21 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 17:53:21 +0000 Subject: [Bug 2849] [IcedTea6] wget not required when downloading is disabled In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2849 --- Comment #1 from hg commits --- details: http://icedtea.classpath.org//hg/icedtea6?cmd=changeset;node=e9935e163815 author: Andrew John Hughes date: Mon Feb 15 17:48:40 2016 +0000 PR2849: wget not required when downloading is disabled 2016-02-15 Andrew John Hughes PR2849: wget not required when downloading is disabled * NEWS: Updated. * configure.ac: Only check for wget if downloading is enabled. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 17:56:07 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 17:56:07 +0000 Subject: [Bug 2849] [IcedTea6] wget not required when downloading is disabled In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2849 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #2 from Andrew John Hughes --- Commit pushed. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 15 17:56:08 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 15 Feb 2016 17:56:08 +0000 Subject: [Bug 1503] [TRACKER] IcedTea6 1.14 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1503 Bug 1503 depends on bug 2849, which changed state. Bug 2849 Summary: [IcedTea6] wget not required when downloading is disabled http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2849 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jvanek at redhat.com Tue Feb 16 06:19:24 2016 From: jvanek at redhat.com (Jiri Vanek) Date: Tue, 16 Feb 2016 07:19:24 +0100 Subject: ConcurrentModificationException and duplicate class definition In-Reply-To: <56C1E110.50002@marcanoonline.com> References: <56C1DFA4.6020208@marcanoonline.com> <56C1E110.50002@marcanoonline.com> Message-ID: <56C2BF6C.3060802@redhat.com> On 02/15/2016 03:30 PM, Robert Marcano wrote: > On 02/15/2016 09:54 AM, Robert Marcano wrote: Hello! I will e happy to help with this..but... although this is error in ITW's classlaoder - how is ITW involved? It do not run JNLP file, right? How can I reproduce it? Also - that linkage error, is it fatal? I guess so... J. >> Greetings. I am trying to narrow down a bug I experience only when using >> icedtea-web JNLP implementation. It doesn't happen with closed source >> Oracle implementation. I am using Weld (CDI on a SE environment). When >> using default Weld configuration it do concurrent bean deployment and I >> get: > > I forgot to say that this doesn't happen every time. It is reported by a few users randomly, > apparently when the application is updated. On a developer machine it happens randomly like 1 in 20 > startups with forced updates. > >> >> java.lang.LinkageError: loader (instance of >> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >> class definition for name: "com/...../ClassName" [1] >> >> At first I thought it was some kind on Weld bug with concurrency. I >> disabled concurrent deployment with a Weld configuration property. Then >> I get java.util.ConcurrentModificationException [2] inside >> JNLPClassLoader. Weld without concurrency doesn't mean the applications >> is not concurrent. I start Weld initialization on a separate thread >> meanwhile the login screen is shown and the user is typing the >> credentials, This reduce the startup time of the application for a few >> seconds. >> >> I have seen a few concurrency related old fixed bugs for icedtea-web. It >> does looks to me like another one. Any hints? >> >> >> [1] When Weld concurrency is enabled >> >>> org.jboss.weld.exceptions.DeploymentException: loader (instance of >>> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >>> class definition for name: "com/.../Classname" >>> at >>> org.jboss.weld.executor.AbstractExecutorServices.checkForExceptions(AbstractExecutorServices.java:66) >>> >>> >>> at >>> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:43) >>> >>> >>> at >>> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:51) >>> >>> >>> at >>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer.addClasses(ConcurrentBeanDeployer.java:62) >>> >>> at >>> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:209) >>> >>> at >>> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:366) >>> >>> at >>> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >>> >>> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:149) >>> at com.....WeldInitializer.run(Unknown Source) >>> Caused by: java.lang.LinkageError: loader (instance of >>> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >>> class definition for name: "com/.../Classname" >>> at java.lang.ClassLoader.defineClass1(Native Method) >>> at java.lang.ClassLoader.defineClass(ClassLoader.java:800) >>> at >>> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >>> at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) >>> at java.net.URLClassLoader.access$100(URLClassLoader.java:71) >>> at java.net.URLClassLoader$1.run(URLClassLoader.java:361) >>> at java.net.URLClassLoader$1.run(URLClassLoader.java:355) >>> at java.security.AccessController.doPrivileged(Native Method) >>> at java.net.URLClassLoader.findClass(URLClassLoader.java:354) >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1601(JNLPClassLoader.java:106) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1800) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1798) >>> >>> at java.security.AccessController.doPrivileged(Native Method) >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1797) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1834) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1624) >>> >>> at >>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.loadClass(JandexClassFileInfo.java:281) >>> >>> >>> at >>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:225) >>> >>> >>> at >>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:231) >>> >>> >>> at >>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:101) >>> >>> >>> at >>> org.jboss.weld.util.Beans.isTypeManagedBeanOrDecoratorOrInterceptor(Beans.java:519) >>> >>> at >>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:83) >>> >>> at >>> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >>> at >>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:65) >>> >>> at >>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:62) >>> >>> at >>> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:60) >>> >>> at >>> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:53) >>> >>> at java.util.concurrent.FutureTask.run(FutureTask.java:262) >>> at >>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) >>> >>> at >>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) >>> >>> at java.lang.Thread.run(Thread.java:744) >> >> >> >> >> [2] when Weld concurrency is disabled >> >>> Caused by: java.util.ConcurrentModificationException >>> at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) >>> at java.util.ArrayList$Itr.next(ArrayList.java:851) >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.getPermissions(JNLPClassLoader.java:1180) >>> >>> at >>> java.security.SecureClassLoader.getProtectionDomain(SecureClassLoader.java:206) >>> >>> at >>> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >>> at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) >>> at java.net.URLClassLoader.access$100(URLClassLoader.java:73) >>> at java.net.URLClassLoader$1.run(URLClassLoader.java:368) >>> at java.net.URLClassLoader$1.run(URLClassLoader.java:362) >>> at java.security.AccessController.doPrivileged(Native Method) >>> at java.net.URLClassLoader.findClass(URLClassLoader.java:361) >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1701(JNLPClassLoader.java:103) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1666) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1663) >>> >>> at java.security.AccessController.doPrivileged(Native Method) >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1662) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1699) >>> >>> at >>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1498) >>> >>> at java.lang.Class.getDeclaredFields0(Native Method) >>> at java.lang.Class.privateGetDeclaredFields(Class.java:2583) >>> at java.lang.Class.getDeclaredFields(Class.java:1916) >>> at >>> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:30) >>> >>> at >>> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:22) >>> >>> at java.security.AccessController.doPrivileged(Native Method) >>> at >>> org.jboss.weld.annotated.slim.backed.SecurityActions.getDeclaredFields(SecurityActions.java:47) >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:179) >>> >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:173) >>> >>> >>> at org.jboss.weld.util.LazyValueHolder.get(LazyValueHolder.java:35) >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$EagerlyInitializedLazyValueHolder.(BackedAnnotatedType.java:156) >>> >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >>> >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >>> >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.(BackedAnnotatedType.java:62) >>> >>> at >>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.of(BackedAnnotatedType.java:44) >>> >>> at >>> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:83) >>> >>> >>> at >>> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:80) >>> >>> >>> at >>> com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3527) >>> >>> at >>> com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2319) >>> at >>> com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2282) >>> >>> at >>> com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2197) >>> at com.google.common.cache.LocalCache.get(LocalCache.java:3937) >>> at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3941) >>> at >>> com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4824) >>> >>> at >>> org.jboss.weld.util.cache.LoadingCacheUtils.getCacheValue(LoadingCacheUtils.java:49) >>> >>> at >>> org.jboss.weld.util.cache.LoadingCacheUtils.getCastCacheValue(LoadingCacheUtils.java:74) >>> >>> at >>> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:175) >>> >>> at >>> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:194) >>> >>> at >>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:109) >>> >>> at >>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.createContext(FastAnnotatedTypeLoader.java:98) >>> >>> at >>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:87) >>> >>> at >>> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >>> at >>> org.jboss.weld.bootstrap.BeanDeployer.addClasses(BeanDeployer.java:135) >>> at >>> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:203) >>> >>> at >>> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:375) >>> >>> at >>> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >>> >>> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:556) >> > From ptisnovs at icedtea.classpath.org Tue Feb 16 12:36:37 2016 From: ptisnovs at icedtea.classpath.org (ptisnovs at icedtea.classpath.org) Date: Tue, 16 Feb 2016 12:36:37 +0000 Subject: /hg/gfx-test: Added five new tests into BitBltUsingBgColorAlpha. Message-ID: changeset fabb13547a53 in /hg/gfx-test details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=fabb13547a53 author: Pavel Tisnovsky date: Tue Feb 16 13:40:16 2016 +0100 Added five new tests into BitBltUsingBgColorAlpha. diffstat: ChangeLog | 5 + src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java | 75 +++++++++++++++++ 2 files changed, 80 insertions(+), 0 deletions(-) diffs (97 lines): diff -r e33f9e5e5e92 -r fabb13547a53 ChangeLog --- a/ChangeLog Mon Feb 15 13:18:09 2016 +0100 +++ b/ChangeLog Tue Feb 16 13:40:16 2016 +0100 @@ -1,3 +1,8 @@ +2016-02-16 Pavel Tisnovsky + + * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: + Added five new tests into BitBltUsingBgColorAlpha. + 2016-02-15 Pavel Tisnovsky * src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java: diff -r e33f9e5e5e92 -r fabb13547a53 src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java --- a/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Mon Feb 15 13:18:09 2016 +0100 +++ b/src/org/gfxtest/testsuites/BitBltUsingBgColorAlpha.java Tue Feb 16 13:40:16 2016 +0100 @@ -3058,6 +3058,81 @@ } /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundCyanAlpha000(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.cyan, 0.0f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundCyanAlpha025(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.cyan, 0.25f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundCyanAlpha050(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.cyan, 0.5f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundCyanAlpha075(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.cyan, 0.75f); + } + + /** + * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_ARGB_PRE}. + * Background color is set to Color.cyan. + * + * @param image + * image to be used as a destination for BitBlt-type operations + * @param graphics2d + * graphics canvas + * @return test result status - PASSED, FAILED or ERROR + */ + public TestResult testBitBltEmptyBufferedImageTypeIntARGBPreBackgroundCyanAlpha100(TestImage image, Graphics2D graphics2d) + { + return doBitBltEmptyBufferedImageTypeIntARGBPre(image, graphics2d, Color.cyan, 1.00f); + } + + /** * Test basic BitBlt operation for empty buffered image with type {@link BufferedImage#TYPE_INT_BGR}. * Background color is set to Color.black. * From robert at marcanoonline.com Tue Feb 16 14:29:39 2016 From: robert at marcanoonline.com (Robert Marcano) Date: Tue, 16 Feb 2016 09:59:39 -0430 Subject: ConcurrentModificationException and duplicate class definition In-Reply-To: <56C2BF6C.3060802@redhat.com> References: <56C1DFA4.6020208@marcanoonline.com> <56C1E110.50002@marcanoonline.com> <56C2BF6C.3060802@redhat.com> Message-ID: <56C33253.7060905@marcanoonline.com> On 02/16/2016 01:49 AM, Jiri Vanek wrote: > On 02/15/2016 03:30 PM, Robert Marcano wrote: >> On 02/15/2016 09:54 AM, Robert Marcano wrote: > > > Hello! > > I will e happy to help with this..but... although this is error in > ITW's classlaoder - how is ITW involved? Thanks. The application is loaded with javaws, Using Fedora 23 packaged version 1.6.1. Will test with 1.6.2. > > It do not run JNLP file, right? How can I reproduce it? Well, the application start because Weld initialization is done on a different thread, it is unusable because after login that initialization is needed to have been satisfactory. I am still trying to package a test case that reproduce the problem on a small app. Will post the link when available. > > Also - that linkage error, is it fatal? I guess so... Yes, fatal for that thread. I have implemented a workaround that when I detect the ITW class loader I do Weld initialization on the same startup thread, the users get a 5 second delay that could be used to type the userid and password in parallel. This is only temporary until I get an example I can post > > J. >>> Greetings. I am trying to narrow down a bug I experience only when >>> using >>> icedtea-web JNLP implementation. It doesn't happen with closed source >>> Oracle implementation. I am using Weld (CDI on a SE environment). When >>> using default Weld configuration it do concurrent bean deployment and I >>> get: >> >> I forgot to say that this doesn't happen every time. It is reported >> by a few users randomly, >> apparently when the application is updated. On a developer machine it >> happens randomly like 1 in 20 >> startups with forced updates. >> >>> >>> java.lang.LinkageError: loader (instance of >>> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >>> class definition for name: "com/...../ClassName" [1] >>> >>> At first I thought it was some kind on Weld bug with concurrency. I >>> disabled concurrent deployment with a Weld configuration property. Then >>> I get java.util.ConcurrentModificationException [2] inside >>> JNLPClassLoader. Weld without concurrency doesn't mean the applications >>> is not concurrent. I start Weld initialization on a separate thread >>> meanwhile the login screen is shown and the user is typing the >>> credentials, This reduce the startup time of the application for a few >>> seconds. >>> >>> I have seen a few concurrency related old fixed bugs for >>> icedtea-web. It >>> does looks to me like another one. Any hints? >>> >>> >>> [1] When Weld concurrency is enabled >>> >>>> org.jboss.weld.exceptions.DeploymentException: loader (instance of >>>> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >>>> class definition for name: "com/.../Classname" >>>> at >>>> org.jboss.weld.executor.AbstractExecutorServices.checkForExceptions(AbstractExecutorServices.java:66) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:43) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.executor.AbstractExecutorServices.invokeAllAndCheckForExceptions(AbstractExecutorServices.java:51) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer.addClasses(ConcurrentBeanDeployer.java:62) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:209) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:366) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >>>> >>>> >>>> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:149) >>>> at com.....WeldInitializer.run(Unknown Source) >>>> Caused by: java.lang.LinkageError: loader (instance of >>>> net/sourceforge/jnlp/runtime/JNLPClassLoader): attempted duplicate >>>> class definition for name: "com/.../Classname" >>>> at java.lang.ClassLoader.defineClass1(Native Method) >>>> at java.lang.ClassLoader.defineClass(ClassLoader.java:800) >>>> at >>>> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >>>> >>>> at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) >>>> at java.net.URLClassLoader.access$100(URLClassLoader.java:71) >>>> at java.net.URLClassLoader$1.run(URLClassLoader.java:361) >>>> at java.net.URLClassLoader$1.run(URLClassLoader.java:355) >>>> at java.security.AccessController.doPrivileged(Native Method) >>>> at java.net.URLClassLoader.findClass(URLClassLoader.java:354) >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1601(JNLPClassLoader.java:106) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1800) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1798) >>>> >>>> >>>> at java.security.AccessController.doPrivileged(Native Method) >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1797) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1834) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1624) >>>> >>>> >>>> at >>>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.loadClass(JandexClassFileInfo.java:281) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:225) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:231) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.environment.deployment.discovery.jandex.JandexClassFileInfo.isAssignableTo(JandexClassFileInfo.java:101) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.util.Beans.isTypeManagedBeanOrDecoratorOrInterceptor(Beans.java:519) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:83) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >>>> at >>>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:65) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.ConcurrentBeanDeployer$1.doWork(ConcurrentBeanDeployer.java:62) >>>> >>>> >>>> at >>>> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:60) >>>> >>>> >>>> at >>>> org.jboss.weld.executor.IterativeWorkerTaskFactory$1.call(IterativeWorkerTaskFactory.java:53) >>>> >>>> >>>> at java.util.concurrent.FutureTask.run(FutureTask.java:262) >>>> at >>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) >>>> >>>> >>>> at >>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) >>>> >>>> >>>> at java.lang.Thread.run(Thread.java:744) >>> >>> >>> >>> >>> [2] when Weld concurrency is disabled >>> >>>> Caused by: java.util.ConcurrentModificationException >>>> at >>>> java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) >>>> at java.util.ArrayList$Itr.next(ArrayList.java:851) >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.getPermissions(JNLPClassLoader.java:1180) >>>> >>>> >>>> at >>>> java.security.SecureClassLoader.getProtectionDomain(SecureClassLoader.java:206) >>>> >>>> >>>> at >>>> java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) >>>> >>>> at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) >>>> at java.net.URLClassLoader.access$100(URLClassLoader.java:73) >>>> at java.net.URLClassLoader$1.run(URLClassLoader.java:368) >>>> at java.net.URLClassLoader$1.run(URLClassLoader.java:362) >>>> at java.security.AccessController.doPrivileged(Native Method) >>>> at java.net.URLClassLoader.findClass(URLClassLoader.java:361) >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.access$1701(JNLPClassLoader.java:103) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1666) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader$5.run(JNLPClassLoader.java:1663) >>>> >>>> >>>> at java.security.AccessController.doPrivileged(Native Method) >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.findClass(JNLPClassLoader.java:1662) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClassExt(JNLPClassLoader.java:1699) >>>> >>>> >>>> at >>>> net.sourceforge.jnlp.runtime.JNLPClassLoader.loadClass(JNLPClassLoader.java:1498) >>>> >>>> >>>> at java.lang.Class.getDeclaredFields0(Native Method) >>>> at java.lang.Class.privateGetDeclaredFields(Class.java:2583) >>>> at java.lang.Class.getDeclaredFields(Class.java:1916) >>>> at >>>> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:30) >>>> >>>> >>>> at >>>> org.jboss.weld.security.GetDeclaredFieldsAction.run(GetDeclaredFieldsAction.java:22) >>>> >>>> >>>> at java.security.AccessController.doPrivileged(Native Method) >>>> at >>>> org.jboss.weld.annotated.slim.backed.SecurityActions.getDeclaredFields(SecurityActions.java:47) >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:179) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.computeValue(BackedAnnotatedType.java:173) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.util.LazyValueHolder.get(LazyValueHolder.java:35) >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$EagerlyInitializedLazyValueHolder.(BackedAnnotatedType.java:156) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType$BackedAnnotatedFields.(BackedAnnotatedType.java:173) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.(BackedAnnotatedType.java:62) >>>> >>>> >>>> at >>>> org.jboss.weld.annotated.slim.backed.BackedAnnotatedType.of(BackedAnnotatedType.java:44) >>>> >>>> >>>> at >>>> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:83) >>>> >>>> >>>> >>>> at >>>> org.jboss.weld.resources.ClassTransformer$TransformClassToBackedAnnotatedType.load(ClassTransformer.java:80) >>>> >>>> >>>> >>>> at >>>> com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3527) >>>> >>>> >>>> at >>>> com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2319) >>>> >>>> at >>>> com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2282) >>>> >>>> >>>> at >>>> com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2197) >>>> at com.google.common.cache.LocalCache.get(LocalCache.java:3937) >>>> at >>>> com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3941) >>>> at >>>> com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4824) >>>> >>>> >>>> at >>>> org.jboss.weld.util.cache.LoadingCacheUtils.getCacheValue(LoadingCacheUtils.java:49) >>>> >>>> >>>> at >>>> org.jboss.weld.util.cache.LoadingCacheUtils.getCastCacheValue(LoadingCacheUtils.java:74) >>>> >>>> >>>> at >>>> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:175) >>>> >>>> >>>> at >>>> org.jboss.weld.resources.ClassTransformer.getBackedAnnotatedType(ClassTransformer.java:194) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:109) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.createContext(FastAnnotatedTypeLoader.java:98) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.FastAnnotatedTypeLoader.loadAnnotatedType(FastAnnotatedTypeLoader.java:87) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.BeanDeployer.addClass(BeanDeployer.java:97) >>>> at >>>> org.jboss.weld.bootstrap.BeanDeployer.addClasses(BeanDeployer.java:135) >>>> >>>> at >>>> org.jboss.weld.bootstrap.BeanDeployment.createClasses(BeanDeployment.java:203) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.WeldStartup.startInitialization(WeldStartup.java:375) >>>> >>>> >>>> at >>>> org.jboss.weld.bootstrap.WeldBootstrap.startInitialization(WeldBootstrap.java:76) >>>> >>>> >>>> at org.jboss.weld.environment.se.Weld.initialize(Weld.java:556) >>> >> > From jvanek at redhat.com Tue Feb 16 14:37:22 2016 From: jvanek at redhat.com (Jiri Vanek) Date: Tue, 16 Feb 2016 15:37:22 +0100 Subject: [rfc][icedtea-web] adding support for http 511 authentication Message-ID: <56C33422.7040004@redhat.com> SSIA:) Well, the patch is far from being finished, but I'm posting it there as proof of concept. At first I enhanced our testserver to support 511 on on demand (name/passwd itw) (most of the work) Once it was at least close to work, I implemented the reaction in itw. It was quite straightforward patch. As a fallback, the direct interaction with browser will be implemented (as jeditropane is far from covering all possible html issues). Also I need to test it on real proxies, If I will find no way how to use the modified tinnyhttserver for automated tests, it will probaby go away. Also - one reformatting sneaked in. Sorry. if you will ask why the skip choice, then - after is is tried several times, ITW swap to offlinemode. So if you dont wont to click yourself to death, you skip for session. J. -------------- next part -------------- A non-text attachment was scrubbed... Name: http511support.patch Type: text/x-patch Size: 53067 bytes Desc: not available URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:20:45 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:20:45 +0000 Subject: [Bug 2850] New: [IcedTea7] jdk_generic_profile.sh should set FT2_CFLAGS & FT2_LIBS Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2850 Bug ID: 2850 Summary: [IcedTea7] jdk_generic_profile.sh should set FT2_CFLAGS & FT2_LIBS Product: IcedTea Version: 7-hg Hardware: all OS: All Status: NEW Severity: enhancement Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org Changes local to IcedTea mean that FT2_LIBS & FT2_CFLAGS are needed to build against freetype, but jdk_generic_profile.sh does not set them. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:21:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:21:04 +0000 Subject: [Bug 2393] [TRACKER] IcedTea 2.7.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2393 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2850 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:21:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:21:04 +0000 Subject: [Bug 2850] [IcedTea7] jdk_generic_profile.sh should set FT2_CFLAGS & FT2_LIBS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2850 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |2393 Target Milestone|--- |2.7.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:26:23 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:26:23 +0000 Subject: [Bug 2851] New: [IcedTea7] Sync with PPC/AIX port 7u repository Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2851 Bug ID: 2851 Summary: [IcedTea7] Sync with PPC/AIX port 7u repository Product: IcedTea Version: 7-hg Hardware: ppc64 OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org comparing with ../../ppc7/hotspot changeset: 5860:8b7701d75672 user: goetz date: Wed Feb 19 14:03:09 2014 -0800 summary: 8034797: AIX: Fix os::naked_short_sleep() in os_aix.cpp after 8028280 changeset: 5861:c1b92d84669e user: mdoerr date: Mon Oct 12 12:20:38 2015 +0200 summary: 8139421: PPC64LE: MacroAssembler::bxx64_patchable kill register R12 changeset: 5862:e214a23a690a tag: tip user: goetz date: Tue Nov 17 08:59:21 2015 +0100 summary: 8139258: PPC64LE: argument passing problem when passing 15 floats in native call -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:26:39 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:26:39 +0000 Subject: [Bug 2851] [IcedTea7] Sync with PPC/AIX port 7u repository In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2851 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Target Milestone|--- |2.6.5 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:27:37 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:27:37 +0000 Subject: [Bug 2852] New: [IcedTea7] Backport AArch64 fixes to release branch Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2852 Bug ID: 2852 Summary: [IcedTea7] Backport AArch64 fixes to release branch Product: IcedTea Version: 7-hg Hardware: aarch64 OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org There are a number of AArch64 fixes in IcedTea 2.x HEAD HotSpot that should be backported to the current release series. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 18:27:50 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 18:27:50 +0000 Subject: [Bug 2852] [IcedTea7] Backport AArch64 fixes to release branch In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2852 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Target Milestone|--- |2.6.5 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:16:16 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:16:16 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2853 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:17:24 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:17:24 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2854 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:16:16 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:16:16 +0000 Subject: [Bug 2853] [IcedTea8] Synchronise repositories with aarch64/jdk8u In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2853 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:15:54 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:15:54 +0000 Subject: [Bug 2853] New: [IcedTea8] Synchronise repositories with aarch64/jdk8u Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2853 Bug ID: 2853 Summary: [IcedTea8] Synchronise repositories with aarch64/jdk8u Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org Compare the repositories (mainly jdk and hotspot) with the aarch64/jdk8u ones used by Red Hat and alleviate any unnecessary differences. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:17:09 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:17:09 +0000 Subject: [Bug 2854] New: [IcedTea8] Backport "8145096: Undefined behaviour in HotSpot" Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2854 Bug ID: 2854 Summary: [IcedTea8] Backport "8145096: Undefined behaviour in HotSpot" Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org http://hg.openjdk.java.net/jdk9/hs-comp/hotspot/rev/867bdec7c8c5 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 16 23:17:24 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 16 Feb 2016 23:17:24 +0000 Subject: [Bug 2854] [IcedTea8] Backport "8145096: Undefined behaviour in HotSpot" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2854 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 17 17:20:25 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 17 Feb 2016 17:20:25 +0000 Subject: [Bug 1969] [IcedTea8] Add ARM32 JIT port In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1969 hd at os-cillation.de changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #1403|0 |1 is obsolete| | CC| |hd at os-cillation.de --- Comment #4 from hd at os-cillation.de --- Created attachment 1506 --> http://icedtea.classpath.org/bugzilla/attachment.cgi?id=1506&action=edit Yet another non-working ARM32 JIT patch I worked on this for a while, based on the attached patch, but there are still multiple problems: 1. The jtreg tests don't run ("result: Error. Cannot get VM for test: java.net.SocketTimeoutException: Accept timed out" for every test basically. I saw some message about UnixProcess not available on classpath and think this might be JNI related. Another application using JNI also crashed.) 2. I had to revert some changes in hotsport/src/share/vm/classfile/systemDictionary.cpp: AdapterHandlerLibrary::create_native_wrapper() will crash a zero build due to calling unimplemented code. This revert reintroduces a bug. 3. An application using lambda crashed. Looks like lambda might be not usable at all. Patch applies on hotspot changeset 2681e95121ac. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Thu Feb 18 01:02:16 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Thu, 18 Feb 2016 01:02:16 +0000 Subject: [Bug 1969] [IcedTea8] Add ARM32 JIT port In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1969 --- Comment #5 from Andrew John Hughes --- I don't think it's productive to try and use the old JIT project. We'll add an option for building with the AArch32 project's port and eventually merge it in once stable. http://openjdk.java.net/projects/aarch32-port/ -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Sat Feb 20 01:38:05 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Sat, 20 Feb 2016 01:38:05 +0000 Subject: [Bug 2826] [IcedTea8] Provide option to disable SystemTap tests In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2826 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Sat Feb 20 01:38:05 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Sat, 20 Feb 2016 01:38:05 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2826 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:08:27 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:08:27 +0000 Subject: [Bug 2858] New: Backport "6425769: Allow specifying an address to bind JMX remote connector" Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2858 Bug ID: 2858 Summary: Backport "6425769: Allow specifying an address to bind JMX remote connector" Product: IcedTea Version: 7-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org https://bugzilla.redhat.com/show_bug.cgi?id=1183014 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:08:44 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:08:44 +0000 Subject: [Bug 2858] Backport "6425769: Allow specifying an address to bind JMX remote connector" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2858 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED URL| |https://bugzilla.redhat.com | |/show_bug.cgi?id=1183014 Target Milestone|--- |2.6.5 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:17:26 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:17:26 +0000 Subject: [Bug 2202] internalexception:java.lang.runtimeexception:unable to access of address of buffer In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2202 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Component|NPPlugin |Plugin Version|8-hg |unspecified Assignee|dbhole at redhat.com |jvanek at redhat.com Product|IcedTea |IcedTea-Web Severity|enhancement |normal --- Comment #1 from Andrew John Hughes --- Can you provide some more information on this bug? What caused this message? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:22:16 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:22:16 +0000 Subject: [Bug 1478] Why my minecraft server crashes? In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1478 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gnu.andrew at redhat.com Component|GCJWebPlugin |IcedTea Resolution|--- |WONTFIX Assignee|dbhole at redhat.com |gnu.andrew at redhat.com --- Comment #1 from Andrew John Hughes --- This is an old version - 2.1.6. Please reopen if this can be reproduced on a 2.6.x series version. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:23:20 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:23:20 +0000 Subject: [Bug 1190] unuseable javaws cache handling In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1190 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Component|NetX |NetX (javaws) Version|7-1.0 |unspecified Product|IcedTea |IcedTea-Web -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:29:04 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:29:04 +0000 Subject: [Bug 2088] ADOM II doesn't work In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2088 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Component|NetX |NetX (javaws) Version|2.5.3 |unspecified Product|IcedTea |IcedTea-Web Severity|blocker |normal -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:30:19 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:30:19 +0000 Subject: [Bug 2858] [IcedTea7] Backport "6425769: Allow specifying an address to bind JMX remote connector" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2858 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Backport "6425769: Allow |[IcedTea7] Backport |specifying an address to |"6425769: Allow specifying |bind JMX remote connector" |an address to bind JMX | |remote connector" -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:30:28 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:30:28 +0000 Subject: [Bug 2859] New: [IcedTea8] Backport "6425769: Allow specifying an address to bind JMX remote connector" Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2859 Bug ID: 2859 Summary: [IcedTea8] Backport "6425769: Allow specifying an address to bind JMX remote connector" Product: IcedTea Version: 8-hg Hardware: all OS: All Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: gnu.andrew at redhat.com CC: unassigned at icedtea.classpath.org Backport "6425769: Allow specifying an address to bind JMX remote connector" -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:30:46 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:30:46 +0000 Subject: [Bug 2859] [IcedTea8] Backport "6425769: Allow specifying an address to bind JMX remote connector" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2859 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:30:46 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:30:46 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2859 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:31:31 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:31:31 +0000 Subject: [Bug 663] NPPlugin does not work with borger.dk digital signature log in (Denmark) In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=663 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com, | |unassigned at icedtea.classpat | |h.org Component|NPPlugin |Plugin Version|6-hg |unspecified Assignee|dbhole at redhat.com |jvanek at redhat.com Product|IcedTea |IcedTea-Web -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:33:43 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:33:43 +0000 Subject: [Bug 595] ExceptionInInitializerError/AccessControlException in AppletAudioClip.play() In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=595 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #11 from Andrew John Hughes --- Closing as no response. -- You are receiving this mail because: You are the assignee for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:35:49 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:35:49 +0000 Subject: [Bug 1467] Java emits Concurrency Exception when PulseAudio is called to emit sound In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1467 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnu.andrew at redhat.com Component|PulseAudio |PulseAudio Product|IcedTea |IcedTea-Sound -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:52:47 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:52:47 +0000 Subject: [Bug 2853] [IcedTea8] Synchronise repositories with aarch64/jdk8u In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2853 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #10 from Andrew John Hughes --- All changes in forest and used in pre09. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:52:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:52:59 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2853, which changed state. Bug 2853 Summary: [IcedTea8] Synchronise repositories with aarch64/jdk8u http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2853 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:54:23 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:54:23 +0000 Subject: [Bug 2842] [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #4 from Andrew John Hughes --- Both changes in forest and used in pre09. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:54:25 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:54:25 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2842, which changed state. Bug 2842 Summary: [IcedTea8] Backport "8148351: Only display resolved symlink for compiler, do not change path" http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2842 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:55:05 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:55:05 +0000 Subject: [Bug 2841] [IcedTea8] Parallelism issues resulting from PR2459 In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2841 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #3 from Andrew John Hughes --- Change in forest and used in pre09. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Tue Feb 23 21:55:09 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Tue, 23 Feb 2016 21:55:09 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Bug 1282 depends on bug 2841, which changed state. Bug 2841 Summary: [IcedTea8] Parallelism issues resulting from PR2459 http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2841 What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 12:50:10 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 12:50:10 +0000 Subject: [Bug 2202] internalexception:java.lang.runtimeexception:unable to access of address of buffer In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2202 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #2 from JiriVanek --- Well, this is year old. I doubt a bit. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 12:53:10 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 12:53:10 +0000 Subject: [Bug 2088] ADOM II doesn't work In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2088 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #1 from JiriVanek --- Indeed. It seems that "new" logging permission was added. Before this is fixed in code, you may workaround it by: javaws -nosecurity path/to/downloaded/adom-ii.jnlp and it will work for you. the jnlps are requesting all-permissions, still: Caused by: java.security.AccessControlException: access denied ("java.util.logging.LoggingPermission" "control") at java.security.AccessControlContext.checkPermission(AccessControlContext.java:472) at java.security.AccessController.checkPermission(AccessController.java:884) at java.lang.SecurityManager.checkPermission(SecurityManager.java:549) at net.sourceforge.jnlp.runtime.JNLPSecurityManager.checkPermission(JNLPSecurityManager.java:292) at java.util.logging.LogManager.checkPermission(LogManager.java:1586) at java.util.logging.Logger.checkPermission(Logger.java:422) at java.util.logging.Logger.setLevel(Logger.java:1688) -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 12:58:19 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 12:58:19 +0000 Subject: [Bug 663] NPPlugin does not work with borger.dk digital signature log in (Denmark) In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=663 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from JiriVanek --- Hello, this have been resolved time ago. I checked also today. it works fine. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:03:17 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:03:17 +0000 Subject: [Bug 1252] icedtea-web-1.3 on icedtea-2.3.3 with seamonkey-2.13.2 plugin not detected In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1252 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED --- Comment #3 from JiriVanek --- Verified today. seems to be working fine. Maybe its worthy to add seamonkey to list of supported browsers. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:07:24 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:07:24 +0000 Subject: [Bug 1190] unuseable javaws cache handling In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1190 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #2 from JiriVanek --- Hm. This is very true and from time to time bite back. This is defintly candidate for fixing for 1.7 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:08:19 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:08:19 +0000 Subject: [Bug 1190] unuseable javaws cache handling In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1190 --- Comment #3 from JiriVanek --- Althoug port is soaking to the depth of itw in last two years deeply, It is stil missing on some crucial palces. This one is even close to sensitive issue. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:22:17 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:22:17 +0000 Subject: [Bug 707] You can open windows with JAVA but you can't close them In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=707 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #2 from JiriVanek --- Hello! Any way how to reproduce those? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:25:53 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:25:53 +0000 Subject: [Bug 692] africanking at win2day.at does not work In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=692 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from JiriVanek --- I'm afraid all java games disapeared form there. I found only flash ones during search for african king. Please reopen if there is something still to fix. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:26:37 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:26:37 +0000 Subject: [Bug 741] Fails to create a shortcut if the resource is local In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=741 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |FIXED --- Comment #6 from JiriVanek --- The shortcuts have been several times refactored. This seems to be fixed. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:27:53 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:27:53 +0000 Subject: [Bug 763] Oanda 's online trading app doesn't run on linux In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=763 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from JiriVanek --- appearently fixed long time ago. Now the page seesm to be java-free anyway -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:29:17 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:29:17 +0000 Subject: [Bug 845] Plugin not working with Chromium and Brazilian bank "Banco do Brasil" site In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=845 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #3 from JiriVanek --- Plugin works now in all NPAPI comaptible browsers. Chrome/ium is NOT NPAPI compatible anymore. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:37:56 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:37:56 +0000 Subject: [Bug 1489] no sound with KGS GO server In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1489 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |jvanek at redhat.com --- Comment #1 from JiriVanek --- hm. Applet do not works, javaws does, but seem like still muted.... -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:40:28 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:40:28 +0000 Subject: [Bug 1211] "always trust content from this provider" NOT to be checked as default In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1211 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |jvanek at redhat.com Resolution|--- |WONTFIX --- Comment #6 from JiriVanek --- The certificate logic is not going to change. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:52:20 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:52:20 +0000 Subject: [Bug 2390] [IcedTea7] Make elliptic curve removal optional In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 Tomas Gustavsson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED CC| |tomas at primekey.se Resolution|FIXED |--- --- Comment #5 from Tomas Gustavsson --- I think this is a bad choice. The legal issues with ECC I guess is related to CertiCom patents, which are on specific implementation detail, which nobody is using in the wild. And applies equally much to the three remaining curves, so you have solved nothing regarding potential legal issues. I'm ok with using BouncyCastle instead of JDK crypto for most things, but for PKCS#11 the Java PKCS#11 provider should not be crippled. Java does not perform crypto even. The world is embrazing ECC right now, and Java goes the opposite direction? Most GNU/Linux distributions ship with OpenSSL, that supports more curves. I think there are other reasons for NSS only shipping these, such as "nobody implemented anything else in NSS". Can RedHat package with "--enable-non-nss-curves" enabled. Using NSS as the baseline norm for crypto is too limiting. (I know you will resolve this again, but I want to nudge, that there is a large world using other curves out there, with well studied, i.e. no legal issues) -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:56:12 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:56:12 +0000 Subject: [Bug 2239] [IcedTea9] Synchronise elliptic curves in sun.security.ec.NamedCurve with those listed by NSS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2239 Tomas Gustavsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomas at primekey.se --- Comment #1 from Tomas Gustavsson --- Please note Bug 2390. http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 Can we convince you to consider this. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:56:25 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:56:25 +0000 Subject: [Bug 2126] [IcedTea8] Synchronise elliptic curves in sun.security.ec.NamedCurve with those listed by NSS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2126 Tomas Gustavsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomas at primekey.se --- Comment #2 from Tomas Gustavsson --- Please note Bug 2390. http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 Can we convince you to consider this. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 13:56:40 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 13:56:40 +0000 Subject: [Bug 2124] [IcedTea7] Synchronise elliptic curves in sun.security.ec.NamedCurve with those listed by NSS In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2124 Tomas Gustavsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomas at primekey.se --- Comment #3 from Tomas Gustavsson --- Please note Bug 2390. http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 Can we convince you to consider this. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 14:01:31 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 14:01:31 +0000 Subject: [Bug 2390] [IcedTea7] Make elliptic curve removal optional In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 --- Comment #6 from Tomas Gustavsson --- As an additional note NSA Suite B contains a lot more curves than the three assigned here. http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf Suite B compliance is quite often a requirement. I know there was some other ticket for JDK to make is Suite B compliant and this goes in the other direction. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 16:18:59 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 16:18:59 +0000 Subject: [Bug 809] Fails with USAA Deposit at Home In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=809 JiriVanek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |INVALID --- Comment #12 from JiriVanek --- no longer reproducible -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Wed Feb 24 16:36:10 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Wed, 24 Feb 2016 16:36:10 +0000 Subject: [Bug 2390] [IcedTea7] Make elliptic curve removal optional In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #7 from Andrew John Hughes --- Please do not re-open this bug. It has long since shipped. As to the resolution, we have made this removal optional. It is not IcedTea's place to make legal decisions on what is shipped; we leave that to individual distributions. NSS is relevant here because the SunEC provider uses NSS and PKCS#11 can also be configured with NSS. If NSS does not provide the curves, then they will not be usable by these providers. Having a mismatch between the native code and what Java reports leads to less obvious failures further down the stack, which is why we removed them in the Java code to begin with. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Thu Feb 25 08:33:28 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Thu, 25 Feb 2016 08:33:28 +0000 Subject: [Bug 2390] [IcedTea7] Make elliptic curve removal optional In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2390 --- Comment #8 from Tomas Gustavsson --- Sorry, will not re-open again. It _used_ to be that if the PKCS#11 provider was configured with a full featured PKCS#11 stack such as SafeNet, Thales, Utimaco or any other hardware security module, these curves _were_ usable. I still withhold. With these changes Java is less usable for security interested industries such as Banking, government etc, which does use other curves. Saying that it's configurable when building OpenJDK doesn't help much since banks and others want to use RHEL with packaged Java. Cheers, Tomas -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at gmail.com Fri Feb 26 20:13:32 2016 From: mathieu.westphal at gmail.com (Mathieu Westphal) Date: Fri, 26 Feb 2016 21:13:32 +0100 Subject: javaws argument to disable alaca URL Check Message-ID: When i open a jnlp file i have the following : $javaws -verbose -allowredirect -nosecurity xplorersCities1.jnlp ... Trusted Only manifest attribute not found. Continuing. The application is a local file. Codebase validation is disabled. See: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/no_redeploy.html for details. The application is a local file. Codebase validation is disabled. See: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/no_redeploy.html for details. System logger called with result of 0 System logger called with result of 0 System logger called with result of 0 Found alaca URLs to be verified - file:/home/glow/aur/xplorers2 - http://games.asobrain.com/applets/xplorers Warning! file:/home/glow/aur/xplorers2 is NOT from codebase/docbase. Warning! http://games.asobrain.com/applets/xplorers is NOT from codebase/docbase. Setting value:null With an annoying popup where i need to press "Yes" to validate the URLs. Any ways to disable this check ? Mathieu -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Sun Feb 28 14:04:23 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Sun, 28 Feb 2016 14:04:23 +0000 Subject: [Bug 2863] New: IcedTea doesn't pass through build and host triplets to OpenJDK's configure Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2863 Bug ID: 2863 Summary: IcedTea doesn't pass through build and host triplets to OpenJDK's configure Product: IcedTea Version: 8-hg Hardware: x86_64 OS: Linux Status: NEW Severity: normal Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: chewi at gentoo.org CC: unassigned at icedtea.classpath.org Created attachment 1508 --> http://icedtea.classpath.org/bugzilla/attachment.cgi?id=1508&action=edit Patch against Makefile.am This resulted in the following when trying to build with a 32-bit userspace on a 64-bit kernel. checking size of int *... 4 configure: The tested number of bits in the target (32) differs from the number of bits expected to be found in the target (64). configure: I'll retry after setting the platforms compiler target bits flag to -m64 --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu was passed to IcedTea but OpenJDK used guessed values of x86_64-unknown-linux-gnu IIRC. Attached is a patch that passes these arguments through. OpenJDK recommends using --openjdk-target instead but you cannot use this in conjunction with --build. Given that it is primarily distributions that build IcedTea from source, I think it is reasonable to assume they will always give sensible build/host values. If they give none at all, the values guessed by IcedTea's configure will simply match those that OpenJDK's configure would have used anyway. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Sun Feb 28 16:47:12 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Sun, 28 Feb 2016 16:47:12 +0000 Subject: [Bug 2864] New: coredump due to libc frame error Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2864 Bug ID: 2864 Summary: coredump due to libc frame error Product: IcedTea Version: 2.6.4 Hardware: x86_64 OS: Linux Status: NEW Severity: blocker Priority: P5 Component: IcedTea Assignee: gnu.andrew at redhat.com Reporter: volov2004 at yahoo.com CC: unassigned at icedtea.classpath.org on linux mint 17 Qiana, just sudo apt-get install sweethome3d then launch sweethome3d, close welcome popup and try to open File > Preferences $ ulimit -c unlimited; sweethome3d Java 3D: implicit antialiasing enabled # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f66f16a71bd, pid=6523, tid=140079634966272 # # JRE version: OpenJDK Runtime Environment (7.0_95) (build 1.7.0_95-b00) # Java VM: OpenJDK 64-Bit Server VM (24.95-b01 mixed mode linux-amd64 compressed oops) # Derivative: IcedTea 2.6.4 # Distribution: Ubuntu 14.04.3 LTS, package 7u95-2.6.4-0ubuntu0.14.04.1 # Problematic frame: # C [libc.so.6+0x981bd] # # Core dump written. Default location: /usr/share/sweethome3d/core or core.6523 # # An error report file with more information is saved as: # /tmp/hs_err_pid6523.log # # If you would like to submit a bug report, please include # instructions on how to reproduce the bug and visit: # http://icedtea.classpath.org/bugzilla # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x00007f6690003800): JavaThread "J3D-Renderer-1" [_thread_in_native, id=6552, stack(0x00007f66d4d1e000,0x00007f66d4e1f000)] siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x00007f66958ef9cc Registers: RAX=0x00000000118e76c4, RBX=0x000000000000003f, RCX=0x0000000000000010, RDX=0x0000000000000008 RSP=0x00007f66d4e1d108, RBP=0x00007f66958ef9cc, RSI=0x00007f66958ef9cc, RDI=0x00007f6684008300 R8 =0x0000000000000008, R9 =0x0000000000000040, R10=0x00007f6684008300, R11=0x0000000000000020 R12=0x0000000000000100, R13=0x0000000000000008, R14=0x0000000000000008, R15=0x00007f6684008300 RIP=0x00007f66f16a71bd, EFLAGS=0x0000000000010202, CSGSFS=0x0000000000000033, ERR=0x0000000000000004 TRAPNO=0x000000000000000e Top of Stack: (sp=0x00007f66d4e1d108) 0x00007f66d4e1d108: 00007f66e404c91e 00007f66e404c8e0 0x00007f66d4e1d118: 00007f66958ef9cc 00007f66840082e8 0x00007f66d4e1d128: 0000000000000000 0000000000000016 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 29 16:01:27 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 29 Feb 2016 16:01:27 +0000 Subject: [Bug 1282] [TRACKER] IcedTea 3.0.0 Release In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1282 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |2863 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 29 16:01:27 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 29 Feb 2016 16:01:27 +0000 Subject: [Bug 2863] IcedTea doesn't pass through build and host triplets to OpenJDK's configure In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2863 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Blocks| |1282 Target Milestone|--- |3.0.0 --- Comment #1 from Andrew John Hughes --- I'll add this but I don't want to push 3.0 back even further by starting to dig into that whole nest of cross-compilation. So if this isn't enough, anything else will need to wait until a later release. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 29 16:02:25 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 29 Feb 2016 16:02:25 +0000 Subject: [Bug 2864] coredump due to libc frame error In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2864 Andrew John Hughes changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|blocker |normal --- Comment #1 from Andrew John Hughes --- Please attach /tmp/hs_err_pid6523.log -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at icedtea.classpath.org Mon Feb 29 16:03:03 2016 From: bugzilla-daemon at icedtea.classpath.org (bugzilla-daemon at icedtea.classpath.org) Date: Mon, 29 Feb 2016 16:03:03 +0000 Subject: [Bug 2864] coredump due to libc frame error In-Reply-To: References: Message-ID: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=2864 --- Comment #2 from Andrew John Hughes --- As is, this looks like a crash in the native application, not OpenJDK. JavaThread "J3D-Renderer-1" [_thread_in_native, id=6552, stack(0x00007f66d4d1e000,0x00007f66d4e1f000)] -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: