You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2006/10/08 23:28:39 UTC

svn commit: r454216 - in /incubator/openejb/trunk/openejb3/container/openejb-core/src/main: java/org/apache/openejb/alt/config/ java/org/apache/openejb/alt/config/rules/ java/org/apache/openejb/cli/ resources/ resources/META-INF/org.apache.openejb.cli/

Author: jlaskowski
Date: Sun Oct  8 14:28:38 2006
New Revision: 454216

URL: http://svn.apache.org/viewvc?view=rev&rev=454216
Log:
Change http://www.openejb.org to http://incubator.apache.org/openejb + some other redirections

Modified:
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/Deploy.java
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/rules/Messages.properties
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/cli/Main.java
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/deploy.help
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/start.help
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/stop.help
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/validate.help
    incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/openejb-version.properties

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/Deploy.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/Deploy.java?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/Deploy.java (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/Deploy.java Sun Oct  8 14:28:38 2006
@@ -52,7 +52,7 @@
 
     protected static final Messages _messages = new Messages("org.apache.openejb.alt.util.resources");
 
-    private static final String DEPLOYMENT_ID_HELP = "\nDeployment ID ----- \n\nA name for the ejb that is unique not only in this jar, but \nin all the jars in the container system.  This name will \nallow OpenEJB to place the bean in a global index and \nreference the bean quickly.  OpenEJB will also use this name \nas the global JNDI name for the Remote Server and the Local \nServer.  Clients of the Remote or Local servers can use this\nname to perform JNDI lookups.\n\nThe other EJB Server's using OpenEJB as the EJB Container \nSystem may also use this name to as part of a global JNDI \nnamespace available to remote application clients.\n\nExample: /my/acme/bugsBunnyBean\n\nSee http://www.openejb.org/deploymentids.html for details.\n";
+    private static final String DEPLOYMENT_ID_HELP = "\nDeployment ID ----- \n\nA name for the ejb that is unique not only in this jar, but \nin all the jars in the container system.  This name will \nallow OpenEJB to place the bean in a global index and \nreference the bean quickly.  OpenEJB will also use this name \nas the global JNDI name for the Remote Server and the Local \nServer.  Clients of the Remote or Local servers can use this\nname to perform JNDI lookups.\n\nThe other EJB Server's using OpenEJB as the EJB Container \nSystem may also use this name to as part of a global JNDI \nnamespace available to remote application clients.\n\nExample: /my/acme/bugsBunnyBean";
     private static final String CONTAINER_ID_HELP = "\nContainer ID ----- \n\nThe name of the container where this ejb should run. \nContainers are declared and configured in the openejb.conf\nfile.\n";
     private static final String CONNECTOR_ID_HELP = "\nConnector ID ----- \n\nThe name of the connector or JDBC resource this resoure \nreference should be mapped to. Connectors and JDBC resources \nare declared and configured in the openejb.conf file.\n";
 
@@ -163,7 +163,7 @@
             System.out.println("Jar not deployable.");
             System.out.println();
             System.out.println("Use the validator with -vvv option for more details.");
-            System.out.println("See http://www.openejb.org/validate.html for usage.");
+            System.out.println("See http://incubator.apache.org/openejb/validation-tool.html for usage.");
             return;
         }
 

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/rules/Messages.properties
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/rules/Messages.properties?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/rules/Messages.properties (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/alt/config/rules/Messages.properties Sun Oct  8 14:28:38 2006
@@ -87,7 +87,7 @@
 # 3 - Dependent Class name
 1.misslocated.class           Misslocated class
 2.misslocated.class           Misslocated class {0} 
-3.misslocated.class           The class {0} was found in a parent classloader and was loaded from there rather than this jar.  However, a dependent class {3} was not found in the parent classloader.  \n\nThere are two ways to fix this:\n\nOne, remove the class {0} from the jar in the parent classloader to ensure the class is only loaded from this jar.\n\nTwo, move the dependent class {3} and any other dependent classes into the jar in the parent classloader.  \n\nMore information can be found at http://www.openejb.org/faq_validation.html#misslocated.class
+3.misslocated.class           The class {0} was found in a parent classloader and was loaded from there rather than this jar.  However, a dependent class {3} was not found in the parent classloader.  \n\nThere are two ways to fix this:\n\nOne, remove the class {0} from the jar in the parent classloader to ensure the class is only loaded from this jar.\n\nTwo, move the dependent class {3} and any other dependent classes into the jar in the parent classloader.
 
 # 0 - Referring Class name
 # 1 - Dependent Class name

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/cli/Main.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/cli/Main.java?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/cli/Main.java (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/cli/Main.java Sun Oct  8 14:28:38 2006
@@ -228,7 +228,7 @@
         System.out.println("\nTry 'openejb help <command>' for more information about the command.\n");
         System.out.println("OpenEJB -- EJB Container System and EJB Server.");
         System.out.println("For updates and additional information, visit");
-        System.out.println("http://www.openejb.org\n");
-        System.out.println("Bug Reports to <us...@openejb.org>");
+        System.out.println("http://incubator.apache.org/openejb\n");
+        System.out.println("Bug Reports to <op...@incubator.apache.org>");
     }
 }

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/deploy.help
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/deploy.help?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/deploy.help (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/deploy.help Sun Oct  8 14:28:38 2006
@@ -40,10 +40,10 @@
  -examples  Show examples of how to use the options.
 
 
-See http://www.openejb.org/deploy.html for more information.
+See http://incubator.apache.org/openejb/deploy-tool.html for more information.
 
 OpenEJB -- EJB Container System and EJB Server.
 For updates and additional information, visit
-http://www.openejb.org
+http://incubator.apache.org/openejb
 
-Bug Reports to <us...@openejb.org>
+Bug Reports to <op...@incubator.apache.org>

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/start.help
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/start.help?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/start.help (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/start.help Sun Oct  8 14:28:38 2006
@@ -46,10 +46,10 @@
             for EJB 2.0 Local interfaces.  Default is true.
 
 
-See http://www.openejb.org/remote-server.html for more information.
+See http://incubator.apache.org/openejb/remote-server.html for more information.
 
 OpenEJB -- EJB Container System and EJB Server.
 For OpenEJB updates and additional information, visit
-http://www.openejb.org
+http://incubator.apache.org/openejb
 
-Bug Reports to <us...@openejb.org>
+Bug Reports to <op...@incubator.apache.org>

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/stop.help
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/stop.help?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/stop.help (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/stop.help Sun Oct  8 14:28:38 2006
@@ -14,10 +14,10 @@
  -examples  Show examples of the stop command
 
 
-See http://www.openejb.org/remote-server.html for more information.
+See http://incubator.apache.org/openejb/remote-server.html for more information.
 
 OpenEJB -- EJB Container System and EJB Server.
 For OpenEJB updates and additional information, visit
-http://www.openejb.org
+http://incubator.apache.org/openejb
 
-Bug Reports to <us...@openejb.org>
+Bug Reports to <op...@incubator.apache.org>

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/validate.help
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/validate.help?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/validate.help (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/META-INF/org.apache.openejb.cli/validate.help Sun Oct  8 14:28:38 2006
@@ -25,6 +25,6 @@
 
 OpenEJB -- EJB Container System and EJB Server.
 For updates and additional information, visit
-http://www.openejb.org
+http://incubator.apache.org/openejb
 
-Bug Reports to <us...@openejb.org>
+Bug Reports to <op...@incubator.apache.org>

Modified: incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/openejb-version.properties
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/openejb-version.properties?view=diff&rev=454216&r1=454215&r2=454216
==============================================================================
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/openejb-version.properties (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/main/resources/openejb-version.properties Sun Oct  8 14:28:38 2006
@@ -1,5 +1,5 @@
-copyright=Copyright 1999-2004 (C) OpenEJB Project, All Rights Reserved.
-url=http://www.openejb.org
+copyright=Copyright 1999-2006 (C) Apache OpenEJB Project, All Rights Reserved.
+url=http://incubator.apache.org/openejb
 version=@VERSION-REPLACED-BY-MAVEN@
 date=@DATE-REPLACED-BY-MAVEN@
 time=@TIME-REPLACED-BY-MAVEN@



Re: svn commit: r454216 - in /incubator/openejb/trunk/openejb3/container/openejb-core/src/main: java/org/apache/openejb/alt/config/ java/org/apache/openejb/alt/config/rules/ java/org/apache/openejb/cli/ resources/ resources/META-INF/org.apache.openejb.cli/

Posted by David Blevins <da...@visi.com>.
Thanks for spotting these!

-David

On Oct 8, 2006, at 2:28 PM, jlaskowski@apache.org wrote:

> Author: jlaskowski
> Date: Sun Oct  8 14:28:38 2006
> New Revision: 454216
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=454216
> Log:
> Change http://www.openejb.org to http://incubator.apache.org/ 
> openejb + some other redirections
>
> Modified:
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/Deploy.java
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/rules/Messages.properties
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/cli/Main.java
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/deploy.help
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/start.help
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/stop.help
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/validate.help
>     incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/openejb-version.properties
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/java/org/apache/openejb/alt/config/Deploy.java
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/java/org/apache/openejb/alt/config/ 
> Deploy.java?view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/Deploy.java (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/Deploy.java Sun Oct  8  
> 14:28:38 2006
> @@ -52,7 +52,7 @@
>
>      protected static final Messages _messages = new Messages 
> ("org.apache.openejb.alt.util.resources");
>
> -    private static final String DEPLOYMENT_ID_HELP = "\nDeployment  
> ID ----- \n\nA name for the ejb that is unique not only in this  
> jar, but \nin all the jars in the container system.  This name will  
> \nallow OpenEJB to place the bean in a global index and \nreference  
> the bean quickly.  OpenEJB will also use this name \nas the global  
> JNDI name for the Remote Server and the Local \nServer.  Clients of  
> the Remote or Local servers can use this\nname to perform JNDI  
> lookups.\n\nThe other EJB Server's using OpenEJB as the EJB  
> Container \nSystem may also use this name to as part of a global  
> JNDI \nnamespace available to remote application clients.\n 
> \nExample: /my/acme/bugsBunnyBean\n\nSee http://www.openejb.org/ 
> deploymentids.html for details.\n";
> +    private static final String DEPLOYMENT_ID_HELP = "\nDeployment  
> ID ----- \n\nA name for the ejb that is unique not only in this  
> jar, but \nin all the jars in the container system.  This name will  
> \nallow OpenEJB to place the bean in a global index and \nreference  
> the bean quickly.  OpenEJB will also use this name \nas the global  
> JNDI name for the Remote Server and the Local \nServer.  Clients of  
> the Remote or Local servers can use this\nname to perform JNDI  
> lookups.\n\nThe other EJB Server's using OpenEJB as the EJB  
> Container \nSystem may also use this name to as part of a global  
> JNDI \nnamespace available to remote application clients.\n 
> \nExample: /my/acme/bugsBunnyBean";
>      private static final String CONTAINER_ID_HELP = "\nContainer  
> ID ----- \n\nThe name of the container where this ejb should run.  
> \nContainers are declared and configured in the openejb.conf\nfile. 
> \n";
>      private static final String CONNECTOR_ID_HELP = "\nConnector  
> ID ----- \n\nThe name of the connector or JDBC resource this  
> resoure \nreference should be mapped to. Connectors and JDBC  
> resources \nare declared and configured in the openejb.conf file.\n";
>
> @@ -163,7 +163,7 @@
>              System.out.println("Jar not deployable.");
>              System.out.println();
>              System.out.println("Use the validator with -vvv option  
> for more details.");
> -            System.out.println("See http://www.openejb.org/ 
> validate.html for usage.");
> +            System.out.println("See http://incubator.apache.org/ 
> openejb/validation-tool.html for usage.");
>              return;
>          }
>
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/java/org/apache/openejb/alt/config/rules/Messages.properties
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/java/org/apache/openejb/alt/config/ 
> rules/Messages.properties?view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/rules/Messages.properties  
> (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/alt/config/rules/Messages.properties  
> Sun Oct  8 14:28:38 2006
> @@ -87,7 +87,7 @@
>  # 3 - Dependent Class name
>  1.misslocated.class           Misslocated class
>  2.misslocated.class           Misslocated class {0}
> -3.misslocated.class           The class {0} was found in a parent  
> classloader and was loaded from there rather than this jar.   
> However, a dependent class {3} was not found in the parent  
> classloader.  \n\nThere are two ways to fix this:\n\nOne, remove  
> the class {0} from the jar in the parent classloader to ensure the  
> class is only loaded from this jar.\n\nTwo, move the dependent  
> class {3} and any other dependent classes into the jar in the  
> parent classloader.  \n\nMore information can be found at http:// 
> www.openejb.org/faq_validation.html#misslocated.class
> +3.misslocated.class           The class {0} was found in a parent  
> classloader and was loaded from there rather than this jar.   
> However, a dependent class {3} was not found in the parent  
> classloader.  \n\nThere are two ways to fix this:\n\nOne, remove  
> the class {0} from the jar in the parent classloader to ensure the  
> class is only loaded from this jar.\n\nTwo, move the dependent  
> class {3} and any other dependent classes into the jar in the  
> parent classloader.
>
>  # 0 - Referring Class name
>  # 1 - Dependent Class name
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/java/org/apache/openejb/cli/Main.java
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/java/org/apache/openejb/cli/ 
> Main.java?view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/cli/Main.java (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/java/org/apache/openejb/cli/Main.java Sun Oct  8 14:28:38 2006
> @@ -228,7 +228,7 @@
>          System.out.println("\nTry 'openejb help <command>' for  
> more information about the command.\n");
>          System.out.println("OpenEJB -- EJB Container System and  
> EJB Server.");
>          System.out.println("For updates and additional  
> information, visit");
> -        System.out.println("http://www.openejb.org\n");
> -        System.out.println("Bug Reports to <us...@openejb.org>");
> +        System.out.println("http://incubator.apache.org/openejb\n");
> +        System.out.println("Bug Reports to <openejb- 
> user@incubator.apache.org>");
>      }
>  }
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/resources/META-INF/org.apache.openejb.cli/deploy.help
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/resources/META-INF/ 
> org.apache.openejb.cli/deploy.help? 
> view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/deploy.help (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/deploy.help Sun Oct   
> 8 14:28:38 2006
> @@ -40,10 +40,10 @@
>   -examples  Show examples of how to use the options.
>
>
> -See http://www.openejb.org/deploy.html for more information.
> +See http://incubator.apache.org/openejb/deploy-tool.html for more  
> information.
>
>  OpenEJB -- EJB Container System and EJB Server.
>  For updates and additional information, visit
> -http://www.openejb.org
> +http://incubator.apache.org/openejb
>
> -Bug Reports to <us...@openejb.org>
> +Bug Reports to <op...@incubator.apache.org>
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/resources/META-INF/org.apache.openejb.cli/start.help
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/resources/META-INF/ 
> org.apache.openejb.cli/start.help? 
> view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/start.help (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/start.help Sun Oct   
> 8 14:28:38 2006
> @@ -46,10 +46,10 @@
>              for EJB 2.0 Local interfaces.  Default is true.
>
>
> -See http://www.openejb.org/remote-server.html for more information.
> +See http://incubator.apache.org/openejb/remote-server.html for  
> more information.
>
>  OpenEJB -- EJB Container System and EJB Server.
>  For OpenEJB updates and additional information, visit
> -http://www.openejb.org
> +http://incubator.apache.org/openejb
>
> -Bug Reports to <us...@openejb.org>
> +Bug Reports to <op...@incubator.apache.org>
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/resources/META-INF/org.apache.openejb.cli/stop.help
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/resources/META-INF/ 
> org.apache.openejb.cli/stop.help? 
> view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/stop.help (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/stop.help Sun Oct  8  
> 14:28:38 2006
> @@ -14,10 +14,10 @@
>   -examples  Show examples of the stop command
>
>
> -See http://www.openejb.org/remote-server.html for more information.
> +See http://incubator.apache.org/openejb/remote-server.html for  
> more information.
>
>  OpenEJB -- EJB Container System and EJB Server.
>  For OpenEJB updates and additional information, visit
> -http://www.openejb.org
> +http://incubator.apache.org/openejb
>
> -Bug Reports to <us...@openejb.org>
> +Bug Reports to <op...@incubator.apache.org>
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/resources/META-INF/org.apache.openejb.cli/validate.help
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/resources/META-INF/ 
> org.apache.openejb.cli/validate.help? 
> view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/validate.help  
> (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/META-INF/org.apache.openejb.cli/validate.help Sun  
> Oct  8 14:28:38 2006
> @@ -25,6 +25,6 @@
>
>  OpenEJB -- EJB Container System and EJB Server.
>  For updates and additional information, visit
> -http://www.openejb.org
> +http://incubator.apache.org/openejb
>
> -Bug Reports to <us...@openejb.org>
> +Bug Reports to <op...@incubator.apache.org>
>
> Modified: incubator/openejb/trunk/openejb3/container/openejb-core/ 
> src/main/resources/openejb-version.properties
> URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/ 
> container/openejb-core/src/main/resources/openejb- 
> version.properties?view=diff&rev=454216&r1=454215&r2=454216
> ====================================================================== 
> ========
> --- incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/openejb-version.properties (original)
> +++ incubator/openejb/trunk/openejb3/container/openejb-core/src/ 
> main/resources/openejb-version.properties Sun Oct  8 14:28:38 2006
> @@ -1,5 +1,5 @@
> -copyright=Copyright 1999-2004 (C) OpenEJB Project, All Rights  
> Reserved.
> -url=http://www.openejb.org
> +copyright=Copyright 1999-2006 (C) Apache OpenEJB Project, All  
> Rights Reserved.
> +url=http://incubator.apache.org/openejb
>  version=@VERSION-REPLACED-BY-MAVEN@
>  date=@DATE-REPLACED-BY-MAVEN@
>  time=@TIME-REPLACED-BY-MAVEN@
>
>