You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by jo...@apache.org on 2006/09/18 14:17:53 UTC

svn commit: r447383 - in /webservices/commons/trunk/modules/util: pom.xml src/changes/changes.xml src/main/java/org/apache/ws/commons/util/Base64.java

Author: jochen
Date: Mon Sep 18 05:17:52 2006
New Revision: 447383

URL: http://svn.apache.org/viewvc?view=rev&rev=447383
Log:
One of the "newDecoder" methods in the Base64 class wasn't static by default.

Modified:
    webservices/commons/trunk/modules/util/pom.xml
    webservices/commons/trunk/modules/util/src/changes/changes.xml
    webservices/commons/trunk/modules/util/src/main/java/org/apache/ws/commons/util/Base64.java

Modified: webservices/commons/trunk/modules/util/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/util/pom.xml?view=diff&rev=447383&r1=447382&r2=447383
==============================================================================
--- webservices/commons/trunk/modules/util/pom.xml (original)
+++ webservices/commons/trunk/modules/util/pom.xml Mon Sep 18 05:17:52 2006
@@ -4,11 +4,13 @@
     <groupId>org.apache.ws.commons</groupId>
     <artifactId>ws-commons-util</artifactId>
     <name>Apache WebServices Common Utilities</name>
-    <version>1.0.1</version>
-<!-- Be sure, that the following is a single line. See 
-     http://jira.codehaus.org/browse/MJAR-39
-     for the reason. -->
-    <description>This is a small collection of utility classes, that allow high performance XML processing based on SAX. Basically, it is assumed, that you are using an JAXP 1.1 compliant XML parser and nothing else. In particular, no dependency on the javax.xml.transform package is introduced.</description>
+    <version>1.0.2-SNAPSHOT</version>
+    <description>
+      This is a small collection of utility classes, that allow high performance XML
+      processing based on SAX. Basically, it is assumed, that you are using an JAXP
+      1.1 compliant XML parser and nothing else. In particular, no dependency on the
+      javax.xml.transform package is introduced.
+    </description>
     <url>http://ws.apache.org/commons/util</url>
     <issueManagement>
         <system>jira</system>
@@ -17,16 +19,6 @@
     <inceptionYear>2005</inceptionYear>
     <mailingLists>
       <mailingList>
-        <name>XML-RPC Users</name>
-        <subscribe>xmlrpc-user-subscribe@ws.apache.org</subscribe>
-        <unsubscribe>xmlrpc-user-unsubscribe@ws.apache.org</unsubscribe>
-        <post>xmlrpc-user@ws.apache.org</post>
-        <archive>http://mail-archives.apache.org/mod_mbox/ws-xmlrpc-user/</archive>
-        <otherArchives>
-          <otherArchive>http://marc.theaimsgroup.com/?l=xmlrpc-user</otherArchive>
-        </otherArchives>
-      </mailingList>
-      <mailingList>
         <name>XML-RPC Developers</name>
         <subscribe>xmlrpc-dev-subscribe@ws.apache.org</subscribe>
         <unsubscribe>xmlrpc-dev-unsubscribe@ws.apache.org</unsubscribe>
@@ -52,9 +44,9 @@
         </license>
     </licenses>
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/tags/ws-commons-util-1.0</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/tags/ws-commons-util-1.0</developerConnection>
-        <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/tags/ws-commons-util-1.0</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/trunk/util</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/trunk/util</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/trunk/util</url>
     </scm>
     <organization>
         <name>Apache Software Foundation</name>
@@ -126,13 +118,13 @@
         <repository>
             <id>apache-maven</id>
             <name>Apache Maven Repository</name>
-            <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository</url>
+            <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
         </repository>
         <snapshotRepository>
             <uniqueVersion>false</uniqueVersion>
             <id>apache-maven-snapshots</id>
             <name>Apache Maven Snapshot Repository</name>
-            <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+            <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
         </snapshotRepository>
         <site>
             <id>commons-util-site</id>

Modified: webservices/commons/trunk/modules/util/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/util/src/changes/changes.xml?view=diff&rev=447383&r1=447382&r2=447383
==============================================================================
--- webservices/commons/trunk/modules/util/src/changes/changes.xml (original)
+++ webservices/commons/trunk/modules/util/src/changes/changes.xml Mon Sep 18 05:17:52 2006
@@ -3,6 +3,11 @@
     <title>Changes in WS Commons Util</title>
   </properties>
   <body>
+    <release version="1.0.2" date="Not yet released">
+      <action dev="jochen" type="fix">
+        A "newDecoder" method in the Base64 class wasn't static.
+      </action>
+    </release>
     <release version="1.0.1" date="2006-06-19">
       <action dev="jochen" type="fix">
         The classes XsDateTimeFormat, and XsTimeFormat have been

Modified: webservices/commons/trunk/modules/util/src/main/java/org/apache/ws/commons/util/Base64.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/util/src/main/java/org/apache/ws/commons/util/Base64.java?view=diff&rev=447383&r1=447382&r2=447383
==============================================================================
--- webservices/commons/trunk/modules/util/src/main/java/org/apache/ws/commons/util/Base64.java (original)
+++ webservices/commons/trunk/modules/util/src/main/java/org/apache/ws/commons/util/Base64.java Mon Sep 18 05:17:52 2006
@@ -472,7 +472,7 @@
 	 * @return An output stream, encoding its input in Base64 and writing
 	 * the output to the writer <code>pWriter</code>.
 	 */
-	public Writer newDecoder(final OutputStream pStream) {
+	public static Writer newDecoder(final OutputStream pStream) {
 		return new Writer(){
 			private final Decoder decoder = new Decoder(1024){
 				protected void writeBuffer(byte[] pBytes, int pOffset, int pLen) throws IOException {



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org