You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2006/03/27 10:06:28 UTC

svn commit: r389055 - in /directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty: NettyCodecFactory.java NettyDecoder.java NettyEncoder.java package.html

Author: trustin
Date: Mon Mar 27 00:06:27 2006
New Revision: 389055

URL: http://svn.apache.org/viewcvs?rev=389055&view=rev
Log:
* Updated the mailing list address in all source files
* Added missing license statements
* Applied keyword substitution to some files


Modified:
    directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java   (contents, props changed)
    directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java   (contents, props changed)
    directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java   (contents, props changed)
    directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/package.html   (props changed)

Modified: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java?rev=389055&r1=389054&r2=389055&view=diff
==============================================================================
--- directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java (original)
+++ directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java Mon Mar 27 00:06:27 2006
@@ -1,5 +1,20 @@
 /*
- * @(#) $Id: NettyCodecFactory.java 4 2005-04-18 03:04:09Z trustin $
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
  */
 package org.apache.mina.filter.codec.netty;
 
@@ -14,9 +29,8 @@
  * can be used for multiple sessions.  If not, you'll have to create your
  * own factory after this factory.
  *
- * (Julien Vermillard) Migrated to 0.9
- * @author Trustin Lee (trustin@apache.org)
- * @version $Rev: 4 $, $Date: 2005-04-18 12:04:09 +0900 (월, 18  4월 2005) $,
+ * @author The Apache Directory Project (mina-dev@directory.apache.org)
+ * @version $Rev$, $Date$,
  */
 public class NettyCodecFactory implements org.apache.mina.filter.codec.ProtocolCodecFactory {
 

Propchange: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyCodecFactory.java
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision

Modified: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java?rev=389055&r1=389054&r2=389055&view=diff
==============================================================================
--- directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java (original)
+++ directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java Mon Mar 27 00:06:27 2006
@@ -1,5 +1,20 @@
 /*
- * @(#) $Id: NettyDecoder.java 4 2005-04-18 03:04:09Z trustin $
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
  */
 package org.apache.mina.filter.codec.netty;
 
@@ -15,8 +30,8 @@
  * A MINA <tt>ProtocolDecoder</tt> that decodes byte buffers into
  * Netty2 {@link Message}s using specified {@link MessageRecognizer}s. 
  * 
- * @author The Apache Directory Project (dev@directory.apache.org)
- * @version $Rev: 4 $, $Date: 2005-04-18 12:04:09 +0900 (월, 18  4월 2005) $,
+ * @author The Apache Directory Project (mina-dev@directory.apache.org)
+ * @version $Rev$, $Date$,
  */
 public class NettyDecoder implements org.apache.mina.filter.codec.ProtocolDecoder
 {

Propchange: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyDecoder.java
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision

Modified: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java?rev=389055&r1=389054&r2=389055&view=diff
==============================================================================
--- directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java (original)
+++ directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java Mon Mar 27 00:06:27 2006
@@ -1,5 +1,20 @@
 /*
- * @(#) $Id: NettyEncoder.java 4 2005-04-18 03:04:09Z trustin $
+ *   @(#) $Id$
+ *
+ *   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
  */
 package org.apache.mina.filter.codec.netty;
 
@@ -14,8 +29,8 @@
  * A MINA <tt>ProtocolEncoder</tt> that encodes Netty2 {@link Message}s
  * into byte buffers. 
  * 
- * @author The Apache Directory Project (dev@directory.apache.org)
- * @version $Rev: 4 $, $Date: 2005-04-18 12:04:09 +0900 (월, 18  4월 2005) $,
+ * @author The Apache Directory Project (mina-dev@directory.apache.org)
+ * @version $Rev$, $Date$,
  */
 public class NettyEncoder implements org.apache.mina.filter.codec.ProtocolEncoder
 {

Propchange: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/NettyEncoder.java
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision

Propchange: directory/trunks/mina/filter-codec-netty/src/main/java/org/apache/mina/filter/codec/netty/package.html
------------------------------------------------------------------------------
    svn:keywords = HeadURL Id LastChangedBy LastChangedDate LastChangedRevision