You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/06/03 18:42:40 UTC

svn commit: r543938 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/report/model/SuiteModel.groovy

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 <dot> 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
         }
     }