Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 24758 invoked from network); 3 Jun 2007 16:43:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Jun 2007 16:43:01 -0000 Received: (qmail 96922 invoked by uid 500); 3 Jun 2007 16:43:05 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 96869 invoked by uid 500); 3 Jun 2007 16:43:05 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 96858 invoked by uid 99); 3 Jun 2007 16:43:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 09:43:04 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Jun 2007 09:43:00 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 4B6191A981A; Sun, 3 Jun 2007 09:42:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r543938 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy Date: Sun, 03 Jun 2007 16:42:40 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070603164240.4B6191A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Sun Jun 3 09:42:39 2007 New Revision: 543938 URL: http://svn.apache.org/viewvc?view=rev&rev=543938 Log: Add fix for section model matching jaxrpc bits as jaxr Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy?view=diff&rev=543938&r1=543937&r2=543938 ============================================================================== --- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy (original) +++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy Sun Jun 3 09:42:39 2007 @@ -45,6 +45,11 @@ // Prime the sections model sectionDef.each { name, pkg -> def section = new SectionModel(name, pkg) + + // Append a to the package name so we don't match the wrong package if + // its similar when looking up the model + pkg = "${pkg}." + sectionsMap[pkg] = section } }