Author: ab Date: Thu Jun 21 15:52:02 2007 New Revision: 549638 URL: http://svn.apache.org/viewvc?view=rev&rev=549638 Log: Upgrade to Lucene 2.2.0 and Hadoop 0.12.3.
Added: lucene/nutch/trunk/lib/hadoop-0.12.3-core.jar (with props) lucene/nutch/trunk/lib/lucene-core-2.2.0.jar (with props) lucene/nutch/trunk/lib/lucene-misc-2.2.0.jar (with props) lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.2.0.jar (with props) lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.2.0.jar (with props) Removed: lucene/nutch/trunk/lib/hadoop-0.12.2-core.jar lucene/nutch/trunk/lib/lucene-core-2.1.0.jar lucene/nutch/trunk/lib/lucene-misc-2.1.0.jar lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.1.0.jar lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.1.0.jar Modified: lucene/nutch/trunk/CHANGES.txt lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a lucene/nutch/trunk/src/java/org/apache/nutch/indexer/FsDirectory.java lucene/nutch/trunk/src/java/org/apache/nutch/indexer/IndexSorter.java Modified: lucene/nutch/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/CHANGES.txt?view=diff&rev=549638&r1=549637&r2=549638 ============================================================================== --- lucene/nutch/trunk/CHANGES.txt (original) +++ lucene/nutch/trunk/CHANGES.txt Thu Jun 21 15:52:02 2007 @@ -57,6 +57,8 @@ 17. NUTCH-471 - Fix synchronization in NutchBean creation. (Enis Soztutar via dogacan) +18. Upgrade to Lucene 2.2.0 and Hadoop 0.12.3. (ab) + Release 0.9 - 2007-04-02 1. Changed log4j confiquration to log to stdout on commandline Added: lucene/nutch/trunk/lib/hadoop-0.12.3-core.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/hadoop-0.12.3-core.jar?view=auto&rev=549638 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/lib/hadoop-0.12.3-core.jar ------------------------------------------------------------------------------ svn:executable = * Propchange: lucene/nutch/trunk/lib/hadoop-0.12.3-core.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: lucene/nutch/trunk/lib/lucene-core-2.2.0.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/lucene-core-2.2.0.jar?view=auto&rev=549638 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/lib/lucene-core-2.2.0.jar ------------------------------------------------------------------------------ svn:executable = * Propchange: lucene/nutch/trunk/lib/lucene-core-2.2.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: lucene/nutch/trunk/lib/lucene-misc-2.2.0.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/lucene-misc-2.2.0.jar?view=auto&rev=549638 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/lib/lucene-misc-2.2.0.jar ------------------------------------------------------------------------------ svn:executable = * Propchange: lucene/nutch/trunk/lib/lucene-misc-2.2.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Modified: lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/lib/native/Linux-i386-32/libhadoop.a?view=diff&rev=549638&r1=549637&r2=549638 ============================================================================== Binary files - no diff available. Modified: lucene/nutch/trunk/src/java/org/apache/nutch/indexer/FsDirectory.java URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/java/org/apache/nutch/indexer/FsDirectory.java?view=diff&rev=549638&r1=549637&r2=549638 ============================================================================== --- lucene/nutch/trunk/src/java/org/apache/nutch/indexer/FsDirectory.java (original) +++ lucene/nutch/trunk/src/java/org/apache/nutch/indexer/FsDirectory.java Thu Jun 21 15:52:02 2007 @@ -219,8 +219,8 @@ out = fs.create(path); } - public void flushBuffer(byte[] b, int size) throws IOException { - out.write(b, 0, size); + public void flushBuffer(byte[] b, int offset, int size) throws IOException { + out.write(b, offset, size); } public void close() throws IOException { Modified: lucene/nutch/trunk/src/java/org/apache/nutch/indexer/IndexSorter.java URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/java/org/apache/nutch/indexer/IndexSorter.java?view=diff&rev=549638&r1=549637&r2=549638 ============================================================================== --- lucene/nutch/trunk/src/java/org/apache/nutch/indexer/IndexSorter.java (original) +++ lucene/nutch/trunk/src/java/org/apache/nutch/indexer/IndexSorter.java Thu Jun 21 15:52:02 2007 @@ -145,6 +145,18 @@ throw new UnsupportedOperationException(); } + public byte[] getPayload(byte[] data, int offset) throws IOException { + return null; + } + + public int getPayloadLength() { + return 0; + } + + public boolean isPayloadAvailable() { + return false; + } + public void close() throws IOException { original.close(); } Added: lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.2.0.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.2.0.jar?view=auto&rev=549638 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.2.0.jar ------------------------------------------------------------------------------ svn:executable = * Propchange: lucene/nutch/trunk/src/plugin/lib-lucene-analyzers/lib/lucene-analyzers-2.2.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.2.0.jar URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.2.0.jar?view=auto&rev=549638 ============================================================================== Binary file - no diff available. Propchange: lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.2.0.jar ------------------------------------------------------------------------------ svn:executable = * Propchange: lucene/nutch/trunk/src/plugin/summary-lucene/lib/lucene-highlighter-2.2.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Nutch-cvs mailing list Nutch-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nutch-cvs