You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2008/07/28 23:15:13 UTC

svn commit: r680503 - in /commons/proper/cli/branches/cli-1.x: README.txt RELEASE-NOTES.txt src/conf/MANIFEST.MF src/test/org/apache/commons/cli/PatternOptionBuilderTest.java

Author: ebourg
Date: Mon Jul 28 14:15:12 2008
New Revision: 680503

URL: http://svn.apache.org/viewvc?rev=680503&view=rev
Log:
Replaced occurences of 'Jakarta'

Modified:
    commons/proper/cli/branches/cli-1.x/README.txt
    commons/proper/cli/branches/cli-1.x/RELEASE-NOTES.txt
    commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF
    commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/PatternOptionBuilderTest.java

Modified: commons/proper/cli/branches/cli-1.x/README.txt
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/README.txt?rev=680503&r1=680502&r2=680503&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/README.txt (original)
+++ commons/proper/cli/branches/cli-1.x/README.txt Mon Jul 28 14:15:12 2008
@@ -1,41 +1,41 @@
-Jakarta Commons CLI
+Apache Commons CLI
 ===================
 
-Welcome to the CLI component of the Jakarta Commons project.
+Welcome to the CLI component of the Apache Commons project.
 
 The information in this file is relevant if you have
 downloaded a CLI source distribution.
 
 For testing the project, you will need JUnit (if you use
-maven this will be automatically installed and configured
+Maven this will be automatically installed and configured
 for you):
 
-  http://www.junit.org/
+  http://www.junit.org
 
-There are two ways to build CLI, either with Ant or Maven 1.
+There are two ways to build CLI, either with Ant or Maven 2.
 
 Ant can be found here :
 
-  http://jakarta.apache.org/ant
+  http://ant.apache.org
 
 and to build and test the system use:
 
   ant dist
 
-Maven 1 can be found here :
+Maven 2 can be found here :
 
   http://maven.apache.org
 
 and to build and test the system use:
 
-  maven clean jar
+  mvn clean package
 
 The system will build and test itself.
 
 For complete documentation type:
 
-  maven site
+  mvn site
 
 Good luck!
 
--The CLI Team
+- The Apache Commons Team

Modified: commons/proper/cli/branches/cli-1.x/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/RELEASE-NOTES.txt?rev=680503&r1=680502&r2=680503&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/RELEASE-NOTES.txt (original)
+++ commons/proper/cli/branches/cli-1.x/RELEASE-NOTES.txt Mon Jul 28 14:15:12 2008
@@ -1,8 +1,8 @@
 $Id$
 
-			Commons CLI Package
-			   Version 1.1
-			    Release Notes
+            Commons CLI Package
+                Version 1.1
+               Release Notes
 
 
 INTRODUCTION:
@@ -20,7 +20,7 @@
 
 The jar should be API backwards compatible, though if you were calling addValue(String) then you won't be happy. Please let us know your use case if that is so. 
 
-For more information, read the documentation on the project site at http://jakarta.apache.org/commons/cli/
+For more information, read the documentation on the project site at http://commons.apache.org/cli/
 
 NEW FEATURES:
 

Modified: commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF?rev=680503&r1=680502&r2=680503&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF (original)
+++ commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF Mon Jul 28 14:15:12 2008
@@ -1,4 +1,4 @@
-Implementation-Title: Jakarta Commons CLI
-Specification-Title: Jakarta Commons CLI
+Implementation-Title: Apache Commons CLI
+Specification-Title: Apache Commons CLI
 Specification-Vendor: Apache Software Foundation
 Specification-Version: 1.1

Modified: commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/PatternOptionBuilderTest.java
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/PatternOptionBuilderTest.java?rev=680503&r1=680502&r2=680503&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/PatternOptionBuilderTest.java (original)
+++ commons/proper/cli/branches/cli-1.x/src/test/org/apache/commons/cli/PatternOptionBuilderTest.java Mon Jul 28 14:15:12 2008
@@ -35,7 +35,7 @@
     public void testSimplePattern() throws Exception
     {
         Options options = PatternOptionBuilder.parsePattern("a:b@cde>f+n%t/");
-        String[] args = new String[]{"-c", "-a", "foo", "-b", "java.util.Vector", "-e", "build.xml", "-f", "java.util.Calendar", "-n", "4.5", "-t", "http://jakarta.apache.org/"};
+        String[] args = new String[]{"-c", "-a", "foo", "-b", "java.util.Vector", "-e", "build.xml", "-f", "java.util.Calendar", "-n", "4.5", "-t", "http://commons.apache.org"};
 
         CommandLineParser parser = new PosixParser();
         CommandLine line = parser.parse(options, args);
@@ -48,7 +48,7 @@
         assertEquals("file flag e", new File("build.xml"), line.getOptionObject("e"));
         assertEquals("class flag f", Calendar.class, line.getOptionObject("f"));
         assertEquals("number flag n", new Double(4.5), line.getOptionObject("n"));
-        assertEquals("url flag t", new URL("http://jakarta.apache.org/"), line.getOptionObject("t"));
+        assertEquals("url flag t", new URL("http://commons.apache.org"), line.getOptionObject("t"));
 
         // tests the char methods of CommandLine that delegate to the String methods
         assertEquals("flag a", "foo", line.getOptionValue('a'));
@@ -59,7 +59,7 @@
         assertEquals("file flag e", new File("build.xml"), line.getOptionObject('e'));
         assertEquals("class flag f", Calendar.class, line.getOptionObject('f'));
         assertEquals("number flag n", new Double(4.5), line.getOptionObject('n'));
-        assertEquals("url flag t", new URL("http://jakarta.apache.org/"), line.getOptionObject('t'));
+        assertEquals("url flag t", new URL("http://commons.apache.org"), line.getOptionObject('t'));
 
         /// DATES NOT SUPPORTED YET.
         //      assertEquals("number flag t", new Date(1023400137276L), line.getOptionObject('z'));