1 2 3 Previous Next 34 Replies Latest reply on Dec 3, 2009 4:02 AM by theute Go to original post
      • 30. Re: GateIn Internationalization
        theute

        It should be fine now.

        Thanks !

        • 31. Re: GateIn Internationalization
          david.calvente

          While building Trunk i detected a minor bug.

          Here you have de diff:

          Index: src/test/java/org/exoplatform/application/registry/TestApplicationRegistryService.java
          ===================================================================
          --- src/test/java/org/exoplatform/application/registry/TestApplicationRegistryService.java (revision 567)
          +++ src/test/java/org/exoplatform/application/registry/TestApplicationRegistryService.java (working copy)
          @@ -20,6 +20,7 @@
          package org.exoplatform.application.registry;

          import org.exoplatform.container.PortalContainer;
          +import org.exoplatform.portal.config.model.ApplicationType;
          import org.exoplatform.services.organization.Group;
          import org.exoplatform.services.organization.MembershipType;
          import org.exoplatform.services.organization.OrganizationService;
          @@ -323,7 +324,7 @@
          Application app = new Application();
          app.setApplicationName(appName);
          app.setDisplayName(appName);
          - app.setType(appType);
          + app.setType(ApplicationType.getType(appType));
          // app.setApplicationGroup(appGroup);
          return app;
          }

          Do you want me to open a JIRA?

          Nota: I'm just trying to get permission to write as a Contributor...

          • 32. Re: GateIn Internationalization
            theute

            Unsure I understand you, do you mean the build failed because a test failed ?

            It shouldn't be the case. trunk builds without any modification.

            • 33. Re: GateIn Internationalization
              david.calvente

              No, you are right, build worked fine...I'm seeng fresh Trunk uin Spanish ;)

              I just say that inside my eclipse I saw a compilation problem in that class that can be resolved with the pathc.. Just this, nothing related to the build...

              David

              • 34. Re: GateIn Internationalization
                theute

                I've made the fix. Seems like this is unused then.

                Sorry for the delay

                1 2 3 Previous Next