You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by br...@apache.org on 2010/06/22 20:53:53 UTC

svn commit: r956975 - in /incubator/thrift/branches/0.3.0/lib: java/src/org/apache/thrift/transport/ java/test/org/apache/thrift/ java/test/org/apache/thrift/transport/ js/test/src/test/ py/src/

Author: bryanduxbury
Date: Tue Jun 22 18:53:53 2010
New Revision: 956975

URL: http://svn.apache.org/viewvc?rev=956975&view=rev
Log:
THRIFT-799. Files missing proper Apache license header

Added the Apache license header to a bunch of files that were missing it.

Modified:
    incubator/thrift/branches/0.3.0/lib/java/src/org/apache/thrift/transport/TMemoryInputTransport.java
    incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestStruct.java
    incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTBaseHelper.java
    incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTUnion.java
    incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/transport/TestTMemoryInputTransport.java
    incubator/thrift/branches/0.3.0/lib/js/test/src/test/TestHandler.java
    incubator/thrift/branches/0.3.0/lib/py/src/TSerialization.py

Modified: incubator/thrift/branches/0.3.0/lib/java/src/org/apache/thrift/transport/TMemoryInputTransport.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/java/src/org/apache/thrift/transport/TMemoryInputTransport.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/java/src/org/apache/thrift/transport/TMemoryInputTransport.java (original)
+++ incubator/thrift/branches/0.3.0/lib/java/src/org/apache/thrift/transport/TMemoryInputTransport.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.thrift.transport;
 
 public final class TMemoryInputTransport extends TTransport {

Modified: incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestStruct.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestStruct.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestStruct.java (original)
+++ incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestStruct.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.thrift;
 
 import java.io.ByteArrayInputStream;

Modified: incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTBaseHelper.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTBaseHelper.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTBaseHelper.java (original)
+++ incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTBaseHelper.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.thrift;
 
 import java.util.Arrays;

Modified: incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTUnion.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTUnion.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTUnion.java (original)
+++ incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/TestTUnion.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.thrift;
 
 import org.apache.thrift.protocol.TBinaryProtocol;

Modified: incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/transport/TestTMemoryInputTransport.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/transport/TestTMemoryInputTransport.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/transport/TestTMemoryInputTransport.java (original)
+++ incubator/thrift/branches/0.3.0/lib/java/test/org/apache/thrift/transport/TestTMemoryInputTransport.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.thrift.transport;
 
 import java.util.Arrays;

Modified: incubator/thrift/branches/0.3.0/lib/js/test/src/test/TestHandler.java
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/js/test/src/test/TestHandler.java?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/js/test/src/test/TestHandler.java (original)
+++ incubator/thrift/branches/0.3.0/lib/js/test/src/test/TestHandler.java Tue Jun 22 18:53:53 2010
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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 test;
 
 import java.util.HashMap;

Modified: incubator/thrift/branches/0.3.0/lib/py/src/TSerialization.py
URL: http://svn.apache.org/viewvc/incubator/thrift/branches/0.3.0/lib/py/src/TSerialization.py?rev=956975&r1=956974&r2=956975&view=diff
==============================================================================
--- incubator/thrift/branches/0.3.0/lib/py/src/TSerialization.py (original)
+++ incubator/thrift/branches/0.3.0/lib/py/src/TSerialization.py Tue Jun 22 18:53:53 2010
@@ -1,3 +1,22 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you 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.
+#
+
 from protocol import TBinaryProtocol
 from transport import TTransport