Author: nick
Date: Mon Aug 18 11:30:49 2014
New Revision: 1618586
URL: http://svn.apache.org/r1618586
Log:
Use the doxia-include plugin to pull in one method from the examples, and a
stub page showing how it might work
Added:
tika/site/publish/1.6/examples.html
tika/site/publish/attached-includes/
tika/site/publish/attached-includes/css/
tika/site/publish/attached-includes/css/shCoreDefault.css
tika/site/publish/attached-includes/css/shCoreDefault.css.gz (with props)
tika/site/src/site/apt/1.6/examples.apt
Modified:
tika/site/pom.xml
tika/site/publish/plugin-management.html
tika/site/publish/plugins.html
tika/site/publish/project-info.html
tika/site/src/site/resources/ (props changed)
Modified: tika/site/pom.xml
URL:
http://svn.apache.org/viewvc/tika/site/pom.xml?rev=1618586&r1=1618585&r2=1618586&view=diff
==============================================================================
--- tika/site/pom.xml (original)
+++ tika/site/pom.xml Mon Aug 18 11:30:49 2014
@@ -79,9 +79,16 @@
<configuration>
<templateDirectory>src/site</templateDirectory>
<template>site.vm</template>
- <inputEncoding>UTF-8</inputEncoding>
- <outputEncoding>UTF-8</outputEncoding>
+ <inputEncoding>UTF-8</inputEncoding>
+ <outputEncoding>UTF-8</outputEncoding>
</configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.tinyjee.dim</groupId>
+ <artifactId>doxia-include-macro</artifactId>
+ <version>1.1</version>
+ </dependency>
+ </dependencies>
<executions>
<execution>
<phase>install</phase>
Added: tika/site/publish/1.6/examples.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.6/examples.html?rev=1618586&view=auto
==============================================================================
--- tika/site/publish/1.6/examples.html (added)
+++ tika/site/publish/1.6/examples.html Mon Aug 18 11:30:49 2014
@@ -0,0 +1,300 @@
+<!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 - Tika API Usage Examples</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 API Usage Examples<a
name="Apache_Tika_API_Usage_Examples"></a></h2>
+<p>This page provides a number of examples on how to use the various Tika
APIs. All of the examples shown are also available in the <a
class="externalLink"
href="https://svn.apache.org/repos/asf/tika/trunk/tika-example">Tika Example
module</a> in SVN.</p>
+<p>TODO Complete</p>
+<ul>
+<li><a href="#Apache_Tika_API_Usage_Examples">Apache Tika API Usage
Examples</a>
+<ul>
+<li><a href="#Parsing">Parsing</a>
+<ul>
+<li><a href="#Parsing_using_the_Tika_Facade">Parsing using the Tika
Facade</a></li></ul></li></ul></li></ul>
+<div class="section">
+<h3><a name="Parsing">Parsing</a></h3>
+<p>TODO Explain this better</p>
+<div class="section">
+<h4><a name="Parsing_using_the_Tika_Facade">Parsing using the Tika
Facade</a></h4><style type="text/css">
+ @import url('attached-includes/css/shCoreDefault.css');
+</style>
+<div id="highlighter_881756" class="syntaxhighlighter nogutter java"><table
border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="code"><div
class="container"><div class="line number37 index0 alt2"><code class="java
keyword">public</code> <code class="java plain">String parseToStringExample()
</code><code class="java keyword">throws</code> <code class="java
plain">IOException, SAXException, TikaException {</code></div><div class="line
number38 index1 alt1"><code class="java
spaces"> </code><code class="java plain">InputStream
stream = ParsingExample.</code><code class="java keyword">class</code><code
class="java plain">.getResourceAsStream(</code><code class="java
string">"test.doc"</code><code class="java plain">);</code></div><div
class="line number39 index2 alt2"><code class="java
spaces"> </code><code class="java plain">Tika tika =
</code><code class="java keyword">new</code> <code class="java
plain">Tika();</code></div><
div class="line number40 index3 alt1"><code class="java
spaces"> </code><code class="java keyword">try</code>
<code class="java plain">{</code></div><div class="line number41 index4
alt2"><code class="java
spaces"> </code><code
class="java keyword">return</code> <code class="java
plain">tika.parseToString(stream);</code></div><div class="line number42 index5
alt1"><code class="java spaces"> </code><code
class="java plain">} </code><code class="java keyword">finally</code> <code
class="java plain">{</code></div><div class="line number43 index6 alt2"><code
class="java
spaces"> </code><code
class="java plain">stream.close();</code></div><div class="line number44 index7
alt1"><code class="java spaces"> </code><code
class="java plain">}</code></div><div class="line number45 index8 alt2"><code
class="java plain">}</code></div></
div></td></tr></tbody></table></div></div></div></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">
+ <a href="../1.5/index.html">Apache Tika 1.5</a>
+ <ul>
+
+ <li class="none">
+ <a href="../1.5/gettingstarted.html">Getting Started</a>
+ </li>
+
+ <li class="none">
+ <a href="../1.5/formats.html">Supported Formats</a>
+ </li>
+
+ <li class="none">
+ <a href="../1.5/parser.html">Parser API</a>
+ </li>
+
+ <li class="none">
+ <a href="../1.5/parser_guide.html">Parser 5min Quick Start
Guide</a>
+ </li>
+
+ <li class="none">
+ <a href="../1.5/detection.html">Content and Language
Detection</a>
+ </li>
+
+ <li class="none">
+ <a href="../1.5/api/">API Documentation</a>
+ </li>
+ </ul>
+ </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>
+
+
+
+
+
+
+
+
+
+ <li class="collapsed">
+ <a href="../1.0/index.html">Apache Tika 1.0</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 © 2014
+ <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>
Added: tika/site/publish/attached-includes/css/shCoreDefault.css
URL:
http://svn.apache.org/viewvc/tika/site/publish/attached-includes/css/shCoreDefault.css?rev=1618586&view=auto
==============================================================================
--- tika/site/publish/attached-includes/css/shCoreDefault.css (added)
+++ tika/site/publish/attached-includes/css/shCoreDefault.css Mon Aug 18
11:30:49 2014
@@ -0,0 +1,338 @@
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ *
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+.syntaxhighlighter a,
+.syntaxhighlighter div,
+.syntaxhighlighter code,
+.syntaxhighlighter table,
+.syntaxhighlighter table td,
+.syntaxhighlighter table tr,
+.syntaxhighlighter table tbody,
+.syntaxhighlighter table thead,
+.syntaxhighlighter table caption,
+.syntaxhighlighter textarea {
+ -moz-border-radius: 0 0 0 0 !important;
+ -webkit-border-radius: 0 0 0 0 !important;
+ background: none !important;
+ border: 0 !important;
+ bottom: auto !important;
+ float: none !important;
+ height: auto !important;
+ left: auto !important;
+ line-height: 1.1em !important;
+ margin: 0 !important;
+ outline: 0 !important;
+ overflow: visible !important;
+ padding: 0 !important;
+ position: static !important;
+ right: auto !important;
+ text-align: left !important;
+ top: auto !important;
+ vertical-align: baseline !important;
+ width: auto !important;
+ box-sizing: content-box !important;
+ font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier,
monospace !important;
+ font-weight: normal !important;
+ font-style: normal !important;
+ font-size: 1em !important;
+ min-height: inherit !important;
+ min-height: auto !important;
+}
+
+.syntaxhighlighter {
+ width: 100% !important;
+ margin: 1em 0 1em 0 !important;
+ position: relative !important;
+ overflow: auto !important;
+ font-size: 1em !important;
+}
+.syntaxhighlighter.source {
+ overflow: hidden !important;
+}
+.syntaxhighlighter .bold {
+ font-weight: bold !important;
+}
+.syntaxhighlighter .italic {
+ font-style: italic !important;
+}
+.syntaxhighlighter .line {
+ white-space: pre !important;
+}
+.syntaxhighlighter table {
+ width: 100% !important;
+}
+.syntaxhighlighter table caption {
+ text-align: left !important;
+ padding: .5em 0 0.5em 1em !important;
+}
+.syntaxhighlighter table td.code {
+ width: 100% !important;
+}
+.syntaxhighlighter table td.code .container {
+ position: relative !important;
+}
+.syntaxhighlighter table td.code .container textarea {
+ box-sizing: border-box !important;
+ position: absolute !important;
+ left: 0 !important;
+ top: 0 !important;
+ width: 100% !important;
+ height: 100% !important;
+ border: none !important;
+ background: white !important;
+ padding-left: 1em !important;
+ overflow: hidden !important;
+ white-space: pre !important;
+}
+.syntaxhighlighter table td.gutter .line {
+ text-align: right !important;
+ padding: 0 0.5em 0 1em !important;
+}
+.syntaxhighlighter table td.code .line {
+ padding: 0 1em !important;
+}
+.syntaxhighlighter.nogutter td.code .container textarea,
.syntaxhighlighter.nogutter td.code .line {
+ padding-left: 0em !important;
+}
+.syntaxhighlighter.show {
+ display: block !important;
+}
+.syntaxhighlighter.collapsed table {
+ display: none !important;
+}
+.syntaxhighlighter.collapsed .toolbar {
+ padding: 0.1em 0.8em 0em 0.8em !important;
+ font-size: 1em !important;
+ position: static !important;
+ width: auto !important;
+ height: auto !important;
+}
+.syntaxhighlighter.collapsed .toolbar span {
+ display: inline !important;
+ margin-right: 1em !important;
+}
+.syntaxhighlighter.collapsed .toolbar span a {
+ padding: 0 !important;
+ display: none !important;
+}
+.syntaxhighlighter.collapsed .toolbar span a.expandSource {
+ display: inline !important;
+}
+.syntaxhighlighter .toolbar {
+ position: absolute !important;
+ right: 1px !important;
+ top: 1px !important;
+ width: 11px !important;
+ height: 11px !important;
+ font-size: 10px !important;
+ z-index: 10 !important;
+}
+.syntaxhighlighter .toolbar span.title {
+ display: inline !important;
+}
+.syntaxhighlighter .toolbar a {
+ display: block !important;
+ text-align: center !important;
+ text-decoration: none !important;
+ padding-top: 1px !important;
+}
+.syntaxhighlighter .toolbar a.expandSource {
+ display: none !important;
+}
+.syntaxhighlighter.ie {
+ font-size: .9em !important;
+ padding: 1px 0 1px 0 !important;
+}
+.syntaxhighlighter.ie .toolbar {
+ line-height: 8px !important;
+}
+.syntaxhighlighter.ie .toolbar a {
+ padding-top: 0px !important;
+}
+.syntaxhighlighter.printing .line.alt1 .content,
+.syntaxhighlighter.printing .line.alt2 .content,
+.syntaxhighlighter.printing .line.highlighted .number,
+.syntaxhighlighter.printing .line.highlighted.alt1 .content,
+.syntaxhighlighter.printing .line.highlighted.alt2 .content {
+ background: none !important;
+}
+.syntaxhighlighter.printing .line .number {
+ color: #bbbbbb !important;
+}
+.syntaxhighlighter.printing .line .content {
+ color: black !important;
+}
+.syntaxhighlighter.printing .toolbar {
+ display: none !important;
+}
+.syntaxhighlighter.printing a {
+ text-decoration: none !important;
+}
+.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
+ color: black !important;
+}
+.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a
{
+ color: #008200 !important;
+}
+.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
+ color: blue !important;
+}
+.syntaxhighlighter.printing .keyword {
+ color: #006699 !important;
+ font-weight: bold !important;
+}
+.syntaxhighlighter.printing .preprocessor {
+ color: gray !important;
+}
+.syntaxhighlighter.printing .variable {
+ color: #aa7700 !important;
+}
+.syntaxhighlighter.printing .value {
+ color: #009900 !important;
+}
+.syntaxhighlighter.printing .functions {
+ color: #ff1493 !important;
+}
+.syntaxhighlighter.printing .constants {
+ color: #0066cc !important;
+}
+.syntaxhighlighter.printing .script {
+ font-weight: bold !important;
+}
+.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
+ color: gray !important;
+}
+.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
+ color: #ff1493 !important;
+}
+.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
+ color: red !important;
+}
+.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
+ color: black !important;
+}
+
+.syntaxhighlighter {
+ background-color: white !important;
+}
+.syntaxhighlighter .line.alt1 {
+ background-color: white !important;
+}
+.syntaxhighlighter .line.alt2 {
+ background-color: white !important;
+}
+.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter
.line.highlighted.alt2 {
+ background-color: #e0e0e0 !important;
+}
+.syntaxhighlighter .line.highlighted.number {
+ color: black !important;
+}
+.syntaxhighlighter table caption {
+ color: black !important;
+}
+.syntaxhighlighter .gutter {
+ color: #afafaf !important;
+}
+.syntaxhighlighter .gutter .line {
+ border-right: 3px solid #6ce26c !important;
+}
+.syntaxhighlighter .gutter .line.highlighted {
+ background-color: #6ce26c !important;
+ color: white !important;
+}
+.syntaxhighlighter.printing .line .content {
+ border: none !important;
+}
+.syntaxhighlighter.collapsed {
+ overflow: visible !important;
+}
+.syntaxhighlighter.collapsed .toolbar {
+ color: blue !important;
+ background: white !important;
+ border: 1px solid #6ce26c !important;
+}
+.syntaxhighlighter.collapsed .toolbar a {
+ color: blue !important;
+}
+.syntaxhighlighter.collapsed .toolbar a:hover {
+ color: red !important;
+}
+.syntaxhighlighter .toolbar {
+ color: white !important;
+ background: #6ce26c !important;
+ border: none !important;
+}
+.syntaxhighlighter .toolbar a {
+ color: white !important;
+}
+.syntaxhighlighter .toolbar a:hover {
+ color: black !important;
+}
+.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
+ color: black !important;
+}
+.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
+ color: #008200 !important;
+}
+.syntaxhighlighter .string, .syntaxhighlighter .string a {
+ color: blue !important;
+}
+.syntaxhighlighter .keyword {
+ color: #006699 !important;
+}
+.syntaxhighlighter .preprocessor {
+ color: gray !important;
+}
+.syntaxhighlighter .variable {
+ color: #aa7700 !important;
+}
+.syntaxhighlighter .value {
+ color: #009900 !important;
+}
+.syntaxhighlighter .functions {
+ color: #ff1493 !important;
+}
+.syntaxhighlighter .constants {
+ color: #0066cc !important;
+}
+.syntaxhighlighter .script {
+ font-weight: bold !important;
+ color: #006699 !important;
+ background-color: none !important;
+}
+.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
+ color: gray !important;
+}
+.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
+ color: #ff1493 !important;
+}
+.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
+ color: red !important;
+}
+
+.syntaxhighlighter .keyword {
+ font-weight: bold !important;
+}
+
+.syntaxhighlighter {
+ overflow: visible !important;
+ overflow-y: hidden !important;
+ overflow-x: auto !important;
+}
+
+div.syntaxhighlighter {
+ border: 1px solid #e5e5e5;
+}
Added: tika/site/publish/attached-includes/css/shCoreDefault.css.gz
URL:
http://svn.apache.org/viewvc/tika/site/publish/attached-includes/css/shCoreDefault.css.gz?rev=1618586&view=auto
==============================================================================
Binary file - no diff available.
Propchange: tika/site/publish/attached-includes/css/shCoreDefault.css.gz
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Modified: tika/site/publish/plugin-management.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/plugin-management.html?rev=1618586&r1=1618585&r2=1618586&view=diff
==============================================================================
--- tika/site/publish/plugin-management.html (original)
+++ tika/site/publish/plugin-management.html Mon Aug 18 11:30:49 2014
@@ -93,96 +93,112 @@
<th>Version</th></tr>
<tr class="b">
<td>org.apache.felix</td>
-<td><a class="externalLink"
href="http://felix.apache.org/maven-bundle-plugin/">maven-bundle-plugin</a></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">
<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><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">
<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><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">
<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><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">
<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><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>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>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-dependency-plugin">maven-dependency-plugin</a></td>
+<td>2.0</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>
+<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">
<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><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">
<td>org.apache.maven.plugins</td>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-ear-plugin">maven-ear-plugin</a></td>
+<td>2.3.1</td></tr>
+<tr class="a">
+<td>org.apache.maven.plugins</td>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-ejb-plugin">maven-ejb-plugin</a></td>
+<td>2.1</td></tr>
+<tr class="b">
+<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">
<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><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">
<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><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">
<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><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">
<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><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">
<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><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">
<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><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">
<td>org.apache.maven.plugins</td>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-rar-plugin">maven-rar-plugin</a></td>
+<td>2.2</td></tr>
+<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><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><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><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><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">
+<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><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><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="b">
+<td>org.apache.maven.plugins</td>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-war-plugin">maven-war-plugin</a></td>
+<td>2.1-alpha-2</td></tr>
<tr class="a">
<td>org.apache.rat</td>
<td><a class="externalLink"
href="http://incubator.apache.org/rat/apache-rat-plugin">apache-rat-plugin</a></td>
Modified: tika/site/publish/plugins.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/plugins.html?rev=1618586&r1=1618585&r2=1618586&view=diff
==============================================================================
--- tika/site/publish/plugins.html (original)
+++ tika/site/publish/plugins.html Mon Aug 18 11:30:49 2014
@@ -93,31 +93,19 @@
<th>Version</th></tr>
<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><a class="externalLink"
href="http://maven.apache.org/plugins/maven-antrun-plugin">maven-antrun-plugin</a></td>
<td>1.6</td></tr>
<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="b">
-<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><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>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="b">
<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">
-<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><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="b">
+<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><a class="externalLink"
href="http://maven.apache.org/plugins/maven-site-plugin">maven-site-plugin</a></td>
<td>3.3</td></tr></table></div>
<div class="section">
<h2>Project Report Plugins<a name="Project_Report_Plugins"></a></h2><a
name="Project_Report_Plugins"></a>
@@ -128,7 +116,7 @@
<th>Version</th></tr>
<tr class="b">
<td>org.apache.maven.plugins</td>
-<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-project-info-reports-plugin/">maven-project-info-reports-plugin</a></td>
+<td><a class="externalLink"
href="http://maven.apache.org/plugins/maven-project-info-reports-plugin">maven-project-info-reports-plugin</a></td>
<td>2.5</td></tr></table></div>
</div>
<div id="sidebar">
Modified: tika/site/publish/project-info.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/project-info.html?rev=1618586&r1=1618585&r2=1618586&view=diff
==============================================================================
--- tika/site/publish/project-info.html (original)
+++ tika/site/publish/project-info.html Mon Aug 18 11:30:49 2014
@@ -99,41 +99,41 @@
structured text content from various documents using existing parser
libraries.</td></tr>
<tr class="a">
-<td><a href="team-list.html">Project Team</a></td>
-<td>This document provides information on the members of this project. These
are the individuals who have contributed to the project in one form or
another.</td></tr>
+<td><a href="plugin-management.html">Plugin Management</a></td>
+<td>This document lists the plugins that are defined through
pluginManagement.</td></tr>
<tr class="b">
-<td><a href="issue-tracking.html">Issue Tracking</a></td>
-<td>This is a link to the issue management system for this project. Issues
(bugs, features, change requests) can be created and queried using this
link.</td></tr>
+<td><a href="distribution-management.html">Distribution Management</a></td>
+<td>This document provides informations on the distribution management of this
project.</td></tr>
<tr class="a">
-<td><a href="license.html">Project License</a></td>
-<td>This is a link to the definitions of project licenses.</td></tr>
-<tr class="b">
<td><a href="source-repository.html">Source Repository</a></td>
<td>This is a link to the online source repository that can be viewed via a
web browser.</td></tr>
-<tr class="a">
-<td><a href="project-summary.html">Project Summary</a></td>
-<td>This document lists other related information of this project</td></tr>
<tr class="b">
<td><a href="mail-lists.html">Mailing Lists</a></td>
<td>This document provides subscription and archive information for this
project's mailing lists.</td></tr>
<tr class="a">
-<td><a href="dependency-management.html">Dependency Management</a></td>
-<td>This document lists the dependencies that are defined through
dependencyManagement.</td></tr>
+<td><a href="issue-tracking.html">Issue Tracking</a></td>
+<td>This is a link to the issue management system for this project. Issues
(bugs, features, change requests) can be created and queried using this
link.</td></tr>
<tr class="b">
-<td><a href="dependencies.html">Dependencies</a></td>
-<td>This document lists the project's dependencies and provides information on
each dependency.</td></tr>
-<tr class="a">
<td><a href="integration.html">Continuous Integration</a></td>
<td>This is a link to the definitions of all continuous integration processes
that builds and tests code on a frequent, regular basis.</td></tr>
-<tr class="b">
-<td><a href="plugin-management.html">Plugin Management</a></td>
-<td>This document lists the plugins that are defined through
pluginManagement.</td></tr>
<tr class="a">
<td><a href="plugins.html">Project Plugins</a></td>
<td>This document lists the build plugins and the report plugins used by this
project.</td></tr>
<tr class="b">
-<td><a href="distribution-management.html">Distribution Management</a></td>
-<td>This document provides informations on the distribution management of this
project.</td></tr></table></div></div>
+<td><a href="license.html">Project License</a></td>
+<td>This is a link to the definitions of project licenses.</td></tr>
+<tr class="a">
+<td><a href="dependency-management.html">Dependency Management</a></td>
+<td>This document lists the dependencies that are defined through
dependencyManagement.</td></tr>
+<tr class="b">
+<td><a href="team-list.html">Project Team</a></td>
+<td>This document provides information on the members of this project. These
are the individuals who have contributed to the project in one form or
another.</td></tr>
+<tr class="a">
+<td><a href="project-summary.html">Project Summary</a></td>
+<td>This document lists other related information of this project</td></tr>
+<tr class="b">
+<td><a href="dependencies.html">Dependencies</a></td>
+<td>This document lists the project's dependencies and provides information on
each dependency.</td></tr></table></div></div>
</div>
<div id="sidebar">
<div id="navigation">
Added: tika/site/src/site/apt/1.6/examples.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.6/examples.apt?rev=1618586&view=auto
==============================================================================
--- tika/site/src/site/apt/1.6/examples.apt (added)
+++ tika/site/src/site/apt/1.6/examples.apt Mon Aug 18 11:30:49 2014
@@ -0,0 +1,39 @@
+ -----------------------
+ Tika API Usage Examples
+ -----------------------
+
+~~ 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.
+
+Apache Tika API Usage Examples
+
+ This page provides a number of examples on how to use the various
+ Tika APIs. All of the examples shown are also available in the
+ {{{https://svn.apache.org/repos/asf/tika/trunk/tika-example}Tika Example
+ module}} in SVN.
+
+ TODO Complete
+
+%{toc|section=1|fromDepth=1}
+
+* {Parsing}
+
+ TODO Explain the options
+
+** {Parsing using the Tika Facade}
+
+ TODO Explain about using this
+
+%{include|source=../tika-example/src/main/java/org/apache/tika/example/ParsingExample.java|snippet=aj:..parseToStringExample()|show-gutter=false}
Propchange: tika/site/src/site/resources/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Aug 18 11:30:49 2014
@@ -0,0 +1 @@
+attached-includes