You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2012/05/21 22:49:19 UTC

svn commit: r1341198 - in /avro/trunk: lang/c/ lang/csharp/src/apache/test/Utils/ lang/java/avro/src/test/java/org/apache/avro/reflect/ lang/java/avro/src/test/java/org/apache/avro/specific/ share/

Author: cutting
Date: Mon May 21 20:49:19 2012
New Revision: 1341198

URL: http://svn.apache.org/viewvc?rev=1341198&view=rev
Log:
Adding missing license headers in preparation for 1.7.0 release candidate.

Modified:
    avro/trunk/lang/c/cmake_avrolib.bat
    avro/trunk/lang/c/cmake_avrolib.sh
    avro/trunk/lang/csharp/src/apache/test/Utils/CaseFinderTests.cs
    avro/trunk/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflectDatumReader.java
    avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificData.java
    avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificDatumReader.java
    avro/trunk/share/rat-excludes.txt

Modified: avro/trunk/lang/c/cmake_avrolib.bat
URL: http://svn.apache.org/viewvc/avro/trunk/lang/c/cmake_avrolib.bat?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/c/cmake_avrolib.bat (original)
+++ avro/trunk/lang/c/cmake_avrolib.bat Mon May 21 20:49:19 2012
@@ -1,3 +1,20 @@
+REM  Licensed to the Apache Software Foundation (ASF) under one
+REM  or more contributor license agreements.  See the NOTICE file
+REM  distributed with this work for additional information
+REM  regarding copyright ownership.  The ASF licenses this file
+REM  to you under the Apache License, Version 2.0 (the
+REM  "License"); you may not use this file except in compliance
+REM  with the License.  You may obtain a copy of the License at
+REM 
+REM    http://www.apache.org/licenses/LICENSE-2.0
+REM 
+REM  Unless required by applicable law or agreed to in writing,
+REM  software distributed under the License is distributed on an
+REM  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+REM  KIND, either express or implied.  See the License for the
+REM  specific language governing permissions and limitations
+REM  under the License.
+
 echo off
 
 REM Set up the solution file in Windows. 

Modified: avro/trunk/lang/c/cmake_avrolib.sh
URL: http://svn.apache.org/viewvc/avro/trunk/lang/c/cmake_avrolib.sh?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/c/cmake_avrolib.sh (original)
+++ avro/trunk/lang/c/cmake_avrolib.sh Mon May 21 20:49:19 2012
@@ -1,4 +1,21 @@
 #!/bin/bash
+#
+# 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.
 
 mkdir -p build
 cd build

Modified: avro/trunk/lang/csharp/src/apache/test/Utils/CaseFinderTests.cs
URL: http://svn.apache.org/viewvc/avro/trunk/lang/csharp/src/apache/test/Utils/CaseFinderTests.cs?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/csharp/src/apache/test/Utils/CaseFinderTests.cs (original)
+++ avro/trunk/lang/csharp/src/apache/test/Utils/CaseFinderTests.cs Mon May 21 20:49:19 2012
@@ -1,4 +1,22 @@
-using System;
+/**
+ * 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.
+ */
+
+using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;

Modified: avro/trunk/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflectDatumReader.java
URL: http://svn.apache.org/viewvc/avro/trunk/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflectDatumReader.java?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflectDatumReader.java (original)
+++ avro/trunk/lang/java/avro/src/test/java/org/apache/avro/reflect/TestReflectDatumReader.java Mon May 21 20:49:19 2012
@@ -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.avro.reflect;
 
 import static org.junit.Assert.assertEquals;

Modified: avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificData.java
URL: http://svn.apache.org/viewvc/avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificData.java?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificData.java (original)
+++ avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificData.java Mon May 21 20:49:19 2012
@@ -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.avro.specific;
 
 import static org.junit.Assert.assertFalse;

Modified: avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificDatumReader.java
URL: http://svn.apache.org/viewvc/avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificDatumReader.java?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificDatumReader.java (original)
+++ avro/trunk/lang/java/avro/src/test/java/org/apache/avro/specific/TestSpecificDatumReader.java Mon May 21 20:49:19 2012
@@ -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.avro.specific;
 
 import static org.junit.Assert.*;

Modified: avro/trunk/share/rat-excludes.txt
URL: http://svn.apache.org/viewvc/avro/trunk/share/rat-excludes.txt?rev=1341198&r1=1341197&r2=1341198&view=diff
==============================================================================
--- avro/trunk/share/rat-excludes.txt (original)
+++ avro/trunk/share/rat-excludes.txt Mon May 21 20:49:19 2012
@@ -16,6 +16,7 @@
 **/.gitignore
 **/Makefile**
 **/configure**
+**/_*
 doc/**
 lang/py/lib/simplejson/**
 lang/c++/Doxyfile
@@ -26,6 +27,8 @@ lang/c++/config**
 lang/c/docs/**
 lang/c/json/**
 lang/c/src/avro-c.pc.in
+lang/c/src/avro/msinttypes.h
+lang/c/src/avro/msstdint.h
 lang/c/tests/**
 lang/c/version.sh
 lang/ruby/Manifest
@@ -36,6 +39,7 @@ lang/c/src/st.h
 lang/c/src/st.c
 lang/csharp/Avro.sln
 lang/csharp/Avro.nunit
+lang/java/avro/src/test/java/org/apache/avro/FooBarSpecificRecord.java
 lang/java/ipc/src/main/java/org/apache/avro/ipc/stats/static/*.js
 lang/java/ipc/src/main/java/org/apache/avro/ipc/stats/static/*.css
 lang/java/protobuf/src/test/java/org/apache/avro/protobuf/Test.java