Author: lewismc
Date: Sun Jan 9 00:04:34 2022
New Revision: 1896851
URL: http://svn.apache.org/viewvc?rev=1896851&view=rev
Log:
Any23 2.6 site release
Added:
any23/site/css/apache-maven-fluido-1.10.0.min.css
any23/site/fonts/
any23/site/fonts/glyphicons-halflings-regular.eot (with props)
any23/site/fonts/glyphicons-halflings-regular.svg
any23/site/fonts/glyphicons-halflings-regular.ttf (with props)
any23/site/fonts/glyphicons-halflings-regular.woff (with props)
any23/site/images/camel-logo.jpg (with props)
any23/site/images/cc-logo.png (with props)
any23/site/images/ma-logo.png (with props)
any23/site/images/servicemix-logo.png (with props)
any23/site/js/apache-maven-fluido-1.10.0.min.js
Modified:
any23/site/acknowledgements.html
any23/site/any23-plugins.html
any23/site/apidocs/member-search-index.zip
any23/site/apidocs/overview-summary.html
any23/site/apidocs/package-search-index.zip
any23/site/apidocs/type-search-index.zip
any23/site/build-src.html
any23/site/checkstyle-aggregate.html
any23/site/ci-management.html
any23/site/configuration.html
any23/site/dependency-convergence.html
any23/site/dependency-info.html
any23/site/dependency-management.html
any23/site/dev-csv-extractor.html
any23/site/dev-data-conversion.html
any23/site/dev-data-extraction.html
any23/site/dev-microdata-extractor.html
any23/site/dev-microformat-extractors.html
any23/site/dev-validation-fix.html
any23/site/dev-xpath-extractor.html
any23/site/developers.html
any23/site/distribution-management.html
any23/site/download.html
any23/site/extractors.html
any23/site/getting-started.html
any23/site/index.html
any23/site/install.html
any23/site/issue-management.html
any23/site/licenses.html
any23/site/mailing-lists.html
any23/site/modules.html
any23/site/plugin-basic-crawler.html
any23/site/plugin-html-scraper.html
any23/site/plugin-management.html
any23/site/plugin-office-scraper.html
any23/site/plugins.html
any23/site/poweredby.html
any23/site/project-info.html
any23/site/project-reports.html
any23/site/release-howto.html
any23/site/scm.html
any23/site/service.html
any23/site/summary.html
any23/site/supported-formats.html
any23/site/team.html
Modified: any23/site/acknowledgements.html
URL:
http://svn.apache.org/viewvc/any23/site/acknowledgements.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/acknowledgements.html (original)
+++ any23/site/acknowledgements.html Sun Jan 9 00:04:34 2022
@@ -63,6 +63,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/any23-plugins.html
URL:
http://svn.apache.org/viewvc/any23/site/any23-plugins.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/any23-plugins.html (original)
+++ any23/site/any23-plugins.html Sun Jan 9 00:04:34 2022
@@ -63,6 +63,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -87,10 +92,10 @@
<ul>
<li>adding its <i>JAR</i> to the <i>Apache Any23</i> <i>JVM classpath</i>;</li>
<li>adding its <i>JAR</i> to the CLASSPATH_PREFIX environment variable as:
-<div class="source"><pre class="prettyprint">export
CLASSPATH_PREFIX=../../../plugins/basic-crawler/target/any23-basic-crawler-VERSION.jar</pre></div></li>
+<div class="source"><pre class="prettyprint linenums">export
CLASSPATH_PREFIX=../../../plugins/basic-crawler/target/any23-basic-crawler-VERSION.jar</pre></div></li>
<li>adding its <i>JAR</i> to the <i>$HOME/.any23/plugins</i> directory.
<p>A plugin can be added to the <i>Apache Any23 library API</i> by first
creating a static instance of <a
href="./apidocs/org/apache/any23/plugin/Any23PluginManager.html">Any23PluginManager</a>#getInstance().
Once this is done there is a variety of options to configure and register a
plugins, etc. An example of dynamic plugin loading can be seen via the way that
the OpenIE toggling is implemented within the Any23 Webservice e.g.</p>
-<div class="source"><pre class="prettyprint">if (openie) {
+<div class="source"><pre class="prettyprint linenums">if (openie) {
Any23PluginManager pManager = Any23PluginManager.getInstance();
//Dynamically adding Jar's to the Classpath via the following logic
//is absolutely dependant on the 'apache-any23-openie' directory being
@@ -113,14 +118,14 @@
<p>Any detected implementation of <i>Tool</i> will be listed by the
<i>ToolRunner</i> command-line tool in <i>any23-root/</i><b>cli/bin/any23</b>
.</p></li></ul></section><section>
<h3><a name="How_to_Build_a_Plugin"></a>How to Build a Plugin</h3>
<p><i>Apache Any23</i> takes care to <i>test</i> and <i>package</i> plugins
when distributed from its reactor <i>POM</i>. It is aways possible to rebuild a
plugin using the command:</p>
-<div class="source"><pre class="prettyprint"><plugin-dir>$ mvn clean
assembly:assembly</pre></div></section><section>
+<div class="source"><pre class="prettyprint linenums"><plugin-dir>$ mvn
clean assembly:assembly</pre></div></section><section>
<h3><a name="How_to_Write_an_Extractor_Plugin"></a>How to Write an Extractor
Plugin</h3>
<p>An <i>Extractor Plugin</i> is a class:</p>
<ul>
<li>implementing one of the <a
href="./apidocs/index.html?org/apache/any23/extractor/Extractor.html">Extractor</a>
subinterfaces;</li>
<li>packaged under <b>org.apache.any23.plugin</b> .
<p>An example of plugin is defined below.</p>
-<div class="source"><pre class="prettyprint">@Author(name="Michele
Mostarda ([email protected])")
+<div class="source"><pre class="prettyprint
linenums">@Author(name="Michele Mostarda ([email protected])")
public class HTMLScraperExtractor implements Extractor.ContentExtractor {
private static final Logger logger =
LoggerFactory.getLogger(HTMLScraperPlugin.class);
@@ -153,7 +158,7 @@ public class HTMLScraperExtractor implem
<li>CLI parameters are extracted by annotating the class members with <a
class="externalLink" href="http://jcommander.org/">JCommander</a>
annotations.</li>
<li>have to be found using the <a class="externalLink"
href="https://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html">ServiceLoader</a>
(we usually plug the Kohsuke's <a class="externalLink"
href="http://weblogs.java.net/blog/kohsuke/archive/2009/03/my_project_of_t.html">generator</a>)
<p>An example of plugin is defined below.</p>
-<div class="source"><pre class="prettyprint">@Parameters(commandNames = {
"myexec" }, commandDescription = "Prints out XXX used by
Any23.")
+<div class="source"><pre class="prettyprint linenums">@Parameters(commandNames
= { "myexec" }, commandDescription = "Prints out XXX used by
Any23.")
public class MyExecutableTool implements Tool {
@Parameter(names = { "-u", "--urls" }, description =
"URLs to process")
Modified: any23/site/apidocs/member-search-index.zip
URL:
http://svn.apache.org/viewvc/any23/site/apidocs/member-search-index.zip?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
Binary files - no diff available.
Modified: any23/site/apidocs/overview-summary.html
URL:
http://svn.apache.org/viewvc/any23/site/apidocs/overview-summary.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/apidocs/overview-summary.html (original)
+++ any23/site/apidocs/overview-summary.html Sun Jan 9 00:04:34 2022
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
-<!-- Generated by javadoc (11.0.10) on Sat Jan 08 14:43:29 PST 2022 -->
+<!-- Generated by javadoc (11.0.10) on Sat Jan 08 16:00:13 PST 2022 -->
<title>Apache Any23 2.7-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Modified: any23/site/apidocs/package-search-index.zip
URL:
http://svn.apache.org/viewvc/any23/site/apidocs/package-search-index.zip?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
Binary files - no diff available.
Modified: any23/site/apidocs/type-search-index.zip
URL:
http://svn.apache.org/viewvc/any23/site/apidocs/type-search-index.zip?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
Binary files - no diff available.
Modified: any23/site/build-src.html
URL:
http://svn.apache.org/viewvc/any23/site/build-src.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/build-src.html (original)
+++ any23/site/build-src.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -89,20 +94,20 @@
<p>This page describes how to build <b>Apache Any23</b>.</p><section>
<h3><a name="Access_a_Snapshot_Version"></a>Access a Snapshot Version</h3>
<p>For the latest snapshot please checkout the code from the public Git
repository and build the library. Checkout the code from Github:</p>
-<div class="source"><pre class="prettyprint">$ git clone
https://github.com/apache/any23.git</pre></div></section><section>
+<div class="source"><pre class="prettyprint linenums">$ git clone
https://github.com/apache/any23.git</pre></div></section><section>
<h3><a name="Build_Apache_Any23"></a>Build <b>Apache Any23</b></h3>
<p>The following instructions describe how to build the library with <a
class="externalLink" href="http://maven.apache.org/">Maven 3.x.y+</a>. For
specific information about Maven see: <a class="externalLink"
href="http://maven.apache.org/"></a> Go to the any23 folder:</p>
-<div class="source"><pre class="prettyprint">$ cd any23/</pre></div>
+<div class="source"><pre class="prettyprint linenums">$ cd any23/</pre></div>
<p>and execute the following command:</p>
-<div class="source"><pre class="prettyprint">any23$ mvn clean
install</pre></div>
+<div class="source"><pre class="prettyprint linenums">any23$ mvn clean
install</pre></div>
<p>This will install the <b>Apache Any23</b> artifact and its dependencies in
your local M2 repository.</p></section><section>
<h3><a name="Generate_Documentation"></a>Generate Documentation</h3>
<p>To generate the project site locally execute the following command from the
any23 dir:</p>
-<div class="source"><pre class="prettyprint">any23$ MAVEN_OPTS='-Xmx1024m' mvn
clean site</pre></div>
+<div class="source"><pre class="prettyprint linenums">any23$
MAVEN_OPTS='-Xmx1024m' mvn clean site</pre></div>
<p>You can speed up the site generation process specifying the offline option
( -o ), but it works only if all the involved plugin dependencies has been
already downloaded in the local M2 repository:</p>
-<div class="source"><pre class="prettyprint">any23$ MAVEN_OPTS='-Xmx1024m' mvn
-o clean site</pre></div>
+<div class="source"><pre class="prettyprint linenums">any23$
MAVEN_OPTS='-Xmx1024m' mvn -o clean site</pre></div>
<p>If you're interested in generating the Javadoc enriched with navigable UML
graphs, you can activate the umlgraphdoc profile. This profile relies on <a
class="externalLink" href="http://www.graphviz.org/">Graphviz</a> that must be
installed in your system.</p>
-<div class="source"><pre class="prettyprint">any23$ MAVEN_OPTS='-Xmx256m' mvn
-P umlgraphdoc clean site</pre></div></section></section>
+<div class="source"><pre class="prettyprint linenums">any23$
MAVEN_OPTS='-Xmx256m' mvn -P umlgraphdoc clean
site</pre></div></section></section>
</main>
</div>
</div>
Modified: any23/site/checkstyle-aggregate.html
URL:
http://svn.apache.org/viewvc/any23/site/checkstyle-aggregate.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/checkstyle-aggregate.html (original)
+++ any23/site/checkstyle-aggregate.html Sun Jan 9 00:04:34 2022
@@ -66,6 +66,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/ci-management.html
URL:
http://svn.apache.org/viewvc/any23/site/ci-management.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/ci-management.html (original)
+++ any23/site/ci-management.html Sun Jan 9 00:04:34 2022
@@ -79,6 +79,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -94,9 +99,18 @@
<p>This project uses <a class="externalLink"
href="https://www.jenkins.io/">Jenkins</a>.</p></section><section>
<h2><a name="Access"></a>Access</h2><a name="Access"></a>
<p>The following is a link to the continuous integration system used by the
project:</p>
-<div class="source"><pre class="prettyprint"><a class="externalLink"
href="https://ci-builds.apache.org/job/Any23/">https://ci-builds.apache.org/job/Any23/</a></pre></div></section><section>
+<div class="source"><pre class="prettyprint linenums"><a class="externalLink"
href="https://ci-builds.apache.org/job/Any23/">https://ci-builds.apache.org/job/Any23/</a></pre></div></section><section>
<h2><a name="Notifiers"></a>Notifiers</h2><a name="Notifiers"></a>
-<p>No notifiers are defined. Please check back at a later date.</p></section>
+<p>Configuration for notifying developers/users when a build is unsuccessful,
including user information and notification mode.</p>
+<table border="0" class="table table-striped">
+<tr class="a">
+<th>Type</th>
+<th>Address</th>
+<th>Configuration</th></tr>
+<tr class="b">
+<td>mail</td>
+<td>-</td>
+<td>[email protected]</td></tr></table></section>
</main>
</div>
</div>
Modified: any23/site/configuration.html
URL:
http://svn.apache.org/viewvc/any23/site/configuration.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/configuration.html (original)
+++ any23/site/configuration.html Sun Jan 9 00:04:34 2022
@@ -63,6 +63,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -81,22 +86,22 @@
<h4><a name="Override_Default_Configuration_from_Command-line"></a>Override
Default Configuration from Command-line</h4>
<p>The default configuration can be overriden via command-line by passing to
the <b>java</b> command system properties with the same name of the ones
declared in configuration.</p>
<p>For example to override the <b>HTTP Max Client Connections</b> parameter it
is sufficient to add the following option to the <b>java</b> command-line
invocation:</p>
-<div class="source"><pre
class="prettyprint">-Dany23.http.client.max.connections=10</pre></div>
+<div class="source"><pre class="prettyprint
linenums">-Dany23.http.client.max.connections=10</pre></div>
<p>any23 and any23server scripts accept the variable <b>ANY23_OPTS</b> to
specify custom options. It is possible to customize the <b>HTTP Max Client
Connections</b> for the <b>any23</b> script simply using:</p>
-<div class="source"><pre class="prettyprint">cli/target/appassembler/bin/$
ANY23_OPTS="-Dany23.http.client.max.connections=10" any23
http://path/to/resource</pre></div></section><section>
+<div class="source"><pre class="prettyprint
linenums">cli/target/appassembler/bin/$
ANY23_OPTS="-Dany23.http.client.max.connections=10" any23
http://path/to/resource</pre></div></section><section>
<h4><a name="Override_Default_Configuration_Programmatically"></a>Override
Default Configuration Programmatically</h4>
<p>The <a href="./apidocs/org/apache/any23/configuration/Configuration.html">
Configuration</a> properties can be accessed in read-only mode just retrieving
the configuration <b>singleton</b> instance.<br />Such instance is
<i>immutable</i>:</p>
-<div class="source"><pre class="prettyprint">final Configuration immutableConf
= DefaultConfiguration.singleton();
+<div class="source"><pre class="prettyprint linenums">final Configuration
immutableConf = DefaultConfiguration.singleton();
final String propertyValue =
immutableConf.getProperty("propertyName", "default value");
...</pre></div>
<p>To obtain a <i>modifiable</i> <a
href="./apidocs/org/apache/any23/configuration/Configuration.html">
Configuration</a> instead it is possible to use the <b>copy()</b> method.<br
/>One of the <b>Apache Any23</b> constructors accepts a <b>Configuration</b>
object that allows to customize the behavior of the <b>Apache Any23</b>
instance for its entire life-cycle.</p>
-<div class="source"><pre class="prettyprint">final ModifiableConfiguration
modifiableConf = DefaultConfiguration.copy();
+<div class="source"><pre class="prettyprint linenums">final
ModifiableConfiguration modifiableConf = DefaultConfiguration.copy();
final String oldPropertyValue =
modifiableConf.setProperty("propertyName", "new property
value");
final Apache Any23 any23 = new Apache Any23(modifiableConf,
"extractor1", ...);
...</pre></div></section></section><section>
<h3><a name="Use_of_ExtractionParameters"></a>Use of ExtractionParameters</h3>
<p>It is possible to customize the behavior of a single data extraction by
providing an <a
href="./apidocs/org/apache/any23/extractor/ExtractionParameters.html">
ExtractionParameters</a> instance to one the <i>Apache Any23#extract()</i>
methods accepting it. <b>ExtractionParameters</b> allows to customize any
<i>property</i> and <i>flag</i> other then the <b>specific extraction
options</b>.<br />If no custom parameters are specified the default
configuration values are used.</p>
-<div class="source"><pre class="prettyprint">final Any23 any23 = ...
+<div class="source"><pre class="prettyprint linenums">final Any23 any23 = ...
final TripleHandler tripleHandler = ...
final ExtractionParameters extractionParameters =
ExtractionParameters.getDefault();
extractionParameters.setFlag("any23.microdata.strict", true);
Added: any23/site/css/apache-maven-fluido-1.10.0.min.css
URL:
http://svn.apache.org/viewvc/any23/site/css/apache-maven-fluido-1.10.0.min.css?rev=1896851&view=auto
==============================================================================
--- any23/site/css/apache-maven-fluido-1.10.0.min.css (added)
+++ any23/site/css/apache-maven-fluido-1.10.0.min.css Sun Jan 9 00:04:34 2022
@@ -0,0 +1,17 @@
+/*!
+ * Bootstrap v2.3.2
+ *
+ * Copyright 2013 Twitter, Inc
+ * Licensed under the Apache License v2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Designed and built with all the love in the world by @mdo and @fat.
[... 11 lines stripped ...]
Modified: any23/site/dependency-convergence.html
URL:
http://svn.apache.org/viewvc/any23/site/dependency-convergence.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dependency-convergence.html (original)
+++ any23/site/dependency-convergence.html Sun Jan 9 00:04:34 2022
@@ -79,6 +79,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/dependency-info.html
URL:
http://svn.apache.org/viewvc/any23/site/dependency-info.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dependency-info.html (original)
+++ any23/site/dependency-info.html Sun Jan 9 00:04:34 2022
@@ -79,6 +79,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -92,28 +97,28 @@
<section>
<h2><a name="Dependency_Information"></a>Dependency Information</h2><a
name="Dependency_Information"></a><section>
<h3><a name="Apache_Maven"></a>Apache Maven</h3><a name="Apache_Maven"></a>
-<div class="source"><pre class="prettyprint"><dependency>
+<div class="source"><pre class="prettyprint linenums"><dependency>
<groupId>org.apache.any23</groupId>
<artifactId>apache-any23</artifactId>
<version>2.7-SNAPSHOT</version>
<type>pom</type>
</dependency></pre></div></section><section>
<h3><a name="Apache_Buildr"></a>Apache Buildr</h3><a name="Apache_Buildr"></a>
-<div class="source"><pre
class="prettyprint">'org.apache.any23:apache-any23:pom:2.7-SNAPSHOT'</pre></div></section><section>
+<div class="source"><pre class="prettyprint
linenums">'org.apache.any23:apache-any23:pom:2.7-SNAPSHOT'</pre></div></section><section>
<h3><a name="Apache_Ivy"></a>Apache Ivy</h3><a name="Apache_Ivy"></a>
-<div class="source"><pre class="prettyprint"><dependency
org="org.apache.any23" name="apache-any23"
rev="2.7-SNAPSHOT">
+<div class="source"><pre class="prettyprint linenums"><dependency
org="org.apache.any23" name="apache-any23"
rev="2.7-SNAPSHOT">
<artifact name="apache-any23" type="pom" />
</dependency></pre></div></section><section>
<h3><a name="Groovy_Grape"></a>Groovy Grape</h3><a name="Groovy_Grape"></a>
-<div class="source"><pre class="prettyprint">@Grapes(
+<div class="source"><pre class="prettyprint linenums">@Grapes(
@Grab(group='org.apache.any23', module='apache-any23', version='2.7-SNAPSHOT')
)</pre></div></section><section>
<h3><a name="Gradle.2FGrails"></a>Gradle/Grails</h3><a
name="Gradle.2FGrails"></a>
-<div class="source"><pre class="prettyprint">compile
'org.apache.any23:apache-any23:2.7-SNAPSHOT'</pre></div></section><section>
+<div class="source"><pre class="prettyprint linenums">compile
'org.apache.any23:apache-any23:2.7-SNAPSHOT'</pre></div></section><section>
<h3><a name="Scala_SBT"></a>Scala SBT</h3><a name="Scala_SBT"></a>
-<div class="source"><pre class="prettyprint">libraryDependencies +=
"org.apache.any23" % "apache-any23" %
"2.7-SNAPSHOT"</pre></div></section><section>
+<div class="source"><pre class="prettyprint linenums">libraryDependencies +=
"org.apache.any23" % "apache-any23" %
"2.7-SNAPSHOT"</pre></div></section><section>
<h3><a name="Leiningen"></a>Leiningen</h3><a name="Leiningen"></a>
-<div class="source"><pre class="prettyprint">[org.apache.any23/apache-any23
"2.7-SNAPSHOT"]</pre></div></section></section>
+<div class="source"><pre class="prettyprint
linenums">[org.apache.any23/apache-any23
"2.7-SNAPSHOT"]</pre></div></section></section>
</main>
</div>
</div>
Modified: any23/site/dependency-management.html
URL:
http://svn.apache.org/viewvc/any23/site/dependency-management.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dependency-management.html (original)
+++ any23/site/dependency-management.html Sun Jan 9 00:04:34 2022
@@ -79,6 +79,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/dev-csv-extractor.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-csv-extractor.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-csv-extractor.html (original)
+++ any23/site/dev-csv-extractor.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -104,11 +109,11 @@
<li>write statement, <url/row/<index>> <i>propUri</i> <i>cell</i>
where: <i>cell</i> could be an IRI if the cell value is an IRI, or a typed
literal according the value of the CSV actual value
<i>cell</i>.</li></ul></li></ul></li>
<li>add RDF statements claiming number of rows and columns.</li></ul>
<p>For example, given this trivial CSV with an header and just two rows:</p>
-<div class="source"><pre class="prettyprint">first name; last name;
http://xmlns.com/foaf/0.1/knows; age
+<div class="source"><pre class="prettyprint linenums">first name; last name;
http://xmlns.com/foaf/0.1/knows; age
Davide; Palmisano; http://michelemostarda.com; 30; value should not appear
Michele; Mostarda; http://g1o.net;</pre></div>
<p>the following RDF (serialized in RDF/XML) is produced:</p>
-<div class="source"><pre class="prettyprint"><rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+<div class="source"><pre class="prettyprint linenums"><rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description
rdf:about="http://bob.example.com/firstName">
<label xmlns="http://www.w3.org/2000/01/rdf-schema#">first
name</label>
Modified: any23/site/dev-data-conversion.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-data-conversion.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-data-conversion.html (original)
+++ any23/site/dev-data-conversion.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -86,7 +91,7 @@
<main id="bodyColumn" class="span10" >
<section>
<h2><a name="Data_Conversion"></a>Data Conversion</h2>
-<div class="source"><pre class="prettyprint">/*1*/ Any23 runner = new Any23();
+<div class="source"><pre class="prettyprint linenums">/*1*/ Any23 runner = new
Any23();
/*2*/ final String content = "@prefix foo: <http://example.org/ns#>
. " +
"@prefix :
<http://other.example.org/ns#> ." +
"foo:bar foo: : .
" +
@@ -110,7 +115,7 @@
<p>The extractor method invoked at <b>line 6</b> performs the metadata
extraction. This method accepts as first argument a <a
href="./apidocs/org/apache/any23/source/DocumentSource.html">DocumentSource</a>
and as second argument a <a
href="./apidocs/org/apache/any23/writer/TripleHandler.html">TripleHandler</a>,
that will receive the sequence parsing events generated by the applied
extractors. The extract method defines also another signature where it is
possible to specify a charset encoding for the input data. If <b>null</b>, the
charset will be auto detected.</p>
<p>The <a
href="./apidocs/org/apache/any23/writer/TripleHandler.html">TripleHandler</a>
needs to be explicitly closed, this is done safely in a <b>finally</b> block at
<b>line 7</b>.</p>
<p>The expected output is <i>UTF-8</i> encoded at <b>line 8</b>:</p>
-<div class="source"><pre class="prettyprint"><http://example.org/ns#bar>
<http://example.org/ns#> <http://other.example.org/ns#> .
+<div class="source"><pre class="prettyprint
linenums"><http://example.org/ns#bar> <http://example.org/ns#>
<http://other.example.org/ns#> .
<http://other.example.org/ns#bar> <http://other.example.org/ns#>
<http://example.org/ns#bar> .</pre></div></section>
</main>
</div>
Modified: any23/site/dev-data-extraction.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-data-extraction.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-data-extraction.html (original)
+++ any23/site/dev-data-extraction.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -86,7 +91,7 @@
<main id="bodyColumn" class="span10" >
<section>
<h2><a name="Data_Extraction"></a>Data Extraction</h2>
-<div class="source"><pre class="prettyprint">/*1*/ Any23 runner = new Any23();
+<div class="source"><pre class="prettyprint linenums">/*1*/ Any23 runner = new
Any23();
/*2*/ runner.setHTTPUserAgent("test-user-agent");
/*3*/ HTTPClient httpClient = runner.getHTTPClient();
/*4*/ DocumentSource source = new HTTPDocumentSource(
@@ -108,7 +113,7 @@
<p>The extraction method at <b>line 7</b> will run the metadata extraction.
The produced metadata will be written within the passed <a
href="./apidocs/org/apache/any23/writer/TripleHandler.html">TripleHandler</a>
instance.</p>
<p>The <a
href="./apidocs/org/apache/any23/writer/TripleHandler.html">TripleHandler</a>
needs to be explicitly closed, this is done safely in a <b>finally</b> block at
<b>line 8</b>.</p>
<p>The expected output is <i>UTF-8</i> encoded at <b>line 9</b> and is:</p>
-<div class="source"><pre
class="prettyprint"><http://www.rentalinrome.com/semanticloft/semanticloft.htm>
<http://purl.org/dc/terms/title>
+<div class="source"><pre class="prettyprint
linenums"><http://www.rentalinrome.com/semanticloft/semanticloft.htm>
<http://purl.org/dc/terms/title>
"Semantic Loft (beta) - Trastevere apartments | Rental in Rome -
rentalinrome.com" .
<http://www.rentalinrome.com/semanticloft/semanticloft.htm#semanticloft>
@@ -136,7 +141,7 @@ _:node14r93a8dex1 .
<p>To remove accidental triples <b>Apache Any23</b> provides a set of useful
filters, located within the <b>org.apache.any23.filter</b> package.</p>
<p>The filter <a
href="./apidocs/org/apache/any23/filter/IgnoreTitlesOfEmptyDocuments.html">IgnoreTitlesOfEmptyDocuments</a>
removes triples generated by the <a
href="./apidocs/org/apache/any23/extractor/html/TitleExtractor.html">TitleExtractor</a>
whether the document is empty.</p>
<p>The filter <a
href="./apidocs/org/apache/any23/filter/IgnoreAccidentalRDFa.html">IgnoreAccidentalRDFa</a>
removes accidental <b>CSS</b> related triples.</p>
-<div class="source"><pre class="prettyprint">RDFWriter rdfWriter = ...
+<div class="source"><pre class="prettyprint linenums">RDFWriter rdfWriter = ...
TripleHandler rdfWriterHandler = RDFWriterTripleHandler(rdfWriter);
TripleHandler tripleHandler = new ReportingTripleHandler(
new IgnoreAccidentalRDFa(
Modified: any23/site/dev-microdata-extractor.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-microdata-extractor.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-microdata-extractor.html (original)
+++ any23/site/dev-microdata-extractor.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/dev-microformat-extractors.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-microformat-extractors.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-microformat-extractors.html (original)
+++ any23/site/dev-microformat-extractors.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -94,7 +99,7 @@
<li>Embedding explicitly the logic within the <a
href="./apidocs/org/apache/any23/extractor/html/package-summary.html">Microformats
Extractors</a></li>
<li>Using the default <b>Apache Any23</b> nesting feature.</li></ul>
<p>In the first case, the logic for representing the nested values, is
directly embedded in the upper-level Extractor. For example, the following HTML
fragment shows an hCard that contains an hAddress Microformat.</p>
-<div class="source"><pre class="prettyprint"><span
class="vcard">
+<div class="source"><pre class="prettyprint linenums"><span
class="vcard">
<span class="fn">L'Amourita Pizza</span>
Located at
<span class="adr">
@@ -105,7 +110,7 @@
<a href="http://pizza.example.com"
class="url">http://pizza.example.com</a>
</span></pre></div>
<p>Since, as shown below, the <a
href="./apidocs/org/apache/any23/extractor/html/HCardExtractor.html">HCardExtractor</a>
contains the code to handle nested hAddress,</p>
-<div class="source"><pre class="prettyprint">
+<div class="source"><pre class="prettyprint linenums">
foundSomething |= addSubMicroformat("adr", card, VCARD.adr);
...
@@ -124,7 +129,7 @@ private boolean addSubMicroformat(String
}
</pre></div>
<p>it explicitly produces the triples claiming the native nesting
relationship:</p>
-<div class="source"><pre class="prettyprint"><rdf:Description
rdf:nodeID="nodee2296b803cbf5c7953614ce9998c4083">
+<div class="source"><pre class="prettyprint linenums"><rdf:Description
rdf:nodeID="nodee2296b803cbf5c7953614ce9998c4083">
<vcard:url rdf:resource="http://pizza.example.com"/>
<vcard:adr
rdf:nodeID="nodea8badeafb65268ab3269455dd5377a5e"/>
<rdf:type
rdf:resource="http://www.w3.org/2006/vcard/ns#VCard"/>
@@ -137,14 +142,14 @@ private boolean addSubMicroformat(String
</rdf:Description></pre></div>
<p>It is higly recommended to decorate the extractors who natively handle the
nesting relatioship using the <a
href="./apidocs/org/apache/any23/extractor/html/annotations/Includes.html">@Includes</a>
annotation. This annotation, if present, avoid the production of
<i>nesting_original</i> and <i>nesting_structured</i> RDF statements.</p>
<p>The following example shows how the <a
href="./apidocs/org/apache/any23/extractor/html/annotations/Includes.html">@Includes</a>
annotation could be used to claim the fact that <a
href="./apidocs/org/apache/any23/extractor/html/HCardExtractor.html">HCardExtractor</a>
natively embedds the <a
href="./apidocs/org/apache/any23/extractor/html/AdrExtractor.html">AdrExtractor</a>.</p>
-<div class="source"><pre class="prettyprint">@Includes( extractors =
AdrExtractor.class )
+<div class="source"><pre class="prettyprint linenums">@Includes( extractors =
AdrExtractor.class )
public class HCardExtractor extends EntityBasedMicroformatExtractor {
// code omitted for brevity
}</pre></div>
<p>Instead, the second manner is to leave to <b>Apache Any23</b> the
responsibility of identifying nested Microformats and produce a set of
descriptive RDF triples. More specifically, the following HTML fragment,
provided as a reference example on the <a class="externalLink"
href="http://www.google.com/support/webmasters/bin/answer.py?answer=146862">Google
Webmaster tools blog</a>, shows a vEvent Microformat with a nested vCard.</p>
-<div class="source"><pre class="prettyprint"><p class="schedule
vevent">
+<div class="source"><pre class="prettyprint linenums"><p
class="schedule vevent">
<span class="summary">
<span style="font-weight:bold; color: #3E4876;">
This event is organized by
@@ -157,7 +162,7 @@ public class HCardExtractor extends Enti
</span>
</p></pre></div>
<p>Due to the fact that the <b>Apache Any23</b> provided extractors don't
explicitly foresee the possibility of nesting such two Microformats, it
automatically identifies the nesting relationship and represents it with the
following triples:</p>
-<div class="source"><pre class="prettyprint"><rdf:Description
rdf:nodeID="node755b2b367973b6854ec68c77bec9b3">
+<div class="source"><pre class="prettyprint linenums"><rdf:Description
rdf:nodeID="node755b2b367973b6854ec68c77bec9b3">
<nesting_original xmlns="http://vocab.sindice.net/"
rdf:resource="http://www.w3.org/2002/12/cal/icaltzd#summary"/>
<nesting_structured xmlns="http://vocab.sindice.net/"
rdf:nodeID="node985d8f2b9afb02eeddf2e72b5eeb74"/>
</rdf:Description>
Modified: any23/site/dev-validation-fix.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-validation-fix.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-validation-fix.html (original)
+++ any23/site/dev-validation-fix.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -96,15 +101,15 @@
<p>Fix Missing Prefix Mappings Declaration</p>
<p>Sometimes, web authors forget to declare prefix mappings. For example, you
can't just use something like dcterms:title without first declaring the dcterms
prefix mapping. If a prefix mapping isn't declared, the RDFa parser won't
understand the prefix when it is used in your document. This may lead <b>Apache
Any23</b> to don't extract such embedded RDF triples.</p>
<p>This:</p>
-<div class="source"><pre class="prettyprint"><div>
+<div class="source"><pre class="prettyprint linenums"><div>
The title of this document is <span
property="dcterms:title">Why RDFa is Awesome</span>.
</div></pre></div>
<p>Should be:</p>
-<div class="source"><pre class="prettyprint"><div
xmlns:dcterms="http://purl.org/dc/terms/">
+<div class="source"><pre class="prettyprint linenums"><div
xmlns:dcterms="http://purl.org/dc/terms/">
The title of this document is <span
property="dcterms:title">Why RDFa is Awesome</span>.
</div></pre></div>
<p>With the <b>Apache Any23</b> <a
href="./apidocs/org/apache/any23/validator/package-summary.html">Validator</a>
classes it's possible to solve this problem simply implementing the <a
href="./apidocs/org/apache/any23/validator/Rule.html">Rule</a> interface as
described below:</p>
-<div class="source"><pre class="prettyprint">public class
MissingOpenGraphNamespaceRule implements Rule {
+<div class="source"><pre class="prettyprint linenums">public class
MissingOpenGraphNamespaceRule implements Rule {
public String getHRName() {
return "missing-opengraph-namespace-rule";
@@ -136,7 +141,7 @@
}</pre></div>
<p>The <a
href="./apidocs/org/apache/any23/validator/rule/MissingOpenGraphNamespaceRule.html">MissingOpenGraphNamespaceRule</a>
inspects the DOM structure of the HTML page and if it finds some META tags
with some RDFa property (of the OpenGraph Protocol vocabulary, in this case) it
looks for the declaration of that name space. If there is no declaration it
return <b>true</b>, that means that an error has been detected within the
document.</p>
<p>Writing a fix for the Rule depicted above it's quite simple:</p>
-<div class="source"><pre class="prettyprint">public class
OpenGraphNamespaceFix implements Fix {
+<div class="source"><pre class="prettyprint linenums">public class
OpenGraphNamespaceFix implements Fix {
public static final String OPENGRAPH_PROTOCOL_NS =
"http://opengraphprotocol.org/schema/";
@@ -150,7 +155,7 @@
}</pre></div>
<p>At this point it's enough to register the Rule and the relative Fix to the
Validator:</p>
-<div class="source"><pre
class="prettyprint">validator.addRule(MissingOpenGraphNamespaceRule.class,
OpenGraphNamespaceFix.class);</pre></div>
+<div class="source"><pre class="prettyprint
linenums">validator.addRule(MissingOpenGraphNamespaceRule.class,
OpenGraphNamespaceFix.class);</pre></div>
<p>When the Rule precondition is matched, then the Fix is triggered modifying
the DOM structure.</p></section>
</main>
</div>
Modified: any23/site/dev-xpath-extractor.html
URL:
http://svn.apache.org/viewvc/any23/site/dev-xpath-extractor.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/dev-xpath-extractor.html (original)
+++ any23/site/dev-xpath-extractor.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/developers.html
URL:
http://svn.apache.org/viewvc/any23/site/developers.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/developers.html (original)
+++ any23/site/developers.html Sun Jan 9 00:04:34 2022
@@ -74,6 +74,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/distribution-management.html
URL:
http://svn.apache.org/viewvc/any23/site/distribution-management.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/distribution-management.html (original)
+++ any23/site/distribution-management.html Sun Jan 9 00:04:34 2022
@@ -79,6 +79,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
Modified: any23/site/download.html
URL:
http://svn.apache.org/viewvc/any23/site/download.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/download.html (original)
+++ any23/site/download.html Sun Jan 9 00:04:34 2022
@@ -71,6 +71,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -96,7 +101,7 @@
<p>In order to guard against corrupted downloads/installations, it is highly
recommended to <a class="externalLink"
href="https://www.apache.org/dev/release-signing#verifying-signature">verify
the signature</a> of the release bundles against the public <a
class="externalLink" href="https://apache.org/dist/any23/KEYS">KEYS</a> used by
the Apache Any23 developers.</p>
-<p>Apache Any23 is distributed under the <a class="externalLink"
href="https://any23.apache.org/license.html"> Apache License, version
2.0</a>.</p>
+<p>Apache Any23 is distributed under the <a class="externalLink"
href="https://any23.apache.org/license.html">Apache License, version
2.0</a>.</p>
<section>
@@ -110,6 +115,8 @@
    <version>2.6</version><br />
</dependency>
</code>
+
+<p>Also see <a href="./dependency-info.html">dependency information</a> for
defining Any23 as a dependency in other popular build systems.</p>
</section>
<section>
Modified: any23/site/extractors.html
URL:
http://svn.apache.org/viewvc/any23/site/extractors.html?rev=1896851&r1=1896850&r2=1896851&view=diff
==============================================================================
--- any23/site/extractors.html (original)
+++ any23/site/extractors.html Sun Jan 9 00:04:34 2022
@@ -63,6 +63,11 @@
</ul>
</nav>
<div class="well sidebar-nav">
+<form id="search-form" action="https://www.google.com/search" method="get" >
+ <input value="$sitesearchValue" name="sitesearch" type="hidden"/>
+ <input class="search-query" name="q" id="query" type="text" />
+</form>
+<script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
<hr />
<div id="poweredBy">
<div class="clear"></div>
@@ -112,7 +117,7 @@
<p><a href="./apidocs/org/apache/any23/extractor/csv/CSVExtractor.html">CSV
Extractor</a> (See the extraction <a
href="./dev-csv-extractor.html">algorithm</a>.)</p></section></section><section>
<h2><a name="Get_more_documentation"></a>Get more documentation</h2>
<p>It is possible to generate the list of all the available extractors
invoking the following command:</p>
-<div class="source"><pre class="prettyprint"><any23-core>/bin$
any23tools ExtractorDocumentation -list</pre></div></section>
+<div class="source"><pre class="prettyprint linenums"><any23-core>/bin$
any23tools ExtractorDocumentation -list</pre></div></section>
</main>
</div>
</div>
Added: any23/site/fonts/glyphicons-halflings-regular.eot
URL:
http://svn.apache.org/viewvc/any23/site/fonts/glyphicons-halflings-regular.eot?rev=1896851&view=auto
==============================================================================
Binary file - no diff available.
Propchange: any23/site/fonts/glyphicons-halflings-regular.eot
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream