Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 87356 invoked from network); 12 Aug 2010 13:00:53 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Aug 2010 13:00:53 -0000 Received: (qmail 99673 invoked by uid 500); 12 Aug 2010 13:00:52 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 99205 invoked by uid 500); 12 Aug 2010 13:00:50 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@cocoon.apache.org List-Id: Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 98147 invoked by uid 99); 12 Aug 2010 13:00:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 13:00:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Aug 2010 13:00:44 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7CD0MbE026451 for ; Thu, 12 Aug 2010 13:00:22 GMT Message-ID: <27298898.303921281618022315.JavaMail.jira@thor> Date: Thu, 12 Aug 2010 09:00:22 -0400 (EDT) From: "Stefan Bodewig (JIRA)" To: dev@cocoon.apache.org Subject: [jira] Created: (COCOON-2296) [PATCH] Make flowscript work with Commons JXPath 1.3 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 [PATCH] Make flowscript work with Commons JXPath 1.3 ---------------------------------------------------- Key: COCOON-2296 URL: https://issues.apache.org/jira/browse/COCOON-2296 Project: Cocoon Issue Type: Improvement Components: - Flowscript Affects Versions: 2.2, 2.2-dev (Current SVN) Reporter: Stefan Bodewig Priority: Minor Apache Commons JXPath released almost exactly two years ago added a method protected String escape(String) to the NodePointer class (see http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/java/org/apache/commons/jxpath/ri/model/NodePointer.java?r1=618011&r2=618087 ) this method's signature matches the one in org.apache.cocoon.components.flow.javascript.ScriptablePropertyPointer which extends NodePointer - except that ScriptablePropertyPointer's version is private and thus cannot override the one in NodePointer. The method not only looks like yours, it also does the same thing (in a slightly different way). Given that JXPath 1.3 boasts a lot of bugfixes, users may want to upgrade. The easiest fix would be to upgrade to 1.3 in Cocoon, remove the method in ScriptablePropertyPointer and use the base class version - this is what the attached patch does. This issue has been found by Gump http://vmgump.apache.org/gump/public/cocoon/cocoon22-flowscript-impl/gump_work/build_cocoon_cocoon22-flowscript-impl.html after I ensured flowscript doesn't see the latest version of Rhino. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.