You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@yetus.apache.org by aw...@apache.org on 2016/02/27 00:18:13 UTC

[5/9] yetus git commit: git hash c533842b47c9c113f4bdef5a0a7005cf1b9c4de1

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/0.1.0/releasedocmaker/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/releasedocmaker/index.html b/documentation/0.1.0/releasedocmaker/index.html
index c196a93..9866119 100644
--- a/documentation/0.1.0/releasedocmaker/index.html
+++ b/documentation/0.1.0/releasedocmaker/index.html
@@ -118,7 +118,7 @@
   under the License.
 -->
 
-<h1 id="releasedocmaker">releasedocmaker</h1>
+<h1>releasedocmaker</h1>
 
 <ul>
 <li><a href="#Purpose">Purpose</a></li>
@@ -130,24 +130,25 @@
 <li><a href="#Index_Mode">Index Mode</a></li>
 </ul>
 
-<h1 id="purpose">Purpose</h1>
+<h1>Purpose</h1>
 
 <p>Building changelog information in a form that is human digestible but still containing as much useful information is difficult.  Many attempts over the years have resulted in a variety of methods that projects use to solve this problem:</p>
 
 <ul>
-<li>JIRA-generated release notes from the &ldquo;Release Notes&rdquo; button</li>
+<li>JIRA-generated release notes from the <q>Release Notes</q> button</li>
 <li>Manually modified CHANGES file</li>
 <li>Processing git log information</li>
 </ul>
 
 <p>All of these methods have their pros and cons.  Some have issues with accuracy.  Some have issues with lack of details. None of these methods seem to cover all of the needs of many projects and are full of potential pitfalls.</p>
 
-<p>In order to solve these problems, releasedocmaker was written to automatically generate a changelog and release notes by querying Apache&rsquo;s JIRA instance.</p>
+<p>In order to solve these problems, releasedocmaker was written to automatically generate a changelog and release notes by querying Apache&#39;s JIRA instance.</p>
 
-<h1 id="basic-usage">Basic Usage</h1>
+<h1>Basic Usage</h1>
 
 <p>Minimally, the name of the JIRA project and a version registered in JIRA must be provided:</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project <span class="o">(</span>project<span class="o">)</span> --version <span class="o">(</span>version<span class="o">)</span>
+
+<pre><code class="bash">$ releasedocmaker.py --project (project) --version (version)
 </code></pre>
 
 <p>This will query Apache JIRA, generating two files in a directory named after the given version in an extended markdown format which can be processed by both mvn site and GitHub.</p>
@@ -156,7 +157,7 @@
 <li>CHANGES.(version).md</li>
 </ul>
 
-<p>This is similar to the JIRA &ldquo;Release Notes&rdquo; button but is in tabular format and includes the priority, component, reporter, and contributor fields.  It also highlights Incompatible Changes so that readers know what to look out for when upgrading. The top of the file also includes the date that the version was marked as released in JIRA.</p>
+<p>This is similar to the JIRA <q>Release Notes</q> button but is in tabular format and includes the priority, component, reporter, and contributor fields.  It also highlights Incompatible Changes so that readers know what to look out for when upgrading. The top of the file also includes the date that the version was marked as released in JIRA.</p>
 
 <ul>
 <li>RELEASENOTES.(version).md</li>
@@ -164,60 +165,67 @@
 
 <p>If your JIRA project supports the release note field, this will contain any JIRA mentioned in the CHANGES log that is either an incompatible change or has a release note associated with it.  If your JIRA project does not support the release notes field, this will be the description field.</p>
 
-<p>For example, to build the release documentation for HBase v1.2.0&hellip;</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.2.0
+<p>For example, to build the release documentation for HBase v1.2.0...</p>
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.2.0
 </code></pre>
 
-<p>&hellip; will create a 1.2.0 directory and inside that directory will be CHANGES.1.2.0.md and RELEASENOTES.1.2.0.md .</p>
+<p>... will create a 1.2.0 directory and inside that directory will be CHANGES.1.2.0.md and RELEASENOTES.1.2.0.md .</p>
 
 <p>By default, release notes are expected to be in plain text.  However, you can write them in markdown if you include a header at the top of your release note:</p>
-<pre class="highlight xml"><code><span class="c">&lt;!-- markdown --&gt;</span>
+
+<pre><code class="xml">&lt;!-- markdown --&gt;
 remaining text
 </code></pre>
 
-<h1 id="changing-the-header">Changing the Header</h1>
+<h1>Changing the Header</h1>
 
 <p>By default, it will use a header that matches the project name.  But that is kind of ugly and the case may be wrong.  Luckily, the title can be changed:</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.2.0 --projecttitle <span class="s2">"Apache HBase"</span>
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.2.0 --projecttitle &quot;Apache HBase&quot;
 </code></pre>
 
-<p>Now instead of &ldquo;HBASE&rdquo;, it will use &ldquo;Apache HBASE&rdquo; for some titles and headers.</p>
+<p>Now instead of <q>HBASE</q>, it will use <q>Apache HBASE</q> for some titles and headers.</p>
 
-<h1 id="multiple-versions">Multiple Versions</h1>
+<h1>Multiple Versions</h1>
 
 <p>The script can also generate multiple versions at once, by</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0
 </code></pre>
 
 <p>This will create the files for versions 1.0.0 and versions 1.2.0 in their own directories.</p>
 
 <p>But what if the version numbers are not known?  releasedocmaker can also generate version data based upon ranges:</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0 --range
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.0.0 --version 1.2.0 --range
 </code></pre>
 
 <p>In this form, releasedocmaker will query JIRA, discover all versions that alphabetically appear to be between 1.0.0 and 1.2.0, inclusive, and generate all of the relative release documents.  This is especially useful when bootstrapping an existing project.</p>
 
-<h1 id="unreleased-dates">Unreleased Dates</h1>
+<h1>Unreleased Dates</h1>
 
-<p>For released versions, releasedocmaker will pull the date of the release from JIRA.  However, for unreleased versions it marks the release as &ldquo;Unreleased&rdquo;. This can be inconvenient when actually building a release and wanting to include it inside the source package.</p>
+<p>For released versions, releasedocmaker will pull the date of the release from JIRA.  However, for unreleased versions it marks the release as <q>Unreleased</q>. This can be inconvenient when actually building a release and wanting to include it inside the source package.</p>
 
-<p>The &ndash;usetoday option can be used to signify that instead of using Unreleased, releasedocmaker should use today&rsquo;s date.</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.0.0 --usetoday
+<p>The --usetoday option can be used to signify that instead of using Unreleased, releasedocmaker should use today&#39;s date.</p>
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.0.0 --usetoday
 </code></pre>
 
-<p>After using this option and release, don&rsquo;t forget to change JIRA&rsquo;s release date to match!</p>
+<p>After using this option and release, don&#39;t forget to change JIRA&#39;s release date to match!</p>
 
-<h1 id="lint-mode">Lint Mode</h1>
+<h1>Lint Mode</h1>
 
 <p>In order to ensure proper formatting while using mvn site, releasedocmaker puts in periods (.) for fields that are empty or unassigned.  This can be unsightly and not proper for any given project.  There are also other things, such as missing release notes for incompatible changes, that are less than desirable.</p>
 
-<p>In order to help release managers from having to scan through potentially large documents, releasedocmaker features a lint mode, triggered via &ndash;lint:</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>releasedocmaker.py --project HBASE --version 1.0.0 --lint
+<p>In order to help release managers from having to scan through potentially large documents, releasedocmaker features a lint mode, triggered via --lint:</p>
+
+<pre><code class="bash">$ releasedocmaker.py --project HBASE --version 1.0.0 --lint
 </code></pre>
 
 <p>This will do the normal JIRA querying, looking for items it considers problematic.  It will print the information to the screen and then exit with either success or failure, depending upon if any issues were discovered.</p>
 
-<h1 id="index-mode">Index Mode</h1>
+<h1>Index Mode</h1>
 
 <p>There is basic support for an autoindexer.  It will create two files that contain links to all directories that have a major.minor.micro-style version numbering system, where all fields are numeric.</p>
 
@@ -233,7 +241,7 @@ remaining text
         <div class="row-fluid">
             <div class="span12 text-left">
                             <div class="span12">
-                Copyright 2008-2015 <a href="http://www.apache.org/">Apache Software Foundation</a>. Licensed under the <a href="http://www.apache.org/licenses/">Apache License v2.0</a>. Apache Yetus and the Apache feather logo are trademarks of The Apache Software Foundation.
+                Copyright 2008-2016 <a href="http://www.apache.org/">Apache Software Foundation</a>. Licensed under the <a href="http://www.apache.org/licenses/">Apache License v2.0</a>. Apache Yetus and the Apache feather logo are trademarks of The Apache Software Foundation.
                             </div>
             </div>
 

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/allclasses-frame.html b/documentation/in-progress/audience-annotations-apidocs/allclasses-frame.html
index a9c0f3b..5c679c7 100644
--- a/documentation/in-progress/audience-annotations-apidocs/allclasses-frame.html
+++ b/documentation/in-progress/audience-annotations-apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/allclasses-noframe.html b/documentation/in-progress/audience-annotations-apidocs/allclasses-noframe.html
index b92ea1b..9cb4f59 100644
--- a/documentation/in-progress/audience-annotations-apidocs/allclasses-noframe.html
+++ b/documentation/in-progress/audience-annotations-apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/constant-values.html b/documentation/in-progress/audience-annotations-apidocs/constant-values.html
index 8b46c68..8540332 100644
--- a/documentation/in-progress/audience-annotations-apidocs/constant-values.html
+++ b/documentation/in-progress/audience-annotations-apidocs/constant-values.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constant Field Values (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/deprecated-list.html b/documentation/in-progress/audience-annotations-apidocs/deprecated-list.html
index ae57927..13262e6 100644
--- a/documentation/in-progress/audience-annotations-apidocs/deprecated-list.html
+++ b/documentation/in-progress/audience-annotations-apidocs/deprecated-list.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Deprecated List (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/help-doc.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/help-doc.html b/documentation/in-progress/audience-annotations-apidocs/help-doc.html
index 703c6b8..0c6da8d 100644
--- a/documentation/in-progress/audience-annotations-apidocs/help-doc.html
+++ b/documentation/in-progress/audience-annotations-apidocs/help-doc.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>API Help (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/index-all.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/index-all.html b/documentation/in-progress/audience-annotations-apidocs/index-all.html
index cfa49ea..3e8552c 100644
--- a/documentation/in-progress/audience-annotations-apidocs/index-all.html
+++ b/documentation/in-progress/audience-annotations-apidocs/index-all.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Index (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/index.html b/documentation/in-progress/audience-annotations-apidocs/index.html
index 3108c64..d83400e 100644
--- a/documentation/in-progress/audience-annotations-apidocs/index.html
+++ b/documentation/in-progress/audience-annotations-apidocs/index.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API</title>
 <script type="text/javascript">

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html
index 194fe30..07184a8 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.LimitedPrivate.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceAudience.LimitedPrivate (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Private.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Private.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Private.html
index 725fe8f..77ff899 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Private.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Private.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceAudience.Private (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Public.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Public.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Public.html
index 14582ef..efc2665 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Public.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.Public.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceAudience.Public (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.html
index fb3f5e0..4a3a870 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceAudience.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceAudience (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Evolving.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Evolving.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Evolving.html
index 08c01de..69d7990 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Evolving.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Evolving.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceStability.Evolving (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Stable.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Stable.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Stable.html
index bbf6e88..31d9756 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Stable.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Stable.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceStability.Stable (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Unstable.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Unstable.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Unstable.html
index aec0268..d6825ab 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Unstable.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.Unstable.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceStability.Unstable (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.html
index d54a462..ec93406 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/InterfaceStability.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>InterfaceStability (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.LimitedPrivate.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.LimitedPrivate.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.LimitedPrivate.html
index d9cf9dd..4a8a785 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.LimitedPrivate.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.LimitedPrivate.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceAudience.LimitedPrivate (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Private.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Private.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Private.html
index 6fcffcc..e5c0d36 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Private.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Private.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceAudience.Private (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Public.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Public.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Public.html
index 4efbda5..d8a3215 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Public.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.Public.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceAudience.Public (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.html
index e7abcb4..5b23b47 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceAudience.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceAudience (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Evolving.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Evolving.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Evolving.html
index 30a84c8..47ea2ba 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Evolving.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Evolving.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceStability.Evolving (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Stable.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Stable.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Stable.html
index ceb1585..7b7b859 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Stable.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Stable.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceStability.Stable (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Unstable.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Unstable.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Unstable.html
index 16d4d32..90dec3d 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Unstable.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.Unstable.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceStability.Unstable (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.html
index 837b76e..063f99c 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/class-use/InterfaceStability.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.InterfaceStability (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-frame.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-frame.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-frame.html
index 64c7b1b..dc8c6d3 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-frame.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-summary.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-summary.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-summary.html
index dbc116a..0975d7f 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-summary.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-summary.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-tree.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-tree.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-tree.html
index 025af63..9ef7c64 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-tree.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-tree.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience Class Hierarchy (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-use.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-use.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-use.html
index d3cad4b..f398e43 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-use.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/package-use.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Package org.apache.yetus.audience (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsJDiffDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsJDiffDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsJDiffDoclet.html
index 14c95e4..532bdd0 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsJDiffDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsJDiffDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>ExcludePrivateAnnotationsJDiffDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsStandardDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsStandardDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsStandardDoclet.html
index e3d5062..fb6cbc0 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsStandardDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/ExcludePrivateAnnotationsStandardDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>ExcludePrivateAnnotationsStandardDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/IncludePublicAnnotationsStandardDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/IncludePublicAnnotationsStandardDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/IncludePublicAnnotationsStandardDoclet.html
index 9b10c7c..8ce147b 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/IncludePublicAnnotationsStandardDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/IncludePublicAnnotationsStandardDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>IncludePublicAnnotationsStandardDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsJDiffDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsJDiffDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsJDiffDoclet.html
index d73c15e..3057234 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsJDiffDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsJDiffDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsJDiffDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsStandardDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsStandardDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsStandardDoclet.html
index d31d7cd..64de8b1 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsStandardDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/ExcludePrivateAnnotationsStandardDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.tools.ExcludePrivateAnnotationsStandardDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/IncludePublicAnnotationsStandardDoclet.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/IncludePublicAnnotationsStandardDoclet.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/IncludePublicAnnotationsStandardDoclet.html
index c63a824..0d47bdb 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/IncludePublicAnnotationsStandardDoclet.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/class-use/IncludePublicAnnotationsStandardDoclet.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Class org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-frame.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-frame.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-frame.html
index 7fad3f1..5532e0c 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-frame.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience.tools (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-summary.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-summary.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-summary.html
index 265b38e..cb8cbf1 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-summary.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-summary.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience.tools (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-tree.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-tree.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-tree.html
index 2100725..f81e648 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-tree.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-tree.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>org.apache.yetus.audience.tools Class Hierarchy (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-use.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-use.html b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-use.html
index 9653aeb..0437766 100644
--- a/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-use.html
+++ b/documentation/in-progress/audience-annotations-apidocs/org/apache/yetus/audience/tools/package-use.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Uses of Package org.apache.yetus.audience.tools (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/overview-frame.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/overview-frame.html b/documentation/in-progress/audience-annotations-apidocs/overview-frame.html
index bf58852..6cf2b0b 100644
--- a/documentation/in-progress/audience-annotations-apidocs/overview-frame.html
+++ b/documentation/in-progress/audience-annotations-apidocs/overview-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Overview List (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/overview-summary.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/overview-summary.html b/documentation/in-progress/audience-annotations-apidocs/overview-summary.html
index 101607e..a4a1d50 100644
--- a/documentation/in-progress/audience-annotations-apidocs/overview-summary.html
+++ b/documentation/in-progress/audience-annotations-apidocs/overview-summary.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Overview (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/audience-annotations-apidocs/overview-tree.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/audience-annotations-apidocs/overview-tree.html b/documentation/in-progress/audience-annotations-apidocs/overview-tree.html
index 9af041f..d353541 100644
--- a/documentation/in-progress/audience-annotations-apidocs/overview-tree.html
+++ b/documentation/in-progress/audience-annotations-apidocs/overview-tree.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_79) on Tue Jan 19 13:08:53 PST 2016 -->
+<!-- Generated by javadoc (version 1.7.0_79) on Fri Feb 12 09:40:02 PST 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Class Hierarchy (Apache Yetus - Audience Annotations Component 0.2.0-SNAPSHOT API)</title>
-<meta name="date" content="2016-01-19">
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/yetus/blob/d709aeb5/documentation/in-progress/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/index.html b/documentation/in-progress/index.html
index fac1276..b546406 100644
--- a/documentation/in-progress/index.html
+++ b/documentation/in-progress/index.html
@@ -118,43 +118,44 @@
   under the License.
 -->
 
-<h1 id="yetus-precommit">Yetus Precommit</h1>
+<h1>Yetus Precommit</h1>
 
 <p>The Yetus Precommit Patch Tester allows projects to codify their patch acceptance criteria and then evaluate incoming contributions prior to review by a committer.</p>
 
 <ul>
-<li>Take a quick look at <a href="precommit-glossary">our glossary of terms</a> to ensure you are familiar with the ASF and Maven jargon we&rsquo;ll use as terminology specific to this project.</li>
-<li>For an overview of Yetus&rsquo; philosophy on testing contributions and how evaluation is performed, see our <a href="precommit-architecture">overview</a>.</li>
-<li>To get started on your project, including an explanation of what we&rsquo;ll expect in a runtime environment and what optional utilities we&rsquo;ll leverage, read through the <a href="precommit-basic">basic usage guide</a>.</li>
+<li>Take a quick look at <a href="precommit-glossary">our glossary of terms</a> to ensure you are familiar with the ASF and Maven jargon we&#39;ll use as terminology specific to this project.</li>
+<li>For an overview of Yetus&#39; philosophy on testing contributions and how evaluation is performed, see our <a href="precommit-architecture">overview</a>.</li>
+<li>To get started on your project, including an explanation of what we&#39;ll expect in a runtime environment and what optional utilities we&#39;ll leverage, read through the <a href="precommit-basic">basic usage guide</a>.</li>
 <li>Customize how precommit interacts with your project by choosing amongst <a href="precommit-buildtools">build systems</a>, <a href="precommit-bugsystems">bug systems</a> and <a href="precommit-testformats">test formats</a>.</li>
-<li>If your project has advanced requirements such as module relationships not expressed in Maven, special profiles, or a need on os-specific prerequisites not managed by Maven then you&rsquo;ll need to use our <a href="precommit-advanced">advanced usage guide</a>.</li>
+<li>If your project has advanced requirements such as module relationships not expressed in Maven, special profiles, or a need on os-specific prerequisites not managed by Maven then you&#39;ll need to use our <a href="precommit-advanced">advanced usage guide</a>.</li>
 </ul>
 
 <p>For a complete guide to the Precommit API, see <a href="precommit-apidocs/">the generated API documentation</a>.</p>
 
-<h1 id="yetus-release-doc-maker">Yetus Release Doc Maker</h1>
+<h1>Yetus Release Doc Maker</h1>
 
 <p>The Release Documentation Maker allows projects to generate nicely formated Markdown Changelogs and Release Notes based upon JIRA. You can view that
 documenation <a href="releasedocmaker">here</a>.</p>
 
-<h1 id="yetus-shelldocs">Yetus Shelldocs</h1>
+<h1>Yetus Shelldocs</h1>
 
 <p>Shelldocs provides generation of html formatted api documentation based on comments on Bash functions. Currently supports documenting API status (public / private) as well as parameters and return values.</p>
 
 <p>See the shelldocs cli help for more information on usage.</p>
-<pre class="highlight shell"><code><span class="gp">$ </span>./shelldocs/shelldocs.py --help
-Usage: shelldocs.py --skipprnorep --output OUTFILE --input INFILE <span class="o">[</span>--input INFILE ...]
+
+<pre><code class="bash">$ ./shelldocs/shelldocs.py --help
+Usage: shelldocs.py --skipprnorep --output OUTFILE --input INFILE [--input INFILE ...]
 
 Options:
-  -h, --help            show this <span class="nb">help </span>message and <span class="nb">exit</span>
-  -o OUTFILE, --output<span class="o">=</span>OUTFILE
+  -h, --help            show this help message and exit
+  -o OUTFILE, --output=OUTFILE
                         file to create
-  -i INFILE, --input<span class="o">=</span>INFILE
-                        file to <span class="nb">read</span>
+  -i INFILE, --input=INFILE
+                        file to read
   --skipprnorep         Skip Private &amp; Not Replaceable
 </code></pre>
 
-<h1 id="yetus-audience-annotations">Yetus Audience Annotations</h1>
+<h1>Yetus Audience Annotations</h1>
 
 <p>Audience Annotations allows you to use Java Annotations to denote which parts of your Java library is publicly consumable and which parts are reserved for a more restricted use. It also provides doclets and examples for generating javadocs limited by audience.</p>
 
@@ -167,7 +168,7 @@ Options:
         <div class="row-fluid">
             <div class="span12 text-left">
                             <div class="span12">
-                Copyright 2008-2015 <a href="http://www.apache.org/">Apache Software Foundation</a>. Licensed under the <a href="http://www.apache.org/licenses/">Apache License v2.0</a>. Apache Yetus and the Apache feather logo are trademarks of The Apache Software Foundation.
+                Copyright 2008-2016 <a href="http://www.apache.org/">Apache Software Foundation</a>. Licensed under the <a href="http://www.apache.org/licenses/">Apache License v2.0</a>. Apache Yetus and the Apache feather logo are trademarks of The Apache Software Foundation.
                             </div>
             </div>