Author: buildbot
Date: Fri Jul 26 08:48:01 2019
New Revision: 1048146
Log:
Staging update by buildbot for nutch
Removed:
websites/staging/nutch/trunk/content/about.html
Modified:
websites/staging/nutch/trunk/content/ (props changed)
websites/staging/nutch/trunk/content/assets/js/README.html
websites/staging/nutch/trunk/content/bot.html
websites/staging/nutch/trunk/content/index.html
websites/staging/nutch/trunk/content/javadoc.html
websites/staging/nutch/trunk/content/mailing_lists.html
websites/staging/nutch/trunk/content/version_control.html
Propchange: websites/staging/nutch/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Jul 26 08:48:01 2019
@@ -1 +1 @@
-1837933
+1863783
Modified: websites/staging/nutch/trunk/content/assets/js/README.html
==============================================================================
--- websites/staging/nutch/trunk/content/assets/js/README.html (original)
+++ websites/staging/nutch/trunk/content/assets/js/README.html Fri Jul 26
08:48:01 2019
@@ -410,10 +410,21 @@ under the License.
<div class="container" id="Nutch_">
- <h2 id="20-bootstrap-js-philosophy">2.0 BOOTSTRAP JS
PHILOSOPHY</h2>
+ <style type="text/css">
+/* The following code is added by mdx_elementid.py
+ It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+ visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
+<h2 id="20-bootstrap-js-philosophy">2.0 BOOTSTRAP JS PHILOSOPHY<a
class="headerlink" href="#20-bootstrap-js-philosophy" title="Permanent
link">¶</a></h2>
<p>These are the high-level design rules which guide the development of
Bootstrap's plugin apis.</p>
<hr />
-<h3 id="data-attribute-api">DATA-ATTRIBUTE API</h3>
+<h3 id="data-attribute-api">DATA-ATTRIBUTE API<a class="headerlink"
href="#data-attribute-api" title="Permanent link">¶</a></h3>
<p>We believe you should be able to use all plugins provided by Bootstrap
purely through the markup API without writing a single line of javascript.</p>
<p>We acknowledge that this isn't always the most performant and sometimes it
may be desirable to turn this functionality off altogether. Therefore, as of
2.0 we provide the ability to disable the data attribute API by unbinding all
events on the body namespaced with <code>'data-api'</code>. This looks like
this:</p>
<div class="codehilite"><pre>$<span class="p">(</span><span
class="s">'body'</span><span class="p">).</span><span
class="n">off</span><span class="p">(</span><span
class="s">'.data-api'</span><span class="p">)</span>
@@ -426,7 +437,7 @@ under the License.
<hr />
-<h3 id="programmatic-api">PROGRAMMATIC API</h3>
+<h3 id="programmatic-api">PROGRAMMATIC API<a class="headerlink"
href="#programmatic-api" title="Permanent link">¶</a></h3>
<p>We also believe you should be able to use all plugins provided by Bootstrap
purely through the JS API.</p>
<p>All public APIs should be single, chainable methods, and return the
collection acted upon.</p>
<div class="codehilite"><pre>$<span class="p">(</span>"<span
class="p">.</span><span class="n">btn</span><span class="p">.</span><span
class="n">danger</span>"<span class="p">).</span><span
class="n">button</span><span class="p">(</span>"<span
class="n">toggle</span>"<span class="p">).</span><span
class="n">addClass</span><span class="p">(</span>"<span
class="n">fat</span>"<span class="p">)</span>
@@ -441,7 +452,7 @@ $<span class="p">(</span>"#<span cl
<hr />
-<h3 id="options">OPTIONS</h3>
+<h3 id="options">OPTIONS<a class="headerlink" href="#options" title="Permanent
link">¶</a></h3>
<p>Options should be sparse and add universal value. We should pick the right
defaults.</p>
<p>All plugins should have a default object which can be modified to effect
all instance's default options. The defaults object should be available via
<code>$.fn.plugin.defaults</code>.</p>
<div class="codehilite"><pre>$<span class="p">.</span><span
class="n">fn</span><span class="p">.</span><span class="n">modal</span><span
class="p">.</span><span class="n">defaults</span> <span class="p">=</span>
<span class="p">{</span> ⦠<span class="p">}</span>
@@ -461,7 +472,7 @@ $<span class="p">(</span>"#<span cl
<hr />
-<h3 id="events">EVENTS</h3>
+<h3 id="events">EVENTS<a class="headerlink" href="#events" title="Permanent
link">¶</a></h3>
<p>All events should have an infinitive and past participle form. The
infinitive is fired just before an action takes place, the past participle on
completion of the action.</p>
<div class="codehilite"><pre><span class="n">show</span> <span
class="o">|</span> <span class="n">shown</span>
<span class="n">hide</span> <span class="o">|</span> <span
class="n">hidden</span>
@@ -469,21 +480,21 @@ $<span class="p">(</span>"#<span cl
<hr />
-<h3 id="constructors">CONSTRUCTORS</h3>
+<h3 id="constructors">CONSTRUCTORS<a class="headerlink" href="#constructors"
title="Permanent link">¶</a></h3>
<p>Each plugin should expose it's raw constructor on a
<code>Constructor</code> property -- accessed in the following way:</p>
<div class="codehilite"><pre>$<span class="p">.</span><span
class="n">fn</span><span class="p">.</span><span class="n">popover</span><span
class="p">.</span><span class="n">Constructor</span>
</pre></div>
<hr />
-<h3 id="data-accessor">DATA ACCESSOR</h3>
+<h3 id="data-accessor">DATA ACCESSOR<a class="headerlink"
href="#data-accessor" title="Permanent link">¶</a></h3>
<p>Each plugin stores a copy of the invoked class on an object. This class
instance can be accessed directly through jQuery's data API like this:</p>
<div class="codehilite"><pre>$<span class="p">(</span><span
class="s">'[rel=popover]'</span><span class="p">).</span><span
class="n">data</span><span class="p">(</span><span
class="s">'popover'</span><span class="p">)</span> <span
class="n">instanceof</span> $<span class="p">.</span><span
class="n">fn</span><span class="p">.</span><span class="n">popover</span><span
class="p">.</span><span class="n">Constructor</span>
</pre></div>
<hr />
-<h3 id="data-attributes">DATA ATTRIBUTES</h3>
+<h3 id="data-attributes">DATA ATTRIBUTES<a class="headerlink"
href="#data-attributes" title="Permanent link">¶</a></h3>
<p>Data attributes should take the following form:</p>
<ul>
<li>data-{{verb}}={{plugin}} - defines main interaction</li>
Modified: websites/staging/nutch/trunk/content/bot.html
==============================================================================
--- websites/staging/nutch/trunk/content/bot.html (original)
+++ websites/staging/nutch/trunk/content/bot.html Fri Jul 26 08:48:01 2019
@@ -410,7 +410,18 @@ under the License.
<div class="container" id="Nutch_">
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
+ <style type="text/css">
+/* The following code is added by mdx_elementid.py
+ It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+ visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
@@ -420,16 +431,14 @@ to you under the Apache License, Version
"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,
+<p>http://www.apache.org/licenses/LICENSE-2.0</p>
+<p>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.
--->
-
+--></p>
<!-- Subhead
================================================== -->
Modified: websites/staging/nutch/trunk/content/index.html
==============================================================================
--- websites/staging/nutch/trunk/content/index.html (original)
+++ websites/staging/nutch/trunk/content/index.html Fri Jul 26 08:48:01 2019
@@ -450,7 +450,7 @@ under the License.
<div class="carousel-caption">
<h1>Highly extensible, highly scalable Web crawler</h1>
<p class="lead">Nutch is a well matured, production ready Web crawler.
Nutch 1.x enables
- fine grained configuration, relying on <a
href="http://hadoop.apache.org">Apache Hadoop™</a>
+ fine grained configuration, relying on <a
href="https://hadoop.apache.org/">Apache Hadoop™</a>
data structures, which are great for batch processing.</p>
<a class="btn btn-large btn-primary" href="downloads.html">Download</a>
</div>
@@ -463,10 +463,10 @@ under the License.
<h1>Pluggable parsing, protocols, storage and indexing</h1>
<p class="lead">Being pluggable and modular of course has it's benefits,
Nutch provides extensible interfaces such as Parse, Index and
ScoringFilter's for custom
- implementations e.g. <a href="http://tika.apache.org">Apache
Tika™</a> for parsing.
- Additonally, pluggable indexing exists for <a
href="http://lucene.apache.org/solr">Apache Solr™</a>,
- <a href="http://www.elasticsearch.org/">Elastic Search</a>, <a
href="https://cwiki.apache.org/confluence/display/solr/SolrCloud">SolrCloud</a>,
etc.</p>
- <a class="btn btn-large btn-primary"
href="http://wiki.apache.org/nutch/">Learn About</a>
+ implementations e.g. <a href="https://tika.apache.org/">Apache
Tika™</a> for parsing.
+ Additonally, pluggable indexing exists for <a
href="https://lucene.apache.org/solr">Apache Solr™</a>,
+ <a href="https://www.elastic.co/">Elastic Search</a>, <a
href="https://cwiki.apache.org/confluence/display/solr/SolrCloud">SolrCloud</a>,
etc.</p>
+ <a class="btn btn-large btn-primary"
href="https://cwiki.apache.org/confluence/display/NUTCH/Home">Learn About</a>
</div>
</div>
</div>
@@ -478,7 +478,7 @@ under the License.
<p class="lead">Nutch 2.X branch is becoming an emerging alternative
taking direct inspiration from 1.X. 2.X differs in one key area;
storage is abstracted away from any specific underlying data store by
using
- <a href="http://gora.apache.org">Apache Gora™</a> for handling
object to persistent
+ <a href="https://gora.apache.org/">Apache Gora™</a> for handling
object to persistent
data store mappings.</p>
<a class="btn btn-large btn-primary" href="mailing_lists.html">Join the
Community</a>
</div>
@@ -527,46 +527,48 @@ under the License.
</div>
</div--></p>
<h1 id="apache-nutch-news">Apache Nutch News<a class="headerlink"
href="#apache-nutch-news" title="Permanent link">¶</a></h1>
+<h2 id="26-july-2019-nutch-wiki-migrated">26 July 2019 - Nutch Wiki Migrated<a
class="headerlink" href="#26-july-2019-nutch-wiki-migrated" title="Permanent
link">¶</a></h2>
+<p>The <a href="https://cwiki.apache.org/confluence/display/NUTCH/Home">Apache
Nutch wiki</a> has been migrated from MoinMoin to Confluence. </p>
<h2 id="9-august-2018-nutch-115-release">9 August 2018 - Nutch 1.15 Release<a
class="headerlink" href="#9-august-2018-nutch-115-release" title="Permanent
link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.15, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>An account of the CHANGES in this release can be seen in the
<a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10680&version=12342302">release
report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="23-december-2017-nutch-114-release">23 December 2017 - Nutch 1.14
Release<a class="headerlink" href="#23-december-2017-nutch-114-release"
title="Permanent link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.14, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>An account of the CHANGES in this release can be seen in the
<a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10680&version=12340218">release
report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="02-april-2017-nutch-113-release">02 April 2017 - Nutch 1.13 Release<a
class="headerlink" href="#02-april-2017-nutch-113-release" title="Permanent
link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.13, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>An account of the CHANGES in this release can be seen in the
<a href="https://s.apache.org/wq3x">release report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="18-june-2016-nutch-112-release">18 June 2016 - Nutch 1.12 Release<a
class="headerlink" href="#18-june-2016-nutch-112-release" title="Permanent
link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.12, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>This release is the result of many months of work and over 40 issues
addressed. For a complete overview of these issues please see the
<a href="https://s.apache.org/nutch1.12">release report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="21-january-2016-nutch-231-release">21 January 2016 - Nutch 2.3.1
Release<a class="headerlink" href="#21-january-2016-nutch-231-release"
title="Permanent link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v2.3.1, we advise all
current users and developers of the 2.X series to upgrade to this release.</p>
<p>This bug fix release contains around 40 issues addressed. For a complete
overview of these issues please see the
-<a href="http://s.apache.org/nutch_2.3.1">release report</a>.</p>
+<a href="https://s.apache.org/nutch_2.3.1">release report</a>.</p>
<p>As usual in the 2.X series, release artifacts are made available as only
source and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<p>The recommended Gora backends for this Nutch release are</p>
<ul>
<li>Apache Avro 1.7.6</li>
@@ -583,20 +585,20 @@ The release is available from our <a hre
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.11, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>This release is the result of many months of work and around 100 issues
addressed. For a complete overview of these issues please see the
-<a href="http://s.apache.org/nutch11">release report</a>.</p>
+<a href="https://s.apache.org/nutch11">release report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a
href="http://search.maven.org/#search|gav|1|g%3A%22org.apache.nutch%22%20AND%20a%3A%22nutch%22">Maven
Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a
href="https://search.maven.org/search?q=g:org.apache.nutch%20AND%20a:nutch&core=gav">Maven
Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="06-may-2015-nutch-110-release">06 May 2015 - Nutch 1.10 Release<a
class="headerlink" href="#06-may-2015-nutch-110-release" title="Permanent
link">¶</a></h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.10, we advise all
current users and developers of the 1.X series to upgrade to this release.</p>
<p>This release is the result of many months of work and well over 100 issues
addressed. For a complete overview of these issues please see the
-<a href="http://s.apache.org/nutch10">release report</a>.</p>
+<a href="https://s.apache.org/nutch10">release report</a>.</p>
<p>As usual in the 1.X series, release artifacts are made available as both
source and binary and also available within
-<a href="http://search.maven.org/">Maven Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
+<a href="https://search.maven.org/">Maven Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
<h2 id="23-april-2015-apache-nutch-reaches-2000th-jira-issue">23 April 2015 -
Apache Nutch Reaches 2000th Jira Issue<a class="headerlink"
href="#23-april-2015-apache-nutch-reaches-2000th-jira-issue" title="Permanent
link">¶</a></h2>
-<blockquote class="twitter-tweet" lang="en"><p><a
href="https://twitter.com/ApacheNutch">@ApacheNutch</a> reaches 2000th issue on
<a href="https://twitter.com/TheASF">@TheASF</a> <a
href="https://twitter.com/hashtag/JIRA?src=hash">#JIRA</a> with over a decade
of <a href="https://twitter.com/hashtag/opensource?src=hash">#opensource</a>
crawling on the <a href="https://twitter.com/hashtag/www?src=hash">#www</a> <a
href="http://t.co/k3VLhbJQhg">pic.twitter.com/k3VLhbJQhg</a></p>— Apache
Nutch (@ApacheNutch) <a
href="https://twitter.com/ApacheNutch/status/591359830171856896">April 23,
2015</a></blockquote>
+<blockquote class="twitter-tweet" lang="en"><p><a
href="https://twitter.com/ApacheNutch">@ApacheNutch</a> reaches 2000th issue on
<a href="https://twitter.com/TheASF">@TheASF</a> <a
href="https://twitter.com/hashtag/JIRA?src=hash">#JIRA</a> with over a decade
of <a href="https://twitter.com/hashtag/opensource?src=hash">#opensource</a>
crawling on the <a href="https://twitter.com/hashtag/www?src=hash">#www</a> <a
href="https://t.co/k3VLhbJQhg">pic.twitter.com/k3VLhbJQhg</a></p>— Apache
Nutch (@ApacheNutch) <a
href="https://twitter.com/ApacheNutch/status/591359830171856896">April 23,
2015</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
@@ -605,38 +607,38 @@ The release is available from our <a hre
current users and developers of the 2.X series to upgrade to this release.
After successful completion of the first <a
href="https://issues.apache.org/jira/browse/NUTCH-841">Nutch Google Summer of
Code project</a>
we are pleased to announce that Nutch 2.3 release now comes packaged with a
self
-contained <a href="http://wicket.apache.org">Apache Wicket</a>-based Web
Application.</p>
+contained <a href="https://wicket.apache.org/">Apache Wicket</a>-based Web
Application.</p>
<p>This release is the result of many months of work and 143 issues addressed.
For a complete overview of these issues please see the
-<a href="http://s.apache.org/nutch_2.3">release report</a>.</p>
+<a href="https://s.apache.org/nutch_2.3">release report</a>.</p>
<p>As usual in the 2.x series, this release is made available only as source,
but is also available within
-<a href="http://search.maven.org/">Maven Central</a> as a Maven dependency.
-The release is available from our <a
href="http://nutch.apache.org/downloads.html">DOWNLAODS PAGE</a>.</p>
-<p>The supported <a href="http://gora.apache.org">Apache Gora</a> v0.5
backends are;</p>
+<a href="https://search.maven.org/">Maven Central</a> as a Maven dependency.
+The release is available from our <a href="/downloads.html">DOWNLAODS
PAGE</a>.</p>
+<p>The supported <a href="https://gora.apache.org/">Apache Gora</a> v0.5
backends are;</p>
<ul>
-<li><a href="http://hadoop.apache.org">Apache Hadoop</a> 1.0.1 & 2.4.0</li>
-<li><a href="http://cassandra.apache.org">Apache Cassandra</a> 2.0.2</li>
-<li><a href="http://hbase.apache.org">Apache HBase</a> 0.94.14</li>
-<li><a href="http://accumulo.apache.org">Apache Accumulo</a> 1.5.1</li>
-<li><a href="http://mongodb.org">MongoDB</a> 2.12.2</li>
-<li><a href="http://lucene.apache.org/solr">Apache Solr</a> 4.8.1</li>
-<li><a href="http://avro.apache.org">Apache Avro</a> 1.7.6</li>
+<li><a href="https://hadoop.apache.org/">Apache Hadoop</a> 1.0.1 &
2.4.0</li>
+<li><a href="https://cassandra.apache.org/">Apache Cassandra</a> 2.0.2</li>
+<li><a href="https://hbase.apache.org/">Apache HBase</a> 0.94.14</li>
+<li><a href="https://accumulo.apache.org/">Apache Accumulo</a> 1.5.1</li>
+<li><a href="https://mongodb.org/">MongoDB</a> 2.12.2</li>
+<li><a href="https://lucene.apache.org/solr">Apache Solr</a> 4.8.1</li>
+<li><a href="https://avro.apache.org/">Apache Avro</a> 1.7.6</li>
</ul>
<p>Please note that the SQL backend for Gora has been deprecated.</p>
<h2 id="22-september-2014-wicket-webapp-now-part-of-nutch-2x-codebase">22
September 2014 - Wicket WebApp now part of Nutch 2.x Codebase<a
class="headerlink"
href="#22-september-2014-wicket-webapp-now-part-of-nutch-2x-codebase"
title="Permanent link">¶</a></h2>
-<p><a title="Apache Wicket" href="http://wicket.apache.org">
- <img src="http://wicket.apache.org/guide/img/apache-wicket.png"
class="float-right" alt="Apache Wicket Logo" height="100" width="400"/>
+<p><a title="Apache Wicket" href="https://wicket.apache.org/">
+ <img src="https://wicket.apache.org/guide/img/apache-wicket.png"
class="float-right" alt="Apache Wicket Logo" height="100" width="400"/>
</a></p>
<p>After successful completion of the first <a
href="https://issues.apache.org/jira/browse/NUTCH-841">Nutch Google Summer of
Code project</a>
we are pleased to announce that Nutch 2.X branch now comes packaged with a
self
-contained <a href="http://wicket.apache.org">Apache Wicket</a>-based Web
Application.</p>
+contained <a href="https://wicket.apache.org/">Apache Wicket</a>-based Web
Application.</p>
<p>This not only greatly lowers the barrier for direct interaction with the
Nutch 2.X
REST API but also provides a stepping stone from which we intend to backport
this
work to the Nutch 1.X (trunk) series.</p>
<p>Some of the Web Application features include:</p>
<ul>
<li>Functionality to dynamically load seed URLs in order to bootstrap Nutch
crawls</li>
-<li>Browsable and dynamic editing of <a
href="http://wiki.apache.org/nutch/NutchPropertiesCompleteList">Configuration
overrides</a></li>
-<li>Complete <a href="https://wiki.apache.org/nutch/NutchRESTAPI">REST API
documentation</a> and UML
+<li>Browsable and dynamic editing of <a
href="https://cwiki.apache.org/nutch/NutchPropertiesCompleteList">Configuration
overrides</a></li>
+<li>Complete <a href="https://cwiki.apache.org/nutch/NutchRESTAPI">REST API
documentation</a> and UML
model describing REST API calls, Administration and Job and Configuration
Management.</li>
</ul>
<p>The new Web Application feature will be present within the upcoming Nutch
2.3 Release.</p>
@@ -645,11 +647,11 @@ model describing REST API calls, Adminis
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.9, we advise all
current users and developers of the 1.X series to upgrade to this release.
This release addressed
no fewer than 55 issues in total.
- Please see the <a
href="http://www.apache.org/dist/nutch/1.9/CHANGES.txt">list of changes</a> for
a full
- breakdown, or see the <a href="http://s.apache.org/1.9-release">release
report</a>.
+ Please see the <a
href="https://www.apache.org/dist/nutch/1.9/CHANGES.txt">list of changes</a>
for a full
+ breakdown, or see the <a href="https://s.apache.org/1.9-release">release
report</a>.
As usual in the 1.X series, this release is made available both as source
and binary. Additionally developers
- can find Maven artifacts within <a href="http://search.maven.org/">Maven
Central</a>.
- The release is available <a
href="http://www.apache.org/dyn/closer.cgi/nutch/">here</a>.
+ can find Maven artifacts within <a href="https://search.maven.org/">Maven
Central</a>.
+ The release is available <a
href="https://www.apache.org/dyn/closer.cgi/nutch/">here</a>.
</p>
</div></p>
<p><div class="jumbotron">
@@ -687,7 +689,7 @@ model describing REST API calls, Adminis
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v1.8, we advise all
current users and developers of the 1.X series to upgrade to this release.
Alhough this
release includes library upgrades to <a
href="http://code.google.com/p/crawler-commons/">Crawler Commons</a> 0.3 and
- <a href="http://tika.apache.org">Apache Tika</a> 1.5, it also provides over
30 bug fixes as well as 18 improvements.
+ <a href="https://tika.apache.org/">Apache Tika</a> 1.5, it also provides
over 30 bug fixes as well as 18 improvements.
Please see the <a
href="http://www.apache.org/dist/nutch/1.8/CHANGES.txt">list of changes</a> for
a full
breakdown, or see the <a href="http://s.apache.org/oHY">release report</a>.
As usual in the 1.X series, this release is made available both as source
and binary. Additionally developers
@@ -699,8 +701,8 @@ model describing REST API calls, Adminis
<h2>02 July 2013 - Apache Nutch v2.2.1 Released</h2>
<p>The Apache Nutch PMC are pleased to announce the immediate release of
Apache Nutch v2.2.1, we advise all
current users and developers of the 2.X series to upgrade to this release
ASAP. Although this
- release includes library upgrades to <a
href="http://hadoop.apache.org">Apache Hadoop</a> 1.2.0 and
- <a href="http://tika.apache.org">Apache Tika</a> 1.3, it is predominantly a
bug fix for
+ release includes library upgrades to <a
href="https://hadoop.apache.org/">Apache Hadoop</a> 1.2.0 and
+ <a href="https://tika.apache.org/">Apache Tika</a> 1.3, it is predominantly
a bug fix for
<a href="https://issues.apache.org/jira/browse/NUTCH-1591">NUTCH-1591 -
Incorrect conversion of ByteBuffer to String</a>.
Please see the <a
href="http://www.apache.org/dist/nutch/2.2.1/CHANGES-2.2.1.txt">list of
changes</a> for a full
breakdown, or see the <a href="http://s.apache.org/PGa">release report</a>.
@@ -717,8 +719,8 @@ model describing REST API calls, Adminis
<a href="http://lucene.apache.org/solr">Apache Solr</a> and <a
href="http://www.elasticsearch.org/">Elastic Search</a>.
Shadowing the recent Nutch 2.2 release, parsing
of Robots.txt is now delegated to <a
href="http://code.google.com/p/crawler-commons/">
- Crawler-Commons</a>. Key library upgrades have been made to <a
href="http://hadoop.apache.org">Apache Hadoop</a> 1.2.0
- and <a href="http://tika.apache.org">Apache Tika</a> 1.3. Please see the <a
href="http://www.apache.org/dist/nutch/1.7/1.7-CHANGES.txt">list of
+ Crawler-Commons</a>. Key library upgrades have been made to <a
href="https://hadoop.apache.org/">Apache Hadoop</a> 1.2.0
+ and <a href="https://tika.apache.org/">Apache Tika</a> 1.3. Please see the
<a href="http://www.apache.org/dist/nutch/1.7/1.7-CHANGES.txt">list of
changes</a> or the <a href="http://s.apache.org/1zE">release report</a> made
in this version for a full
breakdown.
As usual in the 1.x series, the release is made available as binary and
source (zip + tar.gz) and is also available within
@@ -732,8 +734,8 @@ model describing REST API calls, Adminis
release includes over 30 bug fixes and over 25 improvements representing the
third release of increasingly
popular 2.x Nutch series. This release features inclusion of <a
href="http://code.google.com/p/crawler-commons/">
Crawler-Commons</a> which Nutch now utilizes for improved robots.txt
parsing, library upgrades to
- <a href="http://hadoop.apache.org">Apache Hadoop</a> 1.1.1, <a
href="http://gora.apache.org">Apache Gora</a>
- 0.3, <a href="http://tika.apache.org">Apache Tika</a> 1.2 and <a
href="http://www.brics.dk/automaton/automaton">
+ <a href="https://hadoop.apache.org/">Apache Hadoop</a> 1.1.1, <a
href="https://gora.apache.org/">Apache Gora</a>
+ 0.3, <a href="https://tika.apache.org/">Apache Tika</a> 1.2 and <a
href="http://www.brics.dk/automaton/automaton">
Automaton</a> 1.11-8. Please see the <a
href="http://www.apache.org/dist/nutch/2.2/2.2-CHANGES.txt">list of
changes</a> or the <a href="http://s.apache.org/LPB">release report</a> made
in this version for a full
breakdown.
@@ -748,7 +750,7 @@ model describing REST API calls, Adminis
release includes over 20 bug fixes, the same in improvements, as well as new
functionalities including a new HostNormalizer,
the ability to dynamically set fetchInterval by MIME-type and functional
enhancements to the Indexer API inluding the normalization
of URL's and the deletion of robots noIndex documents. Other notable
improvements include the upgrade of key dependencies to
- <a href="http://tika.apache.org/1.2/index.html">Tika 1.2</a> and <a
href="http://www.brics.dk/automaton/">Automaton 1.11-8</a>.
+ <a href="https://tika.apache.org/1.2/index.html">Tika 1.2</a> and <a
href="http://www.brics.dk/automaton/">Automaton 1.11-8</a>.
Please see the <a
href="http://www.apache.org/dist/nutch/1.6/CHANGES_1.6.txt">list of changes</a>
or the
<a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=10680&version=12319941">release
report</a> made
in this version for a full breakdown. The release is available
@@ -760,7 +762,7 @@ model describing REST API calls, Adminis
<p>The Apache Nutch PMC are very pleased to announce the release of Apache
Nutch v2.1. This
release continues to provide Nutch users with a simplified Nutch
distribution building on the 2.x
development drive which is growing in popularity amongst the community. As
well as addressing ~20 bugs
- this release also offers improved properties for better <a
href="http://lucene.apache.org/solr/">Solr</a> configuration, upgrades to
various <a href="http://gora.apache.org">Gora</a> dependencies and the
introduction of the option to build indexes in <a
href="http://www.elasticsearch.org/">elastic search</a>.
+ this release also offers improved properties for better <a
href="http://lucene.apache.org/solr/">Solr</a> configuration, upgrades to
various <a href="https://gora.apache.org/">Gora</a> dependencies and the
introduction of the option to build indexes in <a
href="http://www.elasticsearch.org/">elastic search</a>.
Please see the <a
href="http://www.apache.org/dist/nutch/2.1/CHANGES-2.1.txt">list of changes</a>
made
in this version for a full breakdown. The release is available
<a href="http://www.apache.org/dyn/closer.cgi/nutch/">here</a>.
Modified: websites/staging/nutch/trunk/content/javadoc.html
==============================================================================
--- websites/staging/nutch/trunk/content/javadoc.html (original)
+++ websites/staging/nutch/trunk/content/javadoc.html Fri Jul 26 08:48:01 2019
@@ -455,7 +455,7 @@ under the License.
<!-- div id="bodyColumn" class="span9"-->
<p>It should ne noted that the 1.X branch is currently the Nutch trunk code
base.</p>
<p>Nutch 2.X is a different code base and uses different data structures.
For more information
- on the 2.X branch, we urge users to approach the <a
href="http://wiki.apache.org/nutch/#Nutch_2.x">wiki documentation</a>
+ on the 2.X branch, we urge users to approach the <a
href="https://cwiki.apache.org/nutch/#Nutch_2.x">wiki documentation</a>
</p>
<div class="section">
Modified: websites/staging/nutch/trunk/content/mailing_lists.html
==============================================================================
--- websites/staging/nutch/trunk/content/mailing_lists.html (original)
+++ websites/staging/nutch/trunk/content/mailing_lists.html Fri Jul 26 08:48:01
2019
@@ -410,7 +410,18 @@ under the License.
<div class="container" id="Nutch_">
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
+ <style type="text/css">
+/* The following code is added by mdx_elementid.py
+ It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+ visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink,
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink,
dt:hover > .elementid-permalink { visibility: visible }</style>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
@@ -420,23 +431,20 @@ to you under the Apache License, Version
"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,
+<p>http://www.apache.org/licenses/LICENSE-2.0</p>
+<p>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.
--->
-
+-->
<header class="jumbotron subhead" id="overview">
<div class="container">
<h1>Nutch Mailing Lists</h1>
<p class="lead">Where all the actions happens...</p>
</div>
-</header>
-
+</header></p>
<div class="container">
<section id="application">
<!-- div id="bodyColumn" class="span9"-->
Modified: websites/staging/nutch/trunk/content/version_control.html
==============================================================================
--- websites/staging/nutch/trunk/content/version_control.html (original)
+++ websites/staging/nutch/trunk/content/version_control.html Fri Jul 26
08:48:01 2019
@@ -424,7 +424,7 @@ h2:hover > .headerlink, h3:hover > .head
<h1 id="overview">Overview<a class="headerlink" href="#overview"
title="Permanent link">¶</a></h1>
<p>Nutch uses the Apache Software Foundation Git writeable repositories as its
master
repository. </p>
-<p>You can find more information about Nutch source control <a
href="https://wiki.apache.org/nutch/UsingGit">here</a>.</p></div>
+<p>You can find more information about Nutch source control <a
href="https://cwiki.apache.org/nutch/UsingGit">here</a>.</p></div>
<!-- /container (main block) -->
<hr>