Return-Path: Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: (qmail 74828 invoked from network); 28 Jan 2009 09:30:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Jan 2009 09:30:11 -0000 Received: (qmail 58672 invoked by uid 500); 28 Jan 2009 09:30:11 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 58662 invoked by uid 99); 28 Jan 2009 09:30:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jan 2009 01:30:11 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jan 2009 09:30:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1608923888AF; Wed, 28 Jan 2009 09:29:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r738414 - in /lucene/pylucene/trunk/java/org/osafoundation: lucene/ pylucene/ pylucene/analysis/ pylucene/queryParser/ pylucene/search/ pylucene/search/highlight/ pylucene/store/ util/ Date: Wed, 28 Jan 2009 09:29:48 -0000 To: commits@lucene.apache.org From: vajda@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090128092950.1608923888AF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vajda Date: Wed Jan 28 09:29:47 2009 New Revision: 738414 URL: http://svn.apache.org/viewvc?rev=738414&view=rev Log: renamed osafoundation packages to apache.pylucene Added: lucene/pylucene/trunk/java/org/osafoundation/pylucene/ - copied from r738402, lucene/pylucene/trunk/java/org/osafoundation/lucene/ Removed: lucene/pylucene/trunk/java/org/osafoundation/lucene/ Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonAnalyzer.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonCharTokenizer.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenFilter.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenStream.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenizer.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonMultiFieldQueryParser.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonQueryParser.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonFilter.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonHitCollector.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonScoreDocComparator.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarity.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarityDelegator.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparator.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparatorSource.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFormatter.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFragmenter.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonDirectory.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexInput.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexOutput.java lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonLock.java lucene/pylucene/trunk/java/org/osafoundation/util/PythonComparable.java lucene/pylucene/trunk/java/org/osafoundation/util/PythonIterator.java lucene/pylucene/trunk/java/org/osafoundation/util/PythonSet.java Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonAnalyzer.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonAnalyzer.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonAnalyzer.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonAnalyzer.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.analysis; +package org.apache.pylucene.analysis; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.TokenStream; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonCharTokenizer.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonCharTokenizer.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonCharTokenizer.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonCharTokenizer.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.analysis; +package org.apache.pylucene.analysis; import org.apache.lucene.analysis.CharTokenizer; import java.io.IOException; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenFilter.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenFilter.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenFilter.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenFilter.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.analysis; +package org.apache.pylucene.analysis; import org.apache.lucene.analysis.TokenFilter; import org.apache.lucene.analysis.TokenStream; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenStream.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenStream.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenStream.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenStream.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.analysis; +package org.apache.pylucene.analysis; import org.apache.lucene.analysis.TokenStream; import org.apache.lucene.analysis.Token; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenizer.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenizer.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenizer.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/analysis/PythonTokenizer.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.analysis; +package org.apache.pylucene.analysis; import org.apache.lucene.analysis.Tokenizer; import org.apache.lucene.analysis.Token; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonMultiFieldQueryParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonMultiFieldQueryParser.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonMultiFieldQueryParser.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonMultiFieldQueryParser.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.queryParser; +package org.apache.pylucene.queryParser; import java.util.Vector; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonQueryParser.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonQueryParser.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonQueryParser.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/queryParser/PythonQueryParser.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.queryParser; +package org.apache.pylucene.queryParser; import java.util.Vector; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonFilter.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonFilter.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonFilter.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonFilter.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.search.Filter; import org.apache.lucene.index.IndexReader; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonHitCollector.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonHitCollector.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonHitCollector.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonHitCollector.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.search.HitCollector; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonScoreDocComparator.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonScoreDocComparator.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonScoreDocComparator.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonScoreDocComparator.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.ScoreDocComparator; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarity.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarity.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarity.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarity.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.search.Similarity; import org.apache.lucene.search.Searcher; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarityDelegator.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarityDelegator.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarityDelegator.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSimilarityDelegator.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.search.Similarity; import org.apache.lucene.search.SimilarityDelegator; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparator.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparator.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparator.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparator.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.index.IndexReader; import org.apache.lucene.search.SortComparatorSource; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparatorSource.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparatorSource.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparatorSource.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/PythonSortComparatorSource.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search; +package org.apache.pylucene.search; import org.apache.lucene.index.IndexReader; import org.apache.lucene.search.SortComparatorSource; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFormatter.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFormatter.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFormatter.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFormatter.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search.highlight; +package org.apache.pylucene.search.highlight; import org.apache.lucene.search.highlight.Formatter; import org.apache.lucene.search.highlight.TokenGroup; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFragmenter.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFragmenter.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFragmenter.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/search/highlight/PythonFragmenter.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.search.highlight; +package org.apache.pylucene.search.highlight; import org.apache.lucene.search.highlight.Fragmenter; import org.apache.lucene.analysis.Token; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonDirectory.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonDirectory.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonDirectory.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonDirectory.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.store; +package org.apache.pylucene.store; import org.apache.lucene.store.Directory; import org.apache.lucene.store.IndexInput; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexInput.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexInput.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexInput.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexInput.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.store; +package org.apache.pylucene.store; import org.apache.lucene.store.BufferedIndexInput; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexOutput.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexOutput.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexOutput.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonIndexOutput.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.lucene.store; +package org.apache.pylucene.store; import java.io.IOException; import org.apache.lucene.store.BufferedIndexOutput; Modified: lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonLock.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonLock.java?rev=738414&r1=738402&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonLock.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/pylucene/store/PythonLock.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,10 +13,11 @@ * ==================================================================== */ -package org.osafoundation.lucene.store; +package org.apache.pylucene.store; import org.apache.lucene.store.Lock; + public class PythonLock extends Lock { private long pythonObject; Modified: lucene/pylucene/trunk/java/org/osafoundation/util/PythonComparable.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/util/PythonComparable.java?rev=738414&r1=738413&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/util/PythonComparable.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/util/PythonComparable.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.util; +package org.apache.pylucene.util; public class PythonComparable implements Comparable { Modified: lucene/pylucene/trunk/java/org/osafoundation/util/PythonIterator.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/util/PythonIterator.java?rev=738414&r1=738413&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/util/PythonIterator.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/util/PythonIterator.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.util; +package org.apache.pylucene.util; import java.util.Iterator; Modified: lucene/pylucene/trunk/java/org/osafoundation/util/PythonSet.java URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/java/org/osafoundation/util/PythonSet.java?rev=738414&r1=738413&r2=738414&view=diff ============================================================================== --- lucene/pylucene/trunk/java/org/osafoundation/util/PythonSet.java (original) +++ lucene/pylucene/trunk/java/org/osafoundation/util/PythonSet.java Wed Jan 28 09:29:47 2009 @@ -1,6 +1,4 @@ /* ==================================================================== - * Copyright (c) 2004-2008 Open Source Applications 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 @@ -15,7 +13,7 @@ * ==================================================================== */ -package org.osafoundation.util; +package org.apache.pylucene.util; import java.util.Set; import java.util.Collection;