Repository: yetus
Updated Branches:
  refs/heads/asf-site 1a20466fe -> 11a22fb04


http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-advanced/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-advanced/index.html 
b/documentation/in-progress/precommit-advanced/index.html
index 1ffab94..48d6528 100644
--- a/documentation/in-progress/precommit-advanced/index.html
+++ b/documentation/in-progress/precommit-advanced/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>
@@ -127,6 +132,20 @@
 
 <p>The <code>--docker</code> parameter tells test-patch to run in Docker mode. 
The <code>--dockerfile</code> parameter allows one to provide a custom 
Dockerfile. The Dockerfile should contain all of the necessary binaries and 
tooling needed to run the test.  test-patch will copy this file up until the 
text &ldquo;YETUS CUT HERE&rdquo; to a different directory and then append its 
necessary hooks to re-launch itself prior to executing docker.</p>
 
+<p>If a custom Dockerfile cannot be used or the docker executable does not 
work, test-patch will attempt to recover by switching to its bundled Dockerfile 
or disabling docker support and running locally.  This behavior can be changed 
with the <code>--dockeronfail</code> option.  It takes a list of 
comma-delimited settings:</p>
+
+<ul>
+<li>fallback - Use the bundled Dockerfile</li>
+<li>continue - Turn off docker support</li>
+<li>fail - fail the test</li>
+</ul>
+
+<p>The &lsquo;fail&rsquo; setting is always the last option that test-patch 
will use and may be omitted unless it is the only option.</p>
+
+<p>For example, <code>--dockeronfail=continue</code> means if the Dockerfile 
can&rsquo;t be found, just turn off Docker support and continue running.  
<code>--dockeronfail=fallback</code> will switch to the bundled Dockerfile and 
then fail the build if docker fails to work. <code>--dockeronfail=fail</code> 
means to just fail the build and do not try any other mechanisms of recovery. 
The default is &#39;fallback,continue,fail&rsquo; which will allow test-patch 
to try to continue executing as much as it possibily can.</p>
+
+<p>Be aware that if the Dockerfile is found and the docker command works, 
test-patch will always fail the build if the Dockerfile itself fails the build. 
 It will not attempt to continue in the non-Docker mode.</p>
+
 <p>NOTE: If you are using Boot2Docker, you must use directories under /Users 
(OSX) or C:\Users (Windows) as the base and patchprocess directories (specified 
by the &ndash;basedir and &ndash;patch-dir options respectively), because 
automatically mountable directories are limited to them. See <a 
href="https://docs.docker.com/userguide/dockervolumes/#mount-a-host-directory-as-a-data-volume";>the
 Docker documentation</a>.</p>
 
 <p>Dockerfile images will be named with a test-patch prefix and suffix with 
either a date or a git commit hash. By using this information, test-patch will 
automatically manage broken/stale container images that are hanging around if 
it is run in &ndash;jenkins mode.  In this way, if Docker fails to build the 
image, the disk space should eventually be cleaned and returned back to the 
system.</p>
@@ -137,7 +156,7 @@
 
 <h2 id="common-plug-in-functions">Common Plug-in Functions</h2>
 
-<p>Every plug-in must have one line in order to be recognized, usually an 
&lsquo;add&rsquo; statement.  Test plug-ins, for example, have this 
statement:</p>
+<p>Every plug-in must have one line in order to be recognized, usually an 
&#39;add&rsquo; statement.  Test plug-ins, for example, have this statement:</p>
 <pre class="highlight shell"><code>add_test_type &lt;pluginname&gt;
 </code></pre>
 
@@ -328,11 +347,11 @@
 <li><p>CHANGED_FILES is a list of all files that appear to be added, deleted, 
or modified in the patch.</p></li>
 <li><p>CHANGED_MODULES is a list of all modules that house all of the 
CHANGED_FILES.  Be aware that the root of the source tree is reported as 
&rsquo;.&rsquo;.</p></li>
 <li><p>GITHUB_REPO is to help test-patch when talking to Github.  If 
test-patch is given just a number on the command line, it will default to using 
this repo to determine the pull request.</p></li>
-<li><p>HOW_TO_CONTRIBUTE should be a URL that points to a project&rsquo;s 
on-boarding documentation for new users. Currently, it is used to suggest a 
review of patch naming guidelines. Since this should be project specific 
information, it is useful to set in a project&rsquo;s personality.</p></li>
 <li><p>JIRA_ISSUE_RE is to help test-patch when talking to JIRA.  It helps 
determine if the given project is appropriate for the given JIRA issue.</p></li>
 <li><p>MODULE and other MODULE_* are arrays that contain which modules, the 
status, etc, to be operated upon. These should be treated as read-only by 
plug-ins.</p></li>
 <li><p>PATCH_BRANCH_DEFAULT is the name of the branch in the git repo that is 
considered the master.  This is useful to set in personalities.</p></li>
 <li><p>PATCH_DIR is the name of the temporary directory that houses test-patch 
artifacts (such as logs and the patch file itself)</p></li>
+<li><p>PATCH_NAMING_RULE should be a URL that points to a project&rsquo;s 
on-boarding documentation for new users. It is used to suggest a review of 
patch naming guidelines. Since this should be project specific information, it 
is useful to set in a project&rsquo;s personality.</p></li>
 <li><p>TEST_PARALLEL if parallel unit tests have been requested. Project 
personalities are responsible for actually enabling or ignoring the request. 
TEST_THREADS is the number of threads that have been requested to run in 
parallel.</p></li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-apidocs/core/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-apidocs/core/index.html 
b/documentation/in-progress/precommit-apidocs/core/index.html
index e67b844..fdb922c 100644
--- a/documentation/in-progress/precommit-apidocs/core/index.html
+++ b/documentation/in-progress/precommit-apidocs/core/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>
@@ -134,6 +139,7 @@
 <ul>
 <li><a href="#common_defaults">common_defaults</a></li>
 <li><a href="#patchfile_verify_zero">patchfile_verify_zero</a></li>
+<li><a href="#yetus_abs">yetus_abs</a></li>
 <li><a href="#yetus_add_entry">yetus_add_entry</a></li>
 <li><a href="#yetus_debug">yetus_debug</a></li>
 <li><a href="#yetus_delete_entry">yetus_delete_entry</a></li>
@@ -149,6 +155,7 @@
 <li>None/None/Not Replaceable
 
 <ul>
+<li><a href="#docker_version">docker_version</a></li>
 <li><a href="#personality_file_tests">personality_file_tests</a></li>
 <li><a href="#personality_modules">personality_modules</a></li>
 </ul></li>
@@ -768,6 +775,50 @@
 </tr>
 </tbody></table>
 
+<h3 id="yetus_abs"><code>yetus_abs</code></h3>
+
+<ul>
+<li>Synopsis</li>
+</ul>
+<pre class="highlight plaintext"><code>yetus_abs directory
+</code></pre>
+
+<ul>
+<li>Description</li>
+</ul>
+
+<p>Given a filename or dir, return the absolute version of it</p>
+
+<ul>
+<li>Returns</li>
+</ul>
+
+<h2 id="returns-0-success">@returns      0 success</h2>
+
+<h2 id="returns-1-failure">@returns      1 failure</h2>
+
+<h2 id="returns-stdout-abspath">@returns      stdout abspath</h2>
+
+<table><thead>
+<tr>
+<th style="text-align: left">Classification</th>
+<th style="text-align: left">Level</th>
+</tr>
+</thead><tbody>
+<tr>
+<td style="text-align: left">Audience</td>
+<td style="text-align: left">Public</td>
+</tr>
+<tr>
+<td style="text-align: left">Stability</td>
+<td style="text-align: left">Stable</td>
+</tr>
+<tr>
+<td style="text-align: left">Replaceable</td>
+<td style="text-align: left">No</td>
+</tr>
+</tbody></table>
+
 <h3 id="yetus_add_entry"><code>yetus_add_entry</code></h3>
 
 <ul>
@@ -1052,6 +1103,46 @@
 
 <h2 id="none-none-not-replaceable">None/None/Not Replaceable</h2>
 
+<h3 id="docker_version"><code>docker_version</code></h3>
+
+<ul>
+<li>Synopsis</li>
+</ul>
+<pre class="highlight plaintext"><code>docker_version
+</code></pre>
+
+<ul>
+<li>Description</li>
+</ul>
+
+<p>None</p>
+
+<ul>
+<li>Returns</li>
+</ul>
+
+<p>Nothing</p>
+
+<table><thead>
+<tr>
+<th style="text-align: left">Classification</th>
+<th style="text-align: left">Level</th>
+</tr>
+</thead><tbody>
+<tr>
+<td style="text-align: left">Audience</td>
+<td style="text-align: left">None</td>
+</tr>
+<tr>
+<td style="text-align: left">Stability</td>
+<td style="text-align: left">None</td>
+</tr>
+<tr>
+<td style="text-align: left">Replaceable</td>
+<td style="text-align: left">None</td>
+</tr>
+</tbody></table>
+
 <h3 id="personality_file_tests"><code>personality_file_tests</code></h3>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-apidocs/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-apidocs/index.html 
b/documentation/in-progress/precommit-apidocs/index.html
index ab0c92b..d57e718 100644
--- a/documentation/in-progress/precommit-apidocs/index.html
+++ b/documentation/in-progress/precommit-apidocs/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-apidocs/plugins/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-apidocs/plugins/index.html 
b/documentation/in-progress/precommit-apidocs/plugins/index.html
index 7e52bbb..366273c 100644
--- a/documentation/in-progress/precommit-apidocs/plugins/index.html
+++ b/documentation/in-progress/precommit-apidocs/plugins/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>
@@ -136,25 +141,27 @@
 <li><a 
href="#ant_builtin_personality_modules">ant_builtin_personality_modules</a></li>
 <li><a href="#ant_docker_support">ant_docker_support</a></li>
 <li><a href="#ant_executor">ant_executor</a></li>
+<li><a href="#ant_filefilter">ant_filefilter</a></li>
 <li><a href="#ant_initialize">ant_initialize</a></li>
-<li><a href="#ant_javac_count_probs">ant_javac_count_probs</a></li>
 <li><a href="#ant_modules_worker">ant_modules_worker</a></li>
 <li><a href="#ant_parse_args">ant_parse_args</a></li>
 <li><a href="#ant_usage">ant_usage</a></li>
 <li><a href="#asflicense_parse_args">asflicense_parse_args</a></li>
+<li><a href="#asflicense_usage">asflicense_usage</a></li>
 <li><a href="#asflicense_writexsl">asflicense_writexsl</a></li>
 <li><a href="#bugzilla_determine_issue">bugzilla_determine_issue</a></li>
 <li><a href="#bugzilla_http_fetch">bugzilla_http_fetch</a></li>
 <li><a href="#bugzilla_locate_patch">bugzilla_locate_patch</a></li>
 <li><a href="#bugzilla_parse_args">bugzilla_parse_args</a></li>
 <li><a href="#bugzilla_usage">bugzilla_usage</a></li>
-<li><a href="#cc_count_probs">cc_count_probs</a></li>
 <li><a href="#cc_filefilter">cc_filefilter</a></li>
 <li><a href="#checkstyle_filefilter">checkstyle_filefilter</a></li>
+<li><a href="#checkstyle_parse_args">checkstyle_parse_args</a></li>
 <li><a href="#checkstyle_postapply">checkstyle_postapply</a></li>
 <li><a href="#checkstyle_postcompile">checkstyle_postcompile</a></li>
 <li><a href="#checkstyle_preapply">checkstyle_preapply</a></li>
 <li><a href="#checkstyle_runner">checkstyle_runner</a></li>
+<li><a href="#checkstyle_usage">checkstyle_usage</a></li>
 <li><a href="#findbugs_filefilter">findbugs_filefilter</a></li>
 <li><a href="#findbugs_parse_args">findbugs_parse_args</a></li>
 <li><a href="#findbugs_rebuild">findbugs_rebuild</a></li>
@@ -172,12 +179,10 @@
 <li><a 
href="#gradle_builtin_personality_modules">gradle_builtin_personality_modules</a></li>
 <li><a href="#gradle_docker_support">gradle_docker_support</a></li>
 <li><a href="#gradle_executor">gradle_executor</a></li>
+<li><a href="#gradle_filefilter">gradle_filefilter</a></li>
 <li><a href="#gradle_initialize">gradle_initialize</a></li>
-<li><a href="#gradle_javac_count_probs">gradle_javac_count_probs</a></li>
-<li><a href="#gradle_javadoc_count_probs">gradle_javadoc_count_probs</a></li>
 <li><a href="#gradle_modules_worker">gradle_modules_worker</a></li>
 <li><a href="#gradle_parse_args">gradle_parse_args</a></li>
-<li><a href="#gradle_scalac_count_probs">gradle_scalac_count_probs</a></li>
 <li><a href="#gradle_usage">gradle_usage</a></li>
 <li><a href="#initialize_java">initialize_java</a></li>
 <li><a href="#javac_filefilter">javac_filefilter</a></li>
@@ -196,12 +201,12 @@
 <li><a 
href="#maven_builtin_personality_modules">maven_builtin_personality_modules</a></li>
 <li><a href="#maven_docker_support">maven_docker_support</a></li>
 <li><a href="#maven_executor">maven_executor</a></li>
+<li><a href="#maven_filefilter">maven_filefilter</a></li>
 <li><a href="#maven_initialize">maven_initialize</a></li>
-<li><a href="#maven_javac_count_probs">maven_javac_count_probs</a></li>
+<li><a href="#maven_javac_logfilter">maven_javac_logfilter</a></li>
 <li><a href="#maven_modules_worker">maven_modules_worker</a></li>
 <li><a href="#maven_parse_args">maven_parse_args</a></li>
 <li><a href="#maven_precheck">maven_precheck</a></li>
-<li><a href="#maven_scalac_count_probs">maven_scalac_count_probs</a></li>
 <li><a href="#maven_usage">maven_usage</a></li>
 <li><a href="#mvnsite_filefilter">mvnsite_filefilter</a></li>
 <li><a href="#nobuild_buildfile">nobuild_buildfile</a></li>
@@ -623,12 +628,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="ant_initialize"><code>ant_initialize</code></h3>
+<h3 id="ant_filefilter"><code>ant_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>ant_initialize
+<pre class="highlight plaintext"><code>ant_filefilter
 </code></pre>
 
 <ul>
@@ -663,12 +668,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="ant_javac_count_probs"><code>ant_javac_count_probs</code></h3>
+<h3 id="ant_initialize"><code>ant_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>ant_javac_count_probs
+<pre class="highlight plaintext"><code>ant_initialize
 </code></pre>
 
 <ul>
@@ -863,12 +868,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="asflicense_writexsl"><code>asflicense_writexsl</code></h3>
+<h3 id="asflicense_usage"><code>asflicense_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>asflicense_writexsl
+<pre class="highlight plaintext"><code>asflicense_usage
 </code></pre>
 
 <ul>
@@ -903,12 +908,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="bugzilla_determine_issue"><code>bugzilla_determine_issue</code></h3>
+<h3 id="asflicense_writexsl"><code>asflicense_writexsl</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>bugzilla_determine_issue
+<pre class="highlight plaintext"><code>asflicense_writexsl
 </code></pre>
 
 <ul>
@@ -943,12 +948,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="bugzilla_http_fetch"><code>bugzilla_http_fetch</code></h3>
+<h3 id="bugzilla_determine_issue"><code>bugzilla_determine_issue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>bugzilla_http_fetch
+<pre class="highlight plaintext"><code>bugzilla_determine_issue
 </code></pre>
 
 <ul>
@@ -983,12 +988,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="bugzilla_locate_patch"><code>bugzilla_locate_patch</code></h3>
+<h3 id="bugzilla_http_fetch"><code>bugzilla_http_fetch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>bugzilla_locate_patch
+<pre class="highlight plaintext"><code>bugzilla_http_fetch
 </code></pre>
 
 <ul>
@@ -1023,12 +1028,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="bugzilla_parse_args"><code>bugzilla_parse_args</code></h3>
+<h3 id="bugzilla_locate_patch"><code>bugzilla_locate_patch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>bugzilla_parse_args
+<pre class="highlight plaintext"><code>bugzilla_locate_patch
 </code></pre>
 
 <ul>
@@ -1063,12 +1068,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="bugzilla_usage"><code>bugzilla_usage</code></h3>
+<h3 id="bugzilla_parse_args"><code>bugzilla_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>bugzilla_usage
+<pre class="highlight plaintext"><code>bugzilla_parse_args
 </code></pre>
 
 <ul>
@@ -1103,12 +1108,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="cc_count_probs"><code>cc_count_probs</code></h3>
+<h3 id="bugzilla_usage"><code>bugzilla_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>cc_count_probs
+<pre class="highlight plaintext"><code>bugzilla_usage
 </code></pre>
 
 <ul>
@@ -1223,12 +1228,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="checkstyle_postapply"><code>checkstyle_postapply</code></h3>
+<h3 id="checkstyle_parse_args"><code>checkstyle_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>checkstyle_postapply
+<pre class="highlight plaintext"><code>checkstyle_parse_args
 </code></pre>
 
 <ul>
@@ -1263,12 +1268,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="checkstyle_postcompile"><code>checkstyle_postcompile</code></h3>
+<h3 id="checkstyle_postapply"><code>checkstyle_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>checkstyle_postcompile
+<pre class="highlight plaintext"><code>checkstyle_postapply
 </code></pre>
 
 <ul>
@@ -1303,12 +1308,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="checkstyle_preapply"><code>checkstyle_preapply</code></h3>
+<h3 id="checkstyle_postcompile"><code>checkstyle_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>checkstyle_preapply
+<pre class="highlight plaintext"><code>checkstyle_postcompile
 </code></pre>
 
 <ul>
@@ -1343,12 +1348,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="checkstyle_runner"><code>checkstyle_runner</code></h3>
+<h3 id="checkstyle_preapply"><code>checkstyle_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>checkstyle_runner
+<pre class="highlight plaintext"><code>checkstyle_preapply
 </code></pre>
 
 <ul>
@@ -1383,12 +1388,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="findbugs_filefilter"><code>findbugs_filefilter</code></h3>
+<h3 id="checkstyle_runner"><code>checkstyle_runner</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>findbugs_filefilter
+<pre class="highlight plaintext"><code>checkstyle_runner
 </code></pre>
 
 <ul>
@@ -1423,12 +1428,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="findbugs_parse_args"><code>findbugs_parse_args</code></h3>
+<h3 id="checkstyle_usage"><code>checkstyle_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>findbugs_parse_args
+<pre class="highlight plaintext"><code>checkstyle_usage
 </code></pre>
 
 <ul>
@@ -1463,12 +1468,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="findbugs_rebuild"><code>findbugs_rebuild</code></h3>
+<h3 id="findbugs_filefilter"><code>findbugs_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>findbugs_rebuild
+<pre class="highlight plaintext"><code>findbugs_filefilter
 </code></pre>
 
 <ul>
@@ -1503,12 +1508,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="findbugs_usage"><code>findbugs_usage</code></h3>
+<h3 id="findbugs_parse_args"><code>findbugs_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>findbugs_usage
+<pre class="highlight plaintext"><code>findbugs_parse_args
 </code></pre>
 
 <ul>
@@ -1543,19 +1548,19 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_breakup_url"><code>github_breakup_url</code></h3>
+<h3 id="findbugs_rebuild"><code>findbugs_rebuild</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_breakup_url ## @params url
+<pre class="highlight plaintext"><code>findbugs_rebuild
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>given a URL, break it up into github plugin globals this will 
<em>override</em> any personality or yetus defaults</p>
+<p>None</p>
 
 <ul>
 <li>Returns</li>
@@ -1583,12 +1588,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_determine_issue"><code>github_determine_issue</code></h3>
+<h3 id="findbugs_usage"><code>findbugs_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_determine_issue
+<pre class="highlight plaintext"><code>findbugs_usage
 </code></pre>
 
 <ul>
@@ -1623,19 +1628,19 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_find_jira_title"><code>github_find_jira_title</code></h3>
+<h3 id="github_breakup_url"><code>github_breakup_url</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_find_jira_title
+<pre class="highlight plaintext"><code>github_breakup_url ## @params url
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>based upon a github PR, attempt to link back to JIRA</p>
+<p>given a URL, break it up into github plugin globals this will 
<em>override</em> any personality or yetus defaults</p>
 
 <ul>
 <li>Returns</li>
@@ -1663,19 +1668,19 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_jira_bridge"><code>github_jira_bridge</code></h3>
+<h3 id="github_determine_issue"><code>github_determine_issue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_jira_bridge
+<pre class="highlight plaintext"><code>github_determine_issue
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>this gets called when JIRA thinks this issue is just a pointer to github 
WARNING: Called from JIRA plugin!</p>
+<p>None</p>
 
 <ul>
 <li>Returns</li>
@@ -1703,19 +1708,19 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_linecomments"><code>github_linecomments</code></h3>
+<h3 id="github_find_jira_title"><code>github_find_jira_title</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_linecomments
+<pre class="highlight plaintext"><code>github_find_jira_title
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>None</p>
+<p>based upon a github PR, attempt to link back to JIRA</p>
 
 <ul>
 <li>Returns</li>
@@ -1743,19 +1748,19 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_locate_patch"><code>github_locate_patch</code></h3>
+<h3 id="github_jira_bridge"><code>github_jira_bridge</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_locate_patch
+<pre class="highlight plaintext"><code>github_jira_bridge
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>None</p>
+<p>this gets called when JIRA thinks this issue is just a pointer to github 
WARNING: Called from JIRA plugin!</p>
 
 <ul>
 <li>Returns</li>
@@ -1783,12 +1788,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_parse_args"><code>github_parse_args</code></h3>
+<h3 id="github_linecomments"><code>github_linecomments</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_parse_args
+<pre class="highlight plaintext"><code>github_linecomments
 </code></pre>
 
 <ul>
@@ -1823,12 +1828,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="github_usage"><code>github_usage</code></h3>
+<h3 id="github_locate_patch"><code>github_locate_patch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>github_usage
+<pre class="highlight plaintext"><code>github_locate_patch
 </code></pre>
 
 <ul>
@@ -1863,12 +1868,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_buildfile"><code>gradle_buildfile</code></h3>
+<h3 id="github_parse_args"><code>github_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_buildfile
+<pre class="highlight plaintext"><code>github_parse_args
 </code></pre>
 
 <ul>
@@ -1903,12 +1908,12 @@
 </tr>
 </tbody></table>
 
-<h3 
id="gradle_builtin_personality_file_tests"><code>gradle_builtin_personality_file_tests</code></h3>
+<h3 id="github_usage"><code>github_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_builtin_personality_file_tests
+<pre class="highlight plaintext"><code>github_usage
 </code></pre>
 
 <ul>
@@ -1943,12 +1948,12 @@
 </tr>
 </tbody></table>
 
-<h3 
id="gradle_builtin_personality_modules"><code>gradle_builtin_personality_modules</code></h3>
+<h3 id="gradle_buildfile"><code>gradle_buildfile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_builtin_personality_modules
+<pre class="highlight plaintext"><code>gradle_buildfile
 </code></pre>
 
 <ul>
@@ -1983,12 +1988,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_docker_support"><code>gradle_docker_support</code></h3>
+<h3 
id="gradle_builtin_personality_file_tests"><code>gradle_builtin_personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_docker_support
+<pre class="highlight plaintext"><code>gradle_builtin_personality_file_tests
 </code></pre>
 
 <ul>
@@ -2023,12 +2028,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_executor"><code>gradle_executor</code></h3>
+<h3 
id="gradle_builtin_personality_modules"><code>gradle_builtin_personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_executor
+<pre class="highlight plaintext"><code>gradle_builtin_personality_modules
 </code></pre>
 
 <ul>
@@ -2063,12 +2068,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_initialize"><code>gradle_initialize</code></h3>
+<h3 id="gradle_docker_support"><code>gradle_docker_support</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_initialize
+<pre class="highlight plaintext"><code>gradle_docker_support
 </code></pre>
 
 <ul>
@@ -2103,12 +2108,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_javac_count_probs"><code>gradle_javac_count_probs</code></h3>
+<h3 id="gradle_executor"><code>gradle_executor</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_javac_count_probs
+<pre class="highlight plaintext"><code>gradle_executor
 </code></pre>
 
 <ul>
@@ -2143,12 +2148,12 @@
 </tr>
 </tbody></table>
 
-<h3 
id="gradle_javadoc_count_probs"><code>gradle_javadoc_count_probs</code></h3>
+<h3 id="gradle_filefilter"><code>gradle_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_javadoc_count_probs
+<pre class="highlight plaintext"><code>gradle_filefilter
 </code></pre>
 
 <ul>
@@ -2183,12 +2188,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_modules_worker"><code>gradle_modules_worker</code></h3>
+<h3 id="gradle_initialize"><code>gradle_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_modules_worker
+<pre class="highlight plaintext"><code>gradle_initialize
 </code></pre>
 
 <ul>
@@ -2223,12 +2228,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_parse_args"><code>gradle_parse_args</code></h3>
+<h3 id="gradle_modules_worker"><code>gradle_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_parse_args
+<pre class="highlight plaintext"><code>gradle_modules_worker
 </code></pre>
 
 <ul>
@@ -2263,12 +2268,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="gradle_scalac_count_probs"><code>gradle_scalac_count_probs</code></h3>
+<h3 id="gradle_parse_args"><code>gradle_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>gradle_scalac_count_probs
+<pre class="highlight plaintext"><code>gradle_parse_args
 </code></pre>
 
 <ul>
@@ -3023,12 +3028,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_initialize"><code>maven_initialize</code></h3>
+<h3 id="maven_filefilter"><code>maven_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_initialize
+<pre class="highlight plaintext"><code>maven_filefilter
 </code></pre>
 
 <ul>
@@ -3063,12 +3068,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_javac_count_probs"><code>maven_javac_count_probs</code></h3>
+<h3 id="maven_initialize"><code>maven_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_javac_count_probs
+<pre class="highlight plaintext"><code>maven_initialize
 </code></pre>
 
 <ul>
@@ -3103,12 +3108,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_modules_worker"><code>maven_modules_worker</code></h3>
+<h3 id="maven_javac_logfilter"><code>maven_javac_logfilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_modules_worker
+<pre class="highlight plaintext"><code>maven_javac_logfilter
 </code></pre>
 
 <ul>
@@ -3143,12 +3148,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_parse_args"><code>maven_parse_args</code></h3>
+<h3 id="maven_modules_worker"><code>maven_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_parse_args
+<pre class="highlight plaintext"><code>maven_modules_worker
 </code></pre>
 
 <ul>
@@ -3183,12 +3188,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_precheck"><code>maven_precheck</code></h3>
+<h3 id="maven_parse_args"><code>maven_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_precheck
+<pre class="highlight plaintext"><code>maven_parse_args
 </code></pre>
 
 <ul>
@@ -3223,12 +3228,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="maven_scalac_count_probs"><code>maven_scalac_count_probs</code></h3>
+<h3 id="maven_precheck"><code>maven_precheck</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>maven_scalac_count_probs
+<pre class="highlight plaintext"><code>maven_precheck
 </code></pre>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-apidocs/smart-apply-patch/index.html
----------------------------------------------------------------------
diff --git 
a/documentation/in-progress/precommit-apidocs/smart-apply-patch/index.html 
b/documentation/in-progress/precommit-apidocs/smart-apply-patch/index.html
index f7ce6e5..e1c6023 100644
--- a/documentation/in-progress/precommit-apidocs/smart-apply-patch/index.html
+++ b/documentation/in-progress/precommit-apidocs/smart-apply-patch/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-apidocs/test-patch/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-apidocs/test-patch/index.html 
b/documentation/in-progress/precommit-apidocs/test-patch/index.html
index dc942c4..25402a8 100644
--- a/documentation/in-progress/precommit-apidocs/test-patch/index.html
+++ b/documentation/in-progress/precommit-apidocs/test-patch/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>
@@ -154,7 +159,7 @@
 <li><a href="#compile">compile</a></li>
 <li><a href="#compile_cycle">compile_cycle</a></li>
 <li><a href="#distclean">distclean</a></li>
-<li><a href="#generic_count_probs">generic_count_probs</a></li>
+<li><a href="#generic_logfilter">generic_logfilter</a></li>
 <li><a href="#generic_post_handler">generic_post_handler</a></li>
 <li><a href="#generic_postlog_compare">generic_postlog_compare</a></li>
 <li><a href="#generic_pre_handler">generic_pre_handler</a></li>
@@ -169,7 +174,6 @@
 <li>Private/Stable/Replaceable
 
 <ul>
-<li><a href="#finish_docker_stats">finish_docker_stats</a></li>
 <li><a href="#prepopulate_footer">prepopulate_footer</a></li>
 <li><a href="#report_jvm_version">report_jvm_version</a></li>
 </ul></li>
@@ -1128,12 +1132,12 @@
 </tr>
 </tbody></table>
 
-<h3 id="generic_count_probs"><code>generic_count_probs</code></h3>
+<h3 id="generic_logfilter"><code>generic_logfilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-<pre class="highlight plaintext"><code>generic_count_probs
+<pre class="highlight plaintext"><code>generic_logfilter
 </code></pre>
 
 <ul>
@@ -1580,46 +1584,6 @@
 
 <h2 id="private-stable-replaceable">Private/Stable/Replaceable</h2>
 
-<h3 id="finish_docker_stats"><code>finish_docker_stats</code></h3>
-
-<ul>
-<li>Synopsis</li>
-</ul>
-<pre class="highlight plaintext"><code>finish_docker_stats
-</code></pre>
-
-<ul>
-<li>Description</li>
-</ul>
-
-<p>Put docker stats in various tables</p>
-
-<ul>
-<li>Returns</li>
-</ul>
-
-<p>Nothing</p>
-
-<table><thead>
-<tr>
-<th style="text-align: left">Classification</th>
-<th style="text-align: left">Level</th>
-</tr>
-</thead><tbody>
-<tr>
-<td style="text-align: left">Audience</td>
-<td style="text-align: left">Private</td>
-</tr>
-<tr>
-<td style="text-align: left">Stability</td>
-<td style="text-align: left">Stable</td>
-</tr>
-<tr>
-<td style="text-align: left">Replaceable</td>
-<td style="text-align: left">Yes</td>
-</tr>
-</tbody></table>
-
 <h3 id="prepopulate_footer"><code>prepopulate_footer</code></h3>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-architecture/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-architecture/index.html 
b/documentation/in-progress/precommit-architecture/index.html
index 83f64bd..80d0570 100644
--- a/documentation/in-progress/precommit-architecture/index.html
+++ b/documentation/in-progress/precommit-architecture/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-basic/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-basic/index.html 
b/documentation/in-progress/precommit-basic/index.html
index 0f51c09..47c0035 100644
--- a/documentation/in-progress/precommit-basic/index.html
+++ b/documentation/in-progress/precommit-basic/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-bugsystems/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-bugsystems/index.html 
b/documentation/in-progress/precommit-bugsystems/index.html
index b56ae9d..ada3036 100644
--- a/documentation/in-progress/precommit-bugsystems/index.html
+++ b/documentation/in-progress/precommit-bugsystems/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-buildtools/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-buildtools/index.html 
b/documentation/in-progress/precommit-buildtools/index.html
index 16e5f9b..31a775c 100644
--- a/documentation/in-progress/precommit-buildtools/index.html
+++ b/documentation/in-progress/precommit-buildtools/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-glossary/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-glossary/index.html 
b/documentation/in-progress/precommit-glossary/index.html
index ea9f4c8..c6c2c2b 100644
--- a/documentation/in-progress/precommit-glossary/index.html
+++ b/documentation/in-progress/precommit-glossary/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-patchnames/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-patchnames/index.html 
b/documentation/in-progress/precommit-patchnames/index.html
index bfe133e..bfb5ce6 100644
--- a/documentation/in-progress/precommit-patchnames/index.html
+++ b/documentation/in-progress/precommit-patchnames/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-smart-apply-patch/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-smart-apply-patch/index.html 
b/documentation/in-progress/precommit-smart-apply-patch/index.html
index 39a7eef..c9a392c 100644
--- a/documentation/in-progress/precommit-smart-apply-patch/index.html
+++ b/documentation/in-progress/precommit-smart-apply-patch/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/precommit-testformats/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/precommit-testformats/index.html 
b/documentation/in-progress/precommit-testformats/index.html
index dbdb122..905b26e 100644
--- a/documentation/in-progress/precommit-testformats/index.html
+++ b/documentation/in-progress/precommit-testformats/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/documentation/in-progress/releasedocmaker/index.html
----------------------------------------------------------------------
diff --git a/documentation/in-progress/releasedocmaker/index.html 
b/documentation/in-progress/releasedocmaker/index.html
index 0c3d579..28188bb 100644
--- a/documentation/in-progress/releasedocmaker/index.html
+++ b/documentation/in-progress/releasedocmaker/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/downloads/index.html
----------------------------------------------------------------------
diff --git a/downloads/index.html b/downloads/index.html
index dc8da38..2ec3ce4 100644
--- a/downloads/index.html
+++ b/downloads/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>
@@ -114,7 +119,7 @@
 
 <p>Coming soon!</p>
 
-<p>As a new top-level project split from another top level Apache project, we 
+<p>As a new top-level project split from another top level Apache project, we
 are currently establishing an independent build and release process.  If you 
would
 like to help out, check out the Getting Involved link above!</p>
 

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index e9efc4f..5b90e91 100644
--- a/index.html
+++ b/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

http://git-wip-us.apache.org/repos/asf/yetus/blob/11a22fb0/mailinglists/index.html
----------------------------------------------------------------------
diff --git a/mailinglists/index.html b/mailinglists/index.html
index 550540e..5c96eb4 100644
--- a/mailinglists/index.html
+++ b/mailinglists/index.html
@@ -50,7 +50,12 @@
         <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
                 <li><a href="/downloads/">Downloads</a>
-                <li><a href="/documentation/in-progress/">Documentation</a>
+                <li class="dropdown">
+                    <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Documentation <span class="caret"></span></a>
+                    <ul class="dropdown-menu" role="menu">
+                      <li><a href="/documentation/in-progress/">In Progress 
Docs for Contributors</a>
+                      </li>
+                    </ul>
                 </li>
                 <li class="dropdown">
                     <a class="dropdown-toggle" data-toggle="dropdown" 
href="#">Get Involved <span class="caret"></span></a>

Reply via email to