Author: nick
Date: Sat Jun 27 16:13:01 2015
New Revision: 1687945

URL: http://svn.apache.org/r1687945
Log:
Tika javadocs are in /api/ not /apidocs/, correct links

Modified:
    tika/site/src/site/apt/0.10/parser.apt
    tika/site/src/site/apt/1.10/examples.apt
    tika/site/src/site/apt/1.3/parser.apt
    tika/site/src/site/apt/1.4/parser.apt
    tika/site/src/site/apt/1.5/parser.apt
    tika/site/src/site/apt/1.6/parser.apt
    tika/site/src/site/apt/1.7/examples.apt
    tika/site/src/site/apt/1.7/parser.apt
    tika/site/src/site/apt/1.8/examples.apt
    tika/site/src/site/apt/1.8/parser.apt
    tika/site/src/site/apt/1.9/examples.apt
    tika/site/src/site/apt/1.9/parser.apt

Modified: tika/site/src/site/apt/0.10/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/0.10/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/0.10/parser.apt (original)
+++ tika/site/src/site/apt/0.10/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -238,7 +238,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.10/examples.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.10/examples.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.10/examples.apt (original)
+++ tika/site/src/site/apt/1.10/examples.apt Sat Jun 27 16:13:01 2015
@@ -34,7 +34,7 @@ Apache Tika API Usage Examples
 
 ** {Parsing using the Tika Facade}
 
-   The {{{./apidocs/org/apache/tika/Tika.html}Tika facade}},
+   The {{{./api/org/apache/tika/Tika.html}Tika facade}},
    provides a number of very quick and easy ways to have your content
    parsed by Tika, and return the resulting plain text
 
@@ -43,9 +43,9 @@ Apache Tika API Usage Examples
 ** {Parsing using the Auto-Detect Parser}
 
    For more control, you can call the
-   {{{./apidocs/org/apache/tika/parser/Parser.html}Tika Parsers}}
+   {{{./api/org/apache/tika/parser/Parser.html}Tika Parsers}}
    directly. Most likely, you'll want to start out using the 
-   {{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect 
Parser}},
+   {{{./api/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect Parser}},
    which automatically figures out what kind of content you have, then calls 
the appropriate
    parser for you.
 
@@ -63,7 +63,7 @@ Apache Tika API Usage Examples
 ** {Parsing to Plain Text}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
    you can request that Tika return only the content of the document's body as
    a plain-text string.
 
@@ -72,15 +72,15 @@ Apache Tika API Usage Examples
 ** {Parsing to XHTML}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
+   {{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
    you can get the XHTML content of the whole document as a string.
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseToHTML()|show-gutter=false}
 
    If you just want the body of the xhtml document, without the header, you
    can chain together a 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
-   and a 
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
+   and a 
{{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
    as shown:
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseBodyToHTML()|show-gutter=false}
@@ -103,7 +103,7 @@ Apache Tika API Usage Examples
 ** {Extract Phone Numbers from Content into the Metadata}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
+   
{{{./api/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
    you can have any phone numbers found in the textual content of the document 
extracted and placed
    into the Metadata object for you.
 
@@ -135,7 +135,7 @@ Apache Tika API Usage Examples
 * {Language Identification}
 
    Tika provides support for identifying the language of text, through the 
-   
{{{./apidocs/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}}
 class.
+   
{{{./api/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}} 
class.
    
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/LanguageIdentifierExample.java|snippet=aj:..identifyLanguage(..String)|show-gutter=false}
 

Modified: tika/site/src/site/apt/1.3/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.3/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.3/parser.apt (original)
+++ tika/site/src/site/apt/1.3/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -238,7 +238,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.4/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.4/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.4/parser.apt (original)
+++ tika/site/src/site/apt/1.4/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -238,7 +238,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.5/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.5/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.5/parser.apt (original)
+++ tika/site/src/site/apt/1.5/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -239,7 +239,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.6/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.6/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.6/parser.apt (original)
+++ tika/site/src/site/apt/1.6/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -239,7 +239,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.7/examples.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.7/examples.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.7/examples.apt (original)
+++ tika/site/src/site/apt/1.7/examples.apt Sat Jun 27 16:13:01 2015
@@ -34,7 +34,7 @@ Apache Tika API Usage Examples
 
 ** {Parsing using the Tika Facade}
 
-   The {{{./apidocs/org/apache/tika/Tika.html}Tika facade}},
+   The {{{./api/org/apache/tika/Tika.html}Tika facade}},
    provides a number of very quick and easy ways to have your content
    parsed by Tika, and return the resulting plain text
 
@@ -43,9 +43,9 @@ Apache Tika API Usage Examples
 ** {Parsing using the Auto-Detect Parser}
 
    For more control, you can call the
-   {{{./apidocs/org/apache/tika/parser/Parser.html}Tika Parsers}}
+   {{{./api/org/apache/tika/parser/Parser.html}Tika Parsers}}
    directly. Most likely, you'll want to start out using the 
-   {{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect 
Parser}},
+   {{{./api/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect Parser}},
    which automatically figures out what kind of content you have, then calls 
the appropriate
    parser for you.
 
@@ -63,7 +63,7 @@ Apache Tika API Usage Examples
 ** {Parsing to Plain Text}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
    you can request that Tika return only the content of the document's body as
    a plain-text string.
 
@@ -72,15 +72,15 @@ Apache Tika API Usage Examples
 ** {Parsing to XHTML}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
+   {{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
    you can get the XHTML content of the whole document as a string.
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseToHTML()|show-gutter=false}
 
    If you just want the body of the xhtml document, without the header, you
    can chain together a 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
-   and a 
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
+   and a 
{{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
    as shown:
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseBodyToHTML()|show-gutter=false}
@@ -103,7 +103,7 @@ Apache Tika API Usage Examples
 ** {Extract Phone Numbers from Content into the Metadata}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
+   
{{{./api/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
    you can have any phone numbers found in the textual content of the document 
extracted and placed
    into the Metadata object for you.
 
@@ -135,6 +135,6 @@ Apache Tika API Usage Examples
 * {Language Identification}
 
    Tika provides support for identifying the language of text, through the 
-   
{{{./apidocs/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}}
 class.
+   
{{{./api/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}} 
class.
    
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/LanguageIdentifierExample.java|snippet=aj:..identifyLanguage(..String)|show-gutter=false}

Modified: tika/site/src/site/apt/1.7/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.7/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.7/parser.apt (original)
+++ tika/site/src/site/apt/1.7/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -239,7 +239,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.8/examples.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.8/examples.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.8/examples.apt (original)
+++ tika/site/src/site/apt/1.8/examples.apt Sat Jun 27 16:13:01 2015
@@ -34,7 +34,7 @@ Apache Tika API Usage Examples
 
 ** {Parsing using the Tika Facade}
 
-   The {{{./apidocs/org/apache/tika/Tika.html}Tika facade}},
+   The {{{./api/org/apache/tika/Tika.html}Tika facade}},
    provides a number of very quick and easy ways to have your content
    parsed by Tika, and return the resulting plain text
 
@@ -43,9 +43,9 @@ Apache Tika API Usage Examples
 ** {Parsing using the Auto-Detect Parser}
 
    For more control, you can call the
-   {{{./apidocs/org/apache/tika/parser/Parser.html}Tika Parsers}}
+   {{{./api/org/apache/tika/parser/Parser.html}Tika Parsers}}
    directly. Most likely, you'll want to start out using the 
-   {{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect 
Parser}},
+   {{{./api/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect Parser}},
    which automatically figures out what kind of content you have, then calls 
the appropriate
    parser for you.
 
@@ -63,7 +63,7 @@ Apache Tika API Usage Examples
 ** {Parsing to Plain Text}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
    you can request that Tika return only the content of the document's body as
    a plain-text string.
 
@@ -72,15 +72,15 @@ Apache Tika API Usage Examples
 ** {Parsing to XHTML}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
+   {{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
    you can get the XHTML content of the whole document as a string.
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseToHTML()|show-gutter=false}
 
    If you just want the body of the xhtml document, without the header, you
    can chain together a 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
-   and a 
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
+   and a 
{{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
    as shown:
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseBodyToHTML()|show-gutter=false}
@@ -103,7 +103,7 @@ Apache Tika API Usage Examples
 ** {Extract Phone Numbers from Content into the Metadata}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
+   
{{{./api/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
    you can have any phone numbers found in the textual content of the document 
extracted and placed
    into the Metadata object for you.
 
@@ -135,6 +135,6 @@ Apache Tika API Usage Examples
 * {Language Identification}
 
    Tika provides support for identifying the language of text, through the 
-   
{{{./apidocs/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}}
 class.
+   
{{{./api/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}} 
class.
    
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/LanguageIdentifierExample.java|snippet=aj:..identifyLanguage(..String)|show-gutter=false}

Modified: tika/site/src/site/apt/1.8/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.8/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.8/parser.apt (original)
+++ tika/site/src/site/apt/1.8/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -239,7 +239,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then

Modified: tika/site/src/site/apt/1.9/examples.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.9/examples.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.9/examples.apt (original)
+++ tika/site/src/site/apt/1.9/examples.apt Sat Jun 27 16:13:01 2015
@@ -34,7 +34,7 @@ Apache Tika API Usage Examples
 
 ** {Parsing using the Tika Facade}
 
-   The {{{./apidocs/org/apache/tika/Tika.html}Tika facade}},
+   The {{{./api/org/apache/tika/Tika.html}Tika facade}},
    provides a number of very quick and easy ways to have your content
    parsed by Tika, and return the resulting plain text
 
@@ -43,9 +43,9 @@ Apache Tika API Usage Examples
 ** {Parsing using the Auto-Detect Parser}
 
    For more control, you can call the
-   {{{./apidocs/org/apache/tika/parser/Parser.html}Tika Parsers}}
+   {{{./api/org/apache/tika/parser/Parser.html}Tika Parsers}}
    directly. Most likely, you'll want to start out using the 
-   {{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect 
Parser}},
+   {{{./api/org/apache/tika/parser/AutoDetectParser.html}Auto-Detect Parser}},
    which automatically figures out what kind of content you have, then calls 
the appropriate
    parser for you.
 
@@ -63,7 +63,7 @@ Apache Tika API Usage Examples
 ** {Parsing to Plain Text}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}},
    you can request that Tika return only the content of the document's body as
    a plain-text string.
 
@@ -72,15 +72,15 @@ Apache Tika API Usage Examples
 ** {Parsing to XHTML}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
+   {{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}},
    you can get the XHTML content of the whole document as a string.
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseToHTML()|show-gutter=false}
 
    If you just want the body of the xhtml document, without the header, you
    can chain together a 
-   
{{{./apidocs/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
-   and a 
{{{./apidocs/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
+   {{{./api/org/apache/tika/sax/BodyContentHandler.html}BodyContentHandler}}
+   and a 
{{{./api/org/apache/tika/sax/ToXMLContentHandler.html}ToXMLContentHandler}}
    as shown:
 
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/ContentHandlerExample.java|snippet=aj:..parseBodyToHTML()|show-gutter=false}
@@ -103,7 +103,7 @@ Apache Tika API Usage Examples
 ** {Extract Phone Numbers from Content into the Metadata}
 
    By using the 
-   
{{{./apidocs/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
+   
{{{./api/org/apache/tika/sax/PhoneExtractingContentHandler.html}PhoneExtractingContentHandler}},
    you can have any phone numbers found in the textual content of the document 
extracted and placed
    into the Metadata object for you.
 
@@ -135,7 +135,7 @@ Apache Tika API Usage Examples
 * {Language Identification}
 
    Tika provides support for identifying the language of text, through the 
-   
{{{./apidocs/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}}
 class.
+   
{{{./api/org/apache/tika/language/LanguageIdentifier.html}LanguageIdentifier}} 
class.
    
 
%{include|source=src/examples-src/main/java/org/apache/tika/example/LanguageIdentifierExample.java|snippet=aj:..identifyLanguage(..String)|show-gutter=false}
 

Modified: tika/site/src/site/apt/1.9/parser.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.9/parser.apt?rev=1687945&r1=1687944&r2=1687945&view=diff
==============================================================================
--- tika/site/src/site/apt/1.9/parser.apt (original)
+++ tika/site/src/site/apt/1.9/parser.apt Sat Jun 27 16:13:01 2015
@@ -134,7 +134,7 @@ try {
 ---
 
    Parser implementations typically use the
-   
{{{./apidocs/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
+   {{{./api/org/apache/tika/sax/XHTMLContentHandler.html}XHTMLContentHandler}}
    utility class to generate the XHTML output.
 
    Dealing with the raw SAX events can be a bit complex, so Apache Tika
@@ -239,7 +239,7 @@ try {
 
    Tika also contains some general purpose parser implementations that are
    not targeted at any specific document formats. The most notable of these
-   is the 
{{{./apidocs/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
+   is the 
{{{./api/org/apache/tika/parser/AutoDetectParser.html}AutoDetectParser}}
    class that encapsulates all Tika functionality into a single parser that
    can handle any types of documents. This parser will automatically determine
    the type of the incoming document based on various heuristics and will then


Reply via email to