You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by eh...@apache.org on 2005/05/02 00:57:41 UTC

svn commit: r165559 - in /lucene/java/trunk/contrib/ant/src: java/org/apache/lucene/ant/ test/org/apache/lucene/ant/

Author: ehatcher
Date: Sun May  1 15:57:39 2005
New Revision: 165559

URL: http://svn.apache.org/viewcvs?rev=165559&view=rev
Log:
Add ASL header - sorry for the oversight on this.

Modified:
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/ConfigurableDocumentHandler.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandler.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandlerException.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/FileExtensionDocumentHandler.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/HtmlDocument.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/IndexTask.java
    lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/TextDocument.java
    lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/DocumentTestCase.java
    lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/HtmlDocumentTest.java
    lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/IndexTaskTest.java
    lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/TextDocumentTest.java

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/ConfigurableDocumentHandler.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/ConfigurableDocumentHandler.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/ConfigurableDocumentHandler.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/ConfigurableDocumentHandler.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.util.Properties;
 
 public interface ConfigurableDocumentHandler extends DocumentHandler {

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandler.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandler.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandler.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandler.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import org.apache.lucene.document.Document;
 
 import java.io.File;

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandlerException.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandlerException.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandlerException.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/DocumentHandlerException.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.io.PrintStream;
 import java.io.PrintWriter;
 

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/FileExtensionDocumentHandler.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/FileExtensionDocumentHandler.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/FileExtensionDocumentHandler.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/FileExtensionDocumentHandler.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import org.apache.lucene.document.Document;
 
 import java.io.File;

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/HtmlDocument.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/HtmlDocument.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/HtmlDocument.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/HtmlDocument.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import org.apache.lucene.document.Field;
 import org.w3c.dom.Element;
 import org.w3c.dom.Node;

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/IndexTask.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/IndexTask.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/IndexTask.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/IndexTask.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import org.apache.lucene.analysis.Analyzer;
 import org.apache.lucene.analysis.StopAnalyzer;
 import org.apache.lucene.analysis.SimpleAnalyzer;

Modified: lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/TextDocument.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/TextDocument.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/TextDocument.java (original)
+++ lucene/java/trunk/contrib/ant/src/java/org/apache/lucene/ant/TextDocument.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import org.apache.lucene.document.Document;
 import org.apache.lucene.document.Field;
 

Modified: lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/DocumentTestCase.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/DocumentTestCase.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/DocumentTestCase.java (original)
+++ lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/DocumentTestCase.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.io.File;
 import java.io.IOException;
 

Modified: lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/HtmlDocumentTest.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/HtmlDocumentTest.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/HtmlDocumentTest.java (original)
+++ lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/HtmlDocumentTest.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.io.IOException;
 
 import org.apache.lucene.ant.DocumentTestCase;

Modified: lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/IndexTaskTest.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/IndexTaskTest.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/IndexTaskTest.java (original)
+++ lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/IndexTaskTest.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.io.File;
 
 import java.io.IOException;

Modified: lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/TextDocumentTest.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/TextDocumentTest.java?rev=165559&r1=165558&r2=165559&view=diff
==============================================================================
--- lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/TextDocumentTest.java (original)
+++ lucene/java/trunk/contrib/ant/src/test/org/apache/lucene/ant/TextDocumentTest.java Sun May  1 15:57:39 2005
@@ -1,5 +1,21 @@
 package org.apache.lucene.ant;
 
+/**
+ * Copyright 2005 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.
+ */
+
 import java.io.IOException;
 
 import org.apache.lucene.ant.DocumentTestCase;