You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2006/11/09 21:34:20 UTC

svn commit: r473066 - in /incubator/solr/trunk/src: java/org/apache/solr/analysis/ java/org/apache/solr/request/ java/org/apache/solr/search/ java/org/apache/solr/util/ test/org/apache/solr/analysis/ test/org/apache/solr/search/ test/org/apache/solr/util/

Author: yonik
Date: Thu Nov  9 12:34:19 2006
New Revision: 473066

URL: http://svn.apache.org/viewvc?view=rev&rev=473066
Log:
add missing license header

Modified:
    incubator/solr/trunk/src/java/org/apache/solr/analysis/SolrAnalyzer.java
    incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java
    incubator/solr/trunk/src/java/org/apache/solr/request/PythonResponseWriter.java
    incubator/solr/trunk/src/java/org/apache/solr/request/RubyResponseWriter.java
    incubator/solr/trunk/src/java/org/apache/solr/request/ServletSolrParams.java
    incubator/solr/trunk/src/java/org/apache/solr/request/TextResponseWriter.java
    incubator/solr/trunk/src/java/org/apache/solr/search/DocSetHitCollector.java
    incubator/solr/trunk/src/java/org/apache/solr/search/PrefixFilter.java
    incubator/solr/trunk/src/java/org/apache/solr/util/AbstractSolrTestCase.java
    incubator/solr/trunk/src/java/org/apache/solr/util/BitSetIterator.java
    incubator/solr/trunk/src/java/org/apache/solr/util/BitUtil.java
    incubator/solr/trunk/src/java/org/apache/solr/util/OpenBitSet.java
    incubator/solr/trunk/src/test/org/apache/solr/analysis/TestHyphenatedWordsFilter.java
    incubator/solr/trunk/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java
    incubator/solr/trunk/src/test/org/apache/solr/search/TestDocSet.java
    incubator/solr/trunk/src/test/org/apache/solr/util/BitSetPerf.java
    incubator/solr/trunk/src/test/org/apache/solr/util/TestOpenBitSet.java
    incubator/solr/trunk/src/test/org/apache/solr/util/TestXMLEscaping.java

Modified: incubator/solr/trunk/src/java/org/apache/solr/analysis/SolrAnalyzer.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/analysis/SolrAnalyzer.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/analysis/SolrAnalyzer.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/analysis/SolrAnalyzer.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.analysis;
 
 import org.apache.lucene.analysis.Analyzer;

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.request;
 
 import org.apache.lucene.document.Document;

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/PythonResponseWriter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/PythonResponseWriter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/PythonResponseWriter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/PythonResponseWriter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.request;
 
 import java.io.Writer;

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/RubyResponseWriter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/RubyResponseWriter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/RubyResponseWriter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/RubyResponseWriter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,19 @@
+/**
+ * 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.solr.request;
 
 import java.io.Writer;

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/ServletSolrParams.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/ServletSolrParams.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/ServletSolrParams.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/ServletSolrParams.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.request;
 
 import javax.servlet.ServletRequest;

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/TextResponseWriter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/TextResponseWriter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/TextResponseWriter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/TextResponseWriter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.request;
 
 import org.apache.lucene.document.Document;

Modified: incubator/solr/trunk/src/java/org/apache/solr/search/DocSetHitCollector.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/search/DocSetHitCollector.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/search/DocSetHitCollector.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/search/DocSetHitCollector.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.search;
 
 import org.apache.lucene.search.HitCollector;

Modified: incubator/solr/trunk/src/java/org/apache/solr/search/PrefixFilter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/search/PrefixFilter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/search/PrefixFilter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/search/PrefixFilter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.search;
 
 import org.apache.lucene.search.Filter;

Modified: incubator/solr/trunk/src/java/org/apache/solr/util/AbstractSolrTestCase.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/util/AbstractSolrTestCase.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/util/AbstractSolrTestCase.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/util/AbstractSolrTestCase.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 

Modified: incubator/solr/trunk/src/java/org/apache/solr/util/BitSetIterator.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/util/BitSetIterator.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/util/BitSetIterator.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/util/BitSetIterator.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 /** An iterator to iterate over set bits in an OpenBitSet.

Modified: incubator/solr/trunk/src/java/org/apache/solr/util/BitUtil.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/util/BitUtil.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/util/BitUtil.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/util/BitUtil.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 /**  A variety of high efficiencly bit twiddling routines.

Modified: incubator/solr/trunk/src/java/org/apache/solr/util/OpenBitSet.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/util/OpenBitSet.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/util/OpenBitSet.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/util/OpenBitSet.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 import java.util.Arrays;

Modified: incubator/solr/trunk/src/test/org/apache/solr/analysis/TestHyphenatedWordsFilter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/analysis/TestHyphenatedWordsFilter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/analysis/TestHyphenatedWordsFilter.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/analysis/TestHyphenatedWordsFilter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.analysis;
 
 import java.io.IOException;

Modified: incubator/solr/trunk/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/analysis/TestWordDelimiterFilter.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.analysis;
 
 import org.apache.solr.util.AbstractSolrTestCase;

Modified: incubator/solr/trunk/src/test/org/apache/solr/search/TestDocSet.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/search/TestDocSet.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/search/TestDocSet.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/search/TestDocSet.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.search;
 
 import junit.framework.TestCase;

Modified: incubator/solr/trunk/src/test/org/apache/solr/util/BitSetPerf.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/util/BitSetPerf.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/util/BitSetPerf.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/util/BitSetPerf.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 import java.util.Random;

Modified: incubator/solr/trunk/src/test/org/apache/solr/util/TestOpenBitSet.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/util/TestOpenBitSet.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/util/TestOpenBitSet.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/util/TestOpenBitSet.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 import junit.framework.TestCase;

Modified: incubator/solr/trunk/src/test/org/apache/solr/util/TestXMLEscaping.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/test/org/apache/solr/util/TestXMLEscaping.java?view=diff&rev=473066&r1=473065&r2=473066
==============================================================================
--- incubator/solr/trunk/src/test/org/apache/solr/util/TestXMLEscaping.java (original)
+++ incubator/solr/trunk/src/test/org/apache/solr/util/TestXMLEscaping.java Thu Nov  9 12:34:19 2006
@@ -1,3 +1,20 @@
+/**
+ * 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.solr.util;
 
 import junit.framework.TestCase;