Return-Path: X-Original-To: apmail-myfaces-dev-archive@www.apache.org Delivered-To: apmail-myfaces-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F7749F38 for ; Tue, 1 May 2012 19:01:13 +0000 (UTC) Received: (qmail 663 invoked by uid 500); 1 May 2012 19:01:12 -0000 Delivered-To: apmail-myfaces-dev-archive@myfaces.apache.org Received: (qmail 563 invoked by uid 500); 1 May 2012 19:01:12 -0000 Mailing-List: contact dev-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list dev@myfaces.apache.org Received: (qmail 505 invoked by uid 99); 1 May 2012 19:01:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 May 2012 19:01:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 May 2012 19:01:10 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id E1C5142A16B for ; Tue, 1 May 2012 19:00:49 +0000 (UTC) Date: Tue, 1 May 2012 19:00:49 +0000 (UTC) From: "Werner Punz (JIRA)" To: dev@myfaces.apache.org Message-ID: <1484941441.13972.1335898849926.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1630145102.38299.1332277658387.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (MYFACES-3509) Array.prototype.forEach used in browsers that do not natively support this function MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/MYFACES-3509?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Werner Punz updated MYFACES-3509: --------------------------------- Resolution: Fixed Fix Version/s: 2.1.8-SNAPSHOT 2.0.14-SNAPSHOT Status: Resolved (was: Patch Available) Thanks for the patch, the fix now is applied > Array.prototype.forEach used in browsers that do not natively support this function > ----------------------------------------------------------------------------------- > > Key: MYFACES-3509 > URL: https://issues.apache.org/jira/browse/MYFACES-3509 > Project: MyFaces Core > Issue Type: Bug > Components: General > Environment: IE8 > Reporter: Mircea Toma > Fix For: 2.0.14-SNAPSHOT, 2.1.8-SNAPSHOT > > Attachments: MYFACES-3509-1.patch > > > While running one of our test applications in IE8 we got this "Object doesn't support this property or method" error occurring. > After debugging the code the problem was located in api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js code. It seems that 'arrForEach' is trying to use the browser native 'forEach' function but it fails since IE8 (or IE7) does not implement it. > Here is a constructed call stack that shows when and where the error occurs: > (startPos) ? arr.slice(startPos).forEach(func, thisObj) : arr.forEach(func, thisObj); -- file: api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Lang.js, line: 346 > this._Lang.arrForEach(this._q, closure, this._space); -- file: api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Queue.js, line: 155 > this.each(broadCastFunc); -- file: api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js, line: 80 > this._evtListeners.broadcastEvent(eventData); -- file: api/src/main/javascript/META-INF/resources/myfaces/_impl/core/Impl.js, line: 564 > .... > I noticed that in api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_LangQuirks.js there's a version of 'arrForEach' function that iterates over elements using a plain 'for' loop. Unfortunately this version of the method is not loaded because of the condition at the top of the file is not fulfilled. I attached a patch that we used to get things going. Of course you might have a better solution to this issue. > Here's also the original JIRA case: http://jira.icesoft.org/browse/ICE-7899 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira