You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by tp...@apache.org on 2015/01/15 19:38:25 UTC

svn commit: r1652215 [4/4] - in /tika/site/publish: ./ 0.10/ 0.5/ 0.6/ 0.7/ 0.8/ 0.9/ 1.0/ 1.1/ 1.2/ 1.3/ 1.4/ 1.5/ 1.6/ 1.7/ 1.8/

Added: tika/site/publish/1.7/index.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.7/index.html?rev=1652215&view=auto
==============================================================================
--- tika/site/publish/1.7/index.html (added)
+++ tika/site/publish/1.7/index.html Thu Jan 15 18:38:24 2015
@@ -0,0 +1,407 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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.
+-->
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <title>Apache Tika - Apache Tika 1.7</title>
+    <style type="text/css" media="all">
+      @import url("../css/site.css");
+    </style>
+    <link rel="icon" type="image/png" href="../tikaNoText16.png" />
+    <script type="text/javascript">
+      function selectProvider(form) {
+        provider = form.elements['searchProvider'].value;
+        if (provider == "any") {
+          if (Math.random() > 0.5) {
+            provider = "lucid";
+          } else {
+            provider = "sl";
+          }
+        }
+        if (provider == "lucid") {
+          form.action = "http://find.searchhub.org/p:tika";
+        } else if (provider == "sl") {
+          form.action = "http://search-lucene.com/tika";
+        }
+        days = 90;
+        date = new Date();
+        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
+        expires = "; expires=" + date.toGMTString();
+        document.cookie = "searchProvider=" + provider + expires + "; path=/";
+      }
+      function initProvider() {
+        if (document.cookie.length>0) {
+          cStart=document.cookie.indexOf("searchProvider=");
+          if (cStart!=-1) {
+            cStart=cStart + "searchProvider=".length;
+            cEnd=document.cookie.indexOf(";", cStart);
+            if (cEnd==-1) {
+              cEnd=document.cookie.length;
+            }
+            provider = unescape(document.cookie.substring(cStart,cEnd));
+            document.forms['searchform'].elements['searchProvider'].value = provider;
+          }
+        }
+        document.forms['searchform'].elements['q'].focus();
+      }
+    </script>
+  </head>
+  <body onLoad="initProvider();">
+    <div id="body">
+      <div id="banner">
+        <a href="http://tika.apache.org" id="bannerLeft" title="Apache Tika"
+          ><img src="http://tika.apache.org/tika.png" alt="Apache Tika"
+                width="292" height="100"/></a>
+        <a href="http://www.apache.org/" id="bannerRight"
+           title="The Apache Software Foundation"
+          ><img src="http://tika.apache.org/asf-logo.gif" alt="The Apache Software Foundation"
+                width="387" height="100"/></a>
+      </div>
+      <div id="content">
+        <!-- Licensed to the Apache Software Foundation (ASF) under one or more --><!-- contributor license agreements.  See the NOTICE file distributed with --><!-- this work for additional information regarding copyright ownership. --><!-- The ASF licenses this file to You 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. --><div class="section">
+<h2>Apache Tika 1.7<a name="Apache_Tika_1.7"></a></h2>
+<p>The most notable changes in Tika 1.7 over the previous release are:</p>
+<ul>
+<li>Fixed resource leak in OutlookPSTParser that caused TikaException when invoked via AutoDetectParser on Windows (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1506">TIKA-1506</a>).</li>
+<li>HTML tags are properly stripped from content by FeedParser (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1500">TIKA-1500</a>).</li>
+<li>Tika Server support for selecting a single metadata key; wrapped MetadataEP into MetadataResource (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1499">TIKA-1499</a>).</li>
+<li>Tika Server support for JSON and XMP views of metadata (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1497">TIKA-1497</a>).</li>
+<li>Tika Parent uses dependency management to keep duplicate dependencies in different modules the same version (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1384">TIKA-1384</a>).</li>
+<li>Upgraded slf4j to version 1.7.7 (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1496">TIKA-1496</a>).</li>
+<li>Tika Server support for RecursiveParserWrapper's JSON output (endpoint=rmeta) equivalent to (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1451">TIKA-1451</a>'s) -J option in tika-app (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1498">TIKA-1498</a>).</li>
+<li>Tika Server support for providing the password for files on a per-request basis through the Password http header (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1494">TIKA-1494</a>).</li>
+<li>Simple support for the BPG (Better Portable Graphics) image format (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1491">TIKA-1491</a>, <a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1495">TIKA-1495</a>).</li>
+<li>Prevent exceptions from being thrown for some malformed mp3 files (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1218">TIKA-1218</a>).</li>
+<li>Reformat pom.xml files to use two spaces per indent (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1475">TIKA-1475</a>).</li>
+<li>Fix warning of slf4j logger on Tika Server startup (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1472">TIKA-1472</a>).</li>
+<li>Tika CLI and GUI now have option to view JSON rendering of output of RecursiveParserWrapper (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1451">TIKA-1451</a>).</li>
+<li>Tika now integrates the Geospatial Data Abstraction Library (GDAL) for parsing hundreds of geospatial formats (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-605">TIKA-605</a>, <a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1503">TIKA-1503</a>).</li>
+<li>ExternalParsers can now use Regexs to specify dynamic keys (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1441">TIKA-1441</a>).</li>
+<li>Thread safety issues in ImageMetadataExtractor were resolved (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1369">TIKA-1369</a>).</li>
+<li>The ForkParser service is now registered in Activator (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1354">TIKA-1354</a>).</li>
+<li>The Rome Library was upgraded to version 1.5 (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1435">TIKA-1435</a>).</li>
+<li>Add markup for files embedded in PDFs (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1427">TIKA-1427</a>).</li>
+<li>Extract files embedded in annotations in PDFS (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1433">TIKA-1433</a>).</li>
+<li>Upgrade to PDFBox 1.8.8 (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1419">TIKA-1419</a>, <a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1442">TIKA-1442</a>).</li>
+<li>Add RecursiveParserWrapper (aka Jukka's and Nick's) RecursiveMetadataParser (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1329">TIKA-1329</a>).</li>
+<li>Add example for how to dump TikaConfig to XML (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1418">TIKA-1418</a>).</li>
+<li>Allow users to specify a tika config file for tika-app (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1426">TIKA-1426</a>).</li>
+<li>PackageParser includes the last-modified date from the archive in the metadata, when handling embedded entries (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1246">TIKA-1246</a>).</li>
+<li>Created a new Tesseract OCR Parser to extract text from images. Requires installation of Tesseract before use (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-93">TIKA-93</a>).</li>
+<li>Basic parser for older Excel formats, such as Excel 4, 5 and 95, which can get simple text, and metadata for Excel 5+95 (<a class="externalLink" href="http://issues.apache.org/jira/browse/TIKA-1490">TIKA-1490</a>).</li></ul>
+<p>The following people have contributed to Tika 1.7 by submitting or commenting on the issues resolved in this release:</p>
+<ul>
+<li>Aimee Dev</li>
+<li>Alexander Chow</li>
+<li>Amit Gupta</li>
+<li>Andreas</li>
+<li>Andreas Hubold</li>
+<li>Andrzej Bialecki </li>
+<li>Ann Burgess</li>
+<li>Avi</li>
+<li>Boris Naguet</li>
+<li>Chetan Laddha</li>
+<li>Chris A. Mattmann</li>
+<li>Chris Bamford</li>
+<li>Christian Reuschling</li>
+<li>Cservenak, Tamas</li>
+<li>Damiano</li>
+<li>Dave Meikle</li>
+<li>Erik Hetzner</li>
+<li>Fabian Lange</li>
+<li>Hassan Akram</li>
+<li>Hong-Thai Nguyen</li>
+<li>James Baker</li>
+<li>Jonathan Evans</li>
+<li>Jukka Zitting</li>
+<li>Kaijian Xu</li>
+<li>Ken Krugler</li>
+<li>Konstantin Gribov</li>
+<li>Lewis John McGibbney</li>
+<li>Luis Filipe Nassif</li>
+<li>Marco Quaranta</li>
+<li>Martin Kalcher</li>
+<li>Matthias Krueger</li>
+<li>Matthieu Neamar</li>
+<li>Nick Burch</li>
+<li>Nicolas Gavalda</li>
+<li>Omid Pourhadi</li>
+<li>Pradeep Singh</li>
+<li>Ray Gauss II</li>
+<li>Sasa Milenkovic</li>
+<li>Sebastian Nagel</li>
+<li>Sergey Beryozkin</li>
+<li>Steffen</li>
+<li>Steve R</li>
+<li>Tadeu Alves</li>
+<li>Tim Allison</li>
+<li>Tran Nam Quang</li>
+<li>Tyler Palsulich</li>
+<li>Vladimir Glina</li>
+<li>William Palmer</li></ul>
+<p>See <a class="externalLink" href="http://s.apache.org/a8m">http://s.apache.org/a8m</a> for more details on these contributions.</p></div>
+      </div>
+      <div id="sidebar">
+        <div id="navigation">
+                    <h5>Apache Tika</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="../index.html">Introduction</a>
+          </li>
+              
+    <li class="none">
+                    <a href="../download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="../contribute.html">Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="../mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://wiki.apache.org/tika/" class="externalLink">Tika Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="https://issues.apache.org/jira/browse/TIKA" class="externalLink">Issue Tracker</a>
+          </li>
+          </ul>
+              <h5>Documentation</h5>
+            <ul>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
+                  
+              
+            <li class="expanded">
+              <strong>Apache Tika 1.7</strong>
+                <ul>
+                  
+    <li class="none">
+                    <a href="../1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="expanded">
+                    <a href="../1.6/index.html">Apache Tika 1.6</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="../1.6/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.6/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.6/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.6/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.6/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.6/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+                
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="collapsed">
+                    <a href="../1.5/index.html">Apache Tika 1.5</a>
+                </li>
+              
+                
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="collapsed">
+                    <a href="../1.4/index.html">Apache Tika 1.4</a>
+                </li>
+              
+                
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="collapsed">
+                    <a href="../1.3/index.html">Apache Tika 1.3</a>
+                </li>
+              
+                
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="collapsed">
+                    <a href="../1.2/index.html">Apache Tika 1.2</a>
+                </li>
+              
+                
+                    
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="collapsed">
+                    <a href="../1.1/index.html">Apache Tika 1.1</a>
+                </li>
+          </ul>
+              <h5>The Apache Software Foundation</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="http://www.apache.org/foundation/" class="externalLink">About</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://www.apache.org/licenses/" class="externalLink">License</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://www.apache.org/security/" class="externalLink">Security</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Sponsorship</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a>
+          </li>
+          </ul>
+      
+          <div id="search">
+            <h5>Search with Apache Solr</h5>
+            <form action="http://search.lucidimagination.com/p:tika"
+                  method="get" id="searchform">
+              <input type="text" id="query" name="q"/>
+              <select name="searchProvider" id="searchProvider">
+                <option value="any">provider</option>
+                <option value="lucid">Lucid Find</option>
+                <option value="sl">Search-Lucene</option>
+              </select>
+              <input type="submit" id="submit" value="Search" name="Search"
+                     onclick="selectProvider(this.form)"/>
+            </form>
+          </div>
+
+          <div id="bookpromo">
+            <h5>Books about Tika</h5>
+            <p>
+              <a href="http://manning.com/mattmann/" title="Tika in Action"
+                ><img src="../mattmann_cover150.jpg"
+                      width="150" height="186"/></a>
+            </p>
+          </div>
+        </div>
+      </div>
+      <div id="footer">
+        <p>
+          Copyright &#169; 2015
+          <a href="http://www.apache.org/">The Apache Software Foundation</a>.
+          Site powered by <a href="http://maven.apache.org/">Apache Maven</a>. 
+          Search powered by
+          <a href="http://www.lucidimagination.com">Lucid Imagination</a>
+          and <a href="http://sematext.com">Sematext</a>.
+          <br/>
+          Apache Tika, Tika, Apache, the Apache feather logo, and the Apache
+          Tika project logo are trademarks of The Apache Software Foundation.
+        </p>
+      </div>
+    </div>
+  </body>
+</html>

Modified: tika/site/publish/1.7/parser.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.7/parser.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/1.7/parser.html (original)
+++ tika/site/publish/1.7/parser.html Thu Jan 15 18:38:24 2015
@@ -213,6 +213,49 @@ try {
           
                     
                   
+                        
+                  
+                  
+                  
+                  
+              
+            <li class="expanded">
+                    <a href="../1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="../1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Parser API</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
                   
                   
                   

Modified: tika/site/publish/1.7/parser_guide.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.7/parser_guide.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/1.7/parser_guide.html (original)
+++ tika/site/publish/1.7/parser_guide.html Thu Jan 15 18:38:24 2015
@@ -212,6 +212,49 @@ public class HelloParser extends Abstrac
                     
                   
                   
+                        
+                  
+                  
+                  
+              
+            <li class="expanded">
+                    <a href="../1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="../1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Parser 5min Quick Start Guide</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="../1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
                   
                   
                   

Modified: tika/site/publish/1.8/formats.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.8/formats.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/1.8/formats.html (original)
+++ tika/site/publish/1.8/formats.html Thu Jan 15 18:38:24 2015
@@ -235,6 +235,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="../1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="../1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="../1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="../1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/contribute.html
URL: http://svn.apache.org/viewvc/tika/site/publish/contribute.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/contribute.html (original)
+++ tika/site/publish/contribute.html Thu Jan 15 18:38:24 2015
@@ -164,6 +164,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>
@@ -306,7 +349,7 @@
       </div>
       <div id="footer">
         <p>
-          Copyright &#169; 2014
+          Copyright &#169; 2015
           <a href="http://www.apache.org/">The Apache Software Foundation</a>.
           Site powered by <a href="http://maven.apache.org/">Apache Maven</a>. 
           Search powered by

Modified: tika/site/publish/distribution-management.html
URL: http://svn.apache.org/viewvc/tika/site/publish/distribution-management.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/distribution-management.html (original)
+++ tika/site/publish/distribution-management.html Thu Jan 15 18:38:24 2015
@@ -131,6 +131,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/download.html
URL: http://svn.apache.org/viewvc/tika/site/publish/download.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/download.html (original)
+++ tika/site/publish/download.html Thu Jan 15 18:38:24 2015
@@ -86,10 +86,10 @@
       <div id="content">
         <!-- Licensed to the Apache Software Foundation (ASF) under one or more --><!-- contributor license agreements.  See the NOTICE file distributed with --><!-- this work for additional information regarding copyright ownership. --><!-- The ASF licenses this file to You 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. --><div class="section">
 <h2>Download Apache Tika<a name="Download_Apache_Tika"></a></h2>
-<p>Apache Tika 1.6 is now available. See the <a class="externalLink" href="http://www.apache.org/dist/tika/CHANGES-1.6.txt">CHANGES.txt</a> file for more information on the list of updates in this initial release.</p>
+<p>Apache Tika 1.7 is now available. See the <a class="externalLink" href="http://www.apache.org/dist/tika/CHANGES-1.7.txt">CHANGES.txt</a> file for more information on the list of updates in this initial release.</p>
 <ul>
-<li><a class="externalLink" href="http://www.apache.org/dyn/closer.cgi/tika/tika-1.6-src.zip">Mirrors for apache-tika-1.6-src.zip</a> (source archive, <a class="externalLink" href="http://www.apache.org/dist/tika/tika-1.6-src.zip.asc">PGP signature</a>)<br />SHA1: <tt>65644121446130fa29f1b62bcd75fb33344a6ba3</tt><br />MD5: <tt>ee3426654feb7a5b21477d174b6ddc71</tt></li>
-<li><a class="externalLink" href="http://www.apache.org/dyn/closer.cgi/tika/tika-app-1.6.jar">Mirrors for tika-app-1.6.jar</a> (runnable jar, <a class="externalLink" href="http://www.apache.org/dist/tika/tika-app-1.6.jar.asc">PGP signature</a>)<br />SHA1: <tt>99df0d8c3f6a2be498d275053e611fb5afdf0a9d</tt><br />MD5: <tt>2d8af1f228000fcda92bd0dda20b80a8</tt></li></ul>
+<li><a class="externalLink" href="http://www.apache.org/dyn/closer.cgi/tika/tika-1.7-src.zip">Mirrors for apache-tika-1.7-src.zip</a> (source archive, <a class="externalLink" href="http://www.apache.org/dist/tika/tika-1.7-src.zip.asc">PGP signature</a>)<br />SHA1: <tt>b2190c267433e62c08560576ab7197e506bfdc11</tt><br />MD5: <tt>fdecfba36867bb784c029920c11eb115</tt></li>
+<li><a class="externalLink" href="http://www.apache.org/dyn/closer.cgi/tika/tika-app-1.7.jar">Mirrors for tika-app-1.7.jar</a> (runnable jar, <a class="externalLink" href="http://www.apache.org/dist/tika/tika-app-1.7.jar.asc">PGP signature</a>)<br />SHA1: <tt>d9516b1964be8775edbe0d6d167234c2967fea7a</tt><br />MD5: <tt>a3deee3a02d59ad0085123806696f9f8</tt></li></ul>
 <p>Apache Tika releases are available under the <a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>. See the NOTICE.txt file contained in each release artifact for applicable copyright attribution notices.</p>
 <p>If you are looking for previous releases of Apache Tika, have a look in the <a class="externalLink" href="http://archive.apache.org/dist/tika/">archives</a>.</p>
 <p>If you are looking for releases of Apache Tika from the Apache Lucene project (pre-0.8 releases), have a look in the <a class="externalLink" href="http://archive.apache.org/dist/lucene/tika/">lucene archives</a>. If you are looking for releases of Apache Tika from the Apache Incubator (pre-0.2 releases), have a look in the <a class="externalLink" href="http://archive.apache.org/dist/incubator/tika/">incubator archives</a>.</p></div>
@@ -155,6 +155,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>
@@ -297,7 +340,7 @@
       </div>
       <div id="footer">
         <p>
-          Copyright &#169; 2014
+          Copyright &#169; 2015
           <a href="http://www.apache.org/">The Apache Software Foundation</a>.
           Site powered by <a href="http://maven.apache.org/">Apache Maven</a>. 
           Search powered by

Modified: tika/site/publish/index.html
URL: http://svn.apache.org/viewvc/tika/site/publish/index.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/index.html (original)
+++ tika/site/publish/index.html Thu Jan 15 18:38:24 2015
@@ -86,13 +86,15 @@
       <div id="content">
         <!-- Licensed to the Apache Software Foundation (ASF) under one or more --><!-- contributor license agreements.  See the NOTICE file distributed with --><!-- this work for additional information regarding copyright ownership. --><!-- The ASF licenses this file to You 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. --><div class="section">
 <h2>Apache Tika - a content analysis toolkit<a name="Apache_Tika_-_a_content_analysis_toolkit"></a></h2>
-<p>The Apache Tika&#x2122; toolkit detects and extracts metadata and text from over a thousand different file types (such as PPT, XLS, and PDF). All of these file types can be parsed through a single interface, making Tika useful for search engine indexing, content analysis, translation, and much more. You can find the latest release on the <a href="./download.html">download page</a>. Please see the <a href="./1.6/gettingstarted.html">Getting Started</a> page for more information on how to start using Tika.</p>
-<p>The <a href="./1.6/parser.html">Parser</a> and <a href="./1.6/detection.apt">Detector</a> pages describe the main interfaces of Tika and how they work.</p>
+<p>The Apache Tika&#x2122; toolkit detects and extracts metadata and text from over a thousand different file types (such as PPT, XLS, and PDF). All of these file types can be parsed through a single interface, making Tika useful for search engine indexing, content analysis, translation, and much more. You can find the latest release on the <a href="./download.html">download page</a>. Please see the <a href="./1.7/gettingstarted.html">Getting Started</a> page for more information on how to start using Tika.</p>
+<p>The <a href="./1.7/parser.html">Parser</a> and <a href="./1.7/detection.html">Detector</a> pages describe the main interfaces of Tika and how they work.</p>
 <p>If you're interested in contributing to Tika, please see the <a href="./contribute.html">Contributing</a> page or send an email to the <a href="./mail-lists.apt">Tika development list</a>.</p>
 <p>Tika is a project of the <a class="externalLink" href="http://www.apache.org/">Apache Software Foundation</a>, and was formerly a subproject of <a class="externalLink" href="http://lucene.apache.org/">Apache Lucene</a>. </p></div>
 <div class="section">
 <h2>Latest News<a name="Latest_News"></a></h2>
 <dl>
+<dt>15 January 2015: Apache Tika Release</dt>
+<dd> Apache Tika 1.7 has been released! This release includes bug fixes and new features including a new Tesseract OCR Parser; a new GDAL Parser; more supported formats, and overall improvements in Tika stability. Please see the <a class="externalLink" href="https://dist.apache.org/repos/dist/release/tika/CHANGES-1.7.txt">CHANGES.txt</a> file for a full list of changes in this release and have a look at the download page for more information on how to obtain Apache Tika 1.7.</dd>
 <dt>5 September 2014: Apache Tika Release</dt>
 <dd> Apache Tika 1.6 has been released! This release includes bug fixes and new features including a new Translation API; more supported formats, and overall improvements in Tika stability. Please see the <a class="externalLink" href="https://dist.apache.org/repos/dist/release/tika/CHANGES-1.6.txt">CHANGES.txt</a> file for a full list of changes in this release and have a look at the download page for more information on how to obtain Apache Tika 1.6.</dd>
 <dt>7-9 April 2014: Tika at ApacheCon NA in Denver</dt>
@@ -240,6 +242,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>
@@ -382,7 +427,7 @@
       </div>
       <div id="footer">
         <p>
-          Copyright &#169; 2014
+          Copyright &#169; 2015
           <a href="http://www.apache.org/">The Apache Software Foundation</a>.
           Site powered by <a href="http://maven.apache.org/">Apache Maven</a>. 
           Search powered by

Modified: tika/site/publish/integration.html
URL: http://svn.apache.org/viewvc/tika/site/publish/integration.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/integration.html (original)
+++ tika/site/publish/integration.html Thu Jan 15 18:38:24 2015
@@ -127,6 +127,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/issue-tracking.html
URL: http://svn.apache.org/viewvc/tika/site/publish/issue-tracking.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/issue-tracking.html (original)
+++ tika/site/publish/issue-tracking.html Thu Jan 15 18:38:24 2015
@@ -132,6 +132,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/license.html
URL: http://svn.apache.org/viewvc/tika/site/publish/license.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/license.html (original)
+++ tika/site/publish/license.html Thu Jan 15 18:38:24 2015
@@ -335,6 +335,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/mail-lists.html
URL: http://svn.apache.org/viewvc/tika/site/publish/mail-lists.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/mail-lists.html (original)
+++ tika/site/publish/mail-lists.html Thu Jan 15 18:38:24 2015
@@ -138,6 +138,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>
@@ -280,7 +323,7 @@
       </div>
       <div id="footer">
         <p>
-          Copyright &#169; 2014
+          Copyright &#169; 2015
           <a href="http://www.apache.org/">The Apache Software Foundation</a>.
           Site powered by <a href="http://maven.apache.org/">Apache Maven</a>. 
           Search powered by

Modified: tika/site/publish/plugin-management.html
URL: http://svn.apache.org/viewvc/tika/site/publish/plugin-management.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/plugin-management.html (original)
+++ tika/site/publish/plugin-management.html Thu Jan 15 18:38:24 2015
@@ -92,102 +92,106 @@
 <th>ArtifactId</th>
 <th>Version</th></tr>
 <tr class="b">
+<td>de.thetaphi</td>
+<td><a class="externalLink" href="http://code.google.com/p/forbidden-apis/">forbiddenapis</a></td>
+<td>1.6.1</td></tr>
+<tr class="a">
 <td>org.apache.felix</td>
 <td><a class="externalLink" href="http://felix.apache.org/maven-bundle-plugin/">maven-bundle-plugin</a></td>
 <td>2.3.4</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-antrun-plugin/">maven-antrun-plugin</a></td>
 <td>1.6</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-assembly-plugin/">maven-assembly-plugin</a></td>
 <td>2.2.1</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td>
 <td>2.4.1</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td>
-<td>2.3.2</td></tr>
-<tr class="a">
+<td>3.1</td></tr>
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-dependency-plugin/">maven-dependency-plugin</a></td>
-<td>2.8</td></tr>
-<tr class="b">
+<td>2.1</td></tr>
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td>
 <td>2.6</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-docck-plugin/">maven-docck-plugin</a></td>
 <td>1.0</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-enforcer-plugin/">maven-enforcer-plugin</a></td>
 <td>1.0.1</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-gpg-plugin/">maven-gpg-plugin</a></td>
 <td>1.3</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-install-plugin/">maven-install-plugin</a></td>
 <td>2.3.1</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-invoker-plugin/">maven-invoker-plugin</a></td>
 <td>1.5</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-jar-plugin/">maven-jar-plugin</a></td>
 <td>2.3.1</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-javadoc-plugin/">maven-javadoc-plugin</a></td>
 <td>2.8</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-plugin-plugin/">maven-plugin-plugin</a></td>
 <td>2.8</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-release-plugin/">maven-release-plugin</a></td>
 <td>2.1</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-remote-resources-plugin/">maven-remote-resources-plugin</a></td>
 <td>1.2.1</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-resources-plugin/">maven-resources-plugin</a></td>
 <td>2.5</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-scm-plugin/">maven-scm-plugin</a></td>
 <td>1.4</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-shade-plugin/">maven-shade-plugin</a></td>
-<td>1.6</td></tr>
-<tr class="b">
+<td>2.3</td></tr>
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-site-plugin/">maven-site-plugin</a></td>
 <td>3.0</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-source-plugin/">maven-source-plugin</a></td>
 <td>2.1.2</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/surefire/maven-surefire-plugin">maven-surefire-plugin</a></td>
 <td>2.12</td></tr>
-<tr class="a">
+<tr class="b">
 <td>org.apache.rat</td>
 <td><a class="externalLink" href="http://incubator.apache.org/rat/apache-rat-plugin">apache-rat-plugin</a></td>
 <td>0.7</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.codehaus.mojo</td>
 <td><a class="externalLink" href="http://mojo.codehaus.org/clirr-maven-plugin">clirr-maven-plugin</a></td>
 <td>2.3</td></tr></table></div>
@@ -226,6 +230,49 @@
               
           
                     
+                  
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
                   
                   
                   

Modified: tika/site/publish/plugins.html
URL: http://svn.apache.org/viewvc/tika/site/publish/plugins.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/plugins.html (original)
+++ tika/site/publish/plugins.html Thu Jan 15 18:38:24 2015
@@ -92,21 +92,13 @@
 <th>ArtifactId</th>
 <th>Version</th></tr>
 <tr class="b">
-<td>de.thetaphi</td>
-<td><a class="externalLink" href="http://code.google.com/p/forbidden-apis/">forbiddenapis</a></td>
-<td>1.6.1</td></tr>
-<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-antrun-plugin/">maven-antrun-plugin</a></td>
 <td>1.6</td></tr>
-<tr class="b">
+<tr class="a">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-clean-plugin/">maven-clean-plugin</a></td>
 <td>2.4.1</td></tr>
-<tr class="a">
-<td>org.apache.maven.plugins</td>
-<td><a class="externalLink" href="http://maven.apache.org/plugins/maven-compiler-plugin/">maven-compiler-plugin</a></td>
-<td>3.1</td></tr>
 <tr class="b">
 <td>org.apache.maven.plugins</td>
 <td><a class="externalLink" href="http://maven.apache.org/plugins/maven-deploy-plugin/">maven-deploy-plugin</a></td>
@@ -169,6 +161,49 @@
               
           
                     
+                  
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
                   
                   
                   

Modified: tika/site/publish/project-info.html
URL: http://svn.apache.org/viewvc/tika/site/publish/project-info.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/project-info.html (original)
+++ tika/site/publish/project-info.html Thu Jan 15 18:38:24 2015
@@ -174,6 +174,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/project-summary.html
URL: http://svn.apache.org/viewvc/tika/site/publish/project-summary.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/project-summary.html (original)
+++ tika/site/publish/project-summary.html Thu Jan 15 18:38:24 2015
@@ -173,6 +173,49 @@
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/source-repository.html
URL: http://svn.apache.org/viewvc/tika/site/publish/source-repository.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/source-repository.html (original)
+++ tika/site/publish/source-repository.html Thu Jan 15 18:38:24 2015
@@ -160,6 +160,49 @@ http-proxy-port = 3128
                   
                   
                   
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+                    
+                  
+                  
+                  
+                  
+                  
               
         <li class="expanded">
                     <a href="1.6/index.html">Apache Tika 1.6</a>

Modified: tika/site/publish/team-list.html
URL: http://svn.apache.org/viewvc/tika/site/publish/team-list.html?rev=1652215&r1=1652214&r2=1652215&view=diff
==============================================================================
--- tika/site/publish/team-list.html (original)
+++ tika/site/publish/team-list.html Thu Jan 15 18:38:24 2015
@@ -245,7 +245,18 @@
 <td><a class="externalLink" href="http://alfresco.com">http://alfresco.com</a></td>
 <td>committer</td>
 <td>-5</td>
-<td><span id="developer-12">-5</span></td></tr></table></div>
+<td><span id="developer-12">-5</span></td></tr>
+<tr class="a">
+<td><img src="http://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></td>
+<td><a name="tpalsulich"></a>tpalsulich</td>
+<td>Tyler Palsulich</td>
+<td>-</td>
+<td>-</td>
+<td>-</td>
+<td>-</td>
+<td>committer</td>
+<td>-8</td>
+<td><span id="developer-13">-8</span></td></tr></table></div>
 <div class="section">
 <h3>Contributors<a name="Contributors"></a></h3><a name="Contributors"></a>
 <p>The following additional people have contributed to this project through the way of suggestions, patches or documentation.</p>
@@ -277,6 +288,7 @@ function init(){
     offsetDate('developer-10', '+3');
     offsetDate('developer-11', '+2');
     offsetDate('developer-12', '-5');
+    offsetDate('developer-13', '-8');
 }
 
 window.onLoad = init();
@@ -316,6 +328,49 @@ window.onLoad = init();
               
           
                     
+                  
+                  
+                  
+                  
+                  
+                  
+              
+        <li class="expanded">
+                    <a href="1.7/index.html">Apache Tika 1.7</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="1.7/gettingstarted.html">Getting Started</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/formats.html">Supported Formats</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser.html">Parser API</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/parser_guide.html">Parser 5min Quick Start Guide</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/detection.html">Content and Language Detection</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/examples.html">Usage Examples</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="1.7/api/">API Documentation</a>
+          </li>
+              </ul>
+        </li>
+              
+          
+