Author: jukka
Date: Sun Feb 8 21:52:43 2009
New Revision: 742178
URL: http://svn.apache.org/viewvc?rev=742178&view=rev
Log:
TIKA-202: Warnings during Site generation
Patch by Karl Heinz Marbaise.
Modified:
lucene/tika/trunk/src/main/java/org/apache/tika/gui/TikaGUI.java
lucene/tika/trunk/src/main/java/org/apache/tika/mime/HexCoDec.java
lucene/tika/trunk/src/main/java/org/apache/tika/mime/MimeTypes.java
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParserPostProcessor.java
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParsingReader.java
lucene/tika/trunk/src/main/java/org/apache/tika/parser/mp3/Mp3Parser.java
lucene/tika/trunk/src/main/java/org/apache/tika/parser/pkg/bzip2/CBZip2InputStream.java
lucene/tika/trunk/src/main/java/org/apache/tika/utils/ParseUtils.java
Modified: lucene/tika/trunk/src/main/java/org/apache/tika/gui/TikaGUI.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/gui/TikaGUI.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/gui/TikaGUI.java (original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/gui/TikaGUI.java Sun Feb 8
21:52:43 2009
@@ -59,7 +59,7 @@
/**
* Main method. Sets the Swing look and feel to the operating system
- * settings, and starts the Tika GUI with an {...@link AutoDetectParser)
+ * settings, and starts the Tika GUI with an {...@link AutoDetectParser}
* instance as the default parser.
*
* @param args ignored
Modified: lucene/tika/trunk/src/main/java/org/apache/tika/mime/HexCoDec.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/mime/HexCoDec.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/mime/HexCoDec.java
(original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/mime/HexCoDec.java Sun Feb
8 21:52:43 2009
@@ -53,7 +53,7 @@
*
* @param hexChars
* an array of hex characters.
- * @param starIndex
+ * @param startIndex
* the index of the first character to decode
* @param length
* the number of characters to decode.
@@ -86,7 +86,7 @@
*
* @param bites
* the array of bytes to encode.
- * @param starIndex
+ * @param startIndex
* the index of the first character to encode.
* @param length
* the number of characters to encode.
Modified: lucene/tika/trunk/src/main/java/org/apache/tika/mime/MimeTypes.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/mime/MimeTypes.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/mime/MimeTypes.java
(original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/mime/MimeTypes.java Sun Feb
8 21:52:43 2009
@@ -437,7 +437,7 @@
* can reset the stream to the position it was in before this method
* was called.
*
- * @param stream document stream, or <code>null</code>
+ * @param input document stream, or <code>null</code>
* @param metadata metadata hints
* @return MIME type of the document
* @throws IOException if the document stream could not be read
Modified:
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParserPostProcessor.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParserPostProcessor.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
---
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParserPostProcessor.java
(original)
+++
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParserPostProcessor.java
Sun Feb 8 21:52:43 2009
@@ -29,10 +29,9 @@
/**
* Parser decorator that post-processes the results from a decorated parser.
- * The post-processing takes care of filling in any "fulltext", "summary", and
- * regexp {...@link Content} objects with the full text content returned by
- * the decorated parser. The post-processing also catches and logs any
- * exceptions thrown by the decorated parser.
+ * The post-processing takes care of filling in the "fulltext", "summary",
+ * and "outlinks" metadata entries based on the full text content returned by
+ * the decorated parser.
*/
public class ParserPostProcessor extends ParserDecorator {
Modified:
lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParsingReader.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParsingReader.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParsingReader.java
(original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/parser/ParsingReader.java
Sun Feb 8 21:52:43 2009
@@ -32,7 +32,7 @@
/**
* Reader for the text content from a given binary stream. This class
* starts a background thread and uses a {...@link Parser}
- * ({...@link AutoDetectParser) by default) to parse the text content from
+ * ({...@link AutoDetectParser} by default) to parse the text content from
* a given input stream. The {...@link BodyContentHandler} class and a pipe
* is used to convert the push-based SAX event stream to the pull-based
* character stream defined by the {...@link Reader} interface.
@@ -186,7 +186,7 @@
* Reads parsed text from the pipe connected to the parsing thread.
* Fails if the parsing thread has thrown an exception.
*
- * @param cbuff character buffer
+ * @param cbuf character buffer
* @param off start offset within the buffer
* @param len maximum number of characters to read
* @throws IOException if the parsing thread has failed or
Modified:
lucene/tika/trunk/src/main/java/org/apache/tika/parser/mp3/Mp3Parser.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/parser/mp3/Mp3Parser.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/parser/mp3/Mp3Parser.java
(original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/parser/mp3/Mp3Parser.java
Sun Feb 8 21:52:43 2009
@@ -31,7 +31,7 @@
* The <code>Mp3Parser</code> is used to parse ID3 Version 1 Tag information
* from an MP3 file, if available.
*
- * @see http://www.id3.org/ID3v1
+ * @see <a href="http://www.id3.org/ID3v1">MP3 ID3 Version 1 specification</a>
*/
public class Mp3Parser implements Parser {
Modified:
lucene/tika/trunk/src/main/java/org/apache/tika/parser/pkg/bzip2/CBZip2InputStream.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/parser/pkg/bzip2/CBZip2InputStream.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
---
lucene/tika/trunk/src/main/java/org/apache/tika/parser/pkg/bzip2/CBZip2InputStream.java
(original)
+++
lucene/tika/trunk/src/main/java/org/apache/tika/parser/pkg/bzip2/CBZip2InputStream.java
Sun Feb 8 21:52:43 2009
@@ -36,12 +36,12 @@
* <p>The decompression requires large amounts of memory. Thus you
* should call the {...@link #close() close()} method as soon as
* possible, to force <tt>CBZip2InputStream</tt> to release the
- * allocated memory. See {...@link CBZip2OutputStream
- * CBZip2OutputStream} for information about memory usage.</p>
+ * allocated memory. See CBZip2OutputStream for information
+ * about memory usage.</p>
*
* <p><tt>CBZip2InputStream</tt> reads bytes from the compressed
- * source stream via the single byte {...@link java.io.InputStream#read()
- * read()} method exclusively. Thus you should consider to use a
+ * source stream via the single byte {...@link java.io.InputStream#read()}
+ * method exclusively. Thus you should consider to use a
* buffered source stream.</p>
*
* <p>Instances of this class are not threadsafe.</p>
Modified: lucene/tika/trunk/src/main/java/org/apache/tika/utils/ParseUtils.java
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/src/main/java/org/apache/tika/utils/ParseUtils.java?rev=742178&r1=742177&r2=742178&view=diff
==============================================================================
--- lucene/tika/trunk/src/main/java/org/apache/tika/utils/ParseUtils.java
(original)
+++ lucene/tika/trunk/src/main/java/org/apache/tika/utils/ParseUtils.java Sun
Feb 8 21:52:43 2009
@@ -140,7 +140,7 @@
/**
* Returns a list of parsers from URL
*
- * @param URL
+ * @param zip
* @param config
* @return a list of parsers from zip file
* @throws TikaException