You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-commits@maven.apache.org by ol...@apache.org on 2022/06/03 09:48:17 UTC

svn commit: r1901590 [20/43] - in /maven/website/components/surefire-archives/surefire-LATEST: ./ css/ js/ surefire-logger-api/ surefire-logger-api/apidocs/ surefire-logger-api/apidocs/jquery/ surefire-logger-api/apidocs/jquery/external/ surefire-logge...

Modified: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/search.js
==============================================================================
--- maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/search.js (original)
+++ maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/search.js Fri Jun  3 09:48:15 2022
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -24,88 +24,65 @@
  */
 
 var noResult = {l: "No results found"};
-var loading = {l: "Loading search index..."};
 var catModules = "Modules";
 var catPackages = "Packages";
 var catTypes = "Types";
 var catMembers = "Members";
-var catSearchTags = "Search Tags";
-var highlight = "<span class=\"result-highlight\">$&</span>";
-var searchPattern = "";
-var fallbackPattern = "";
-var RANKING_THRESHOLD = 2;
-var NO_MATCH = 0xffff;
-var MIN_RESULTS = 3;
-var MAX_RESULTS = 500;
-var UNNAMED = "<Unnamed>";
-function escapeHtml(str) {
-    return str.replace(/</g, "&lt;").replace(/>/g, "&gt;");
-}
-function getHighlightedText(item, matcher, fallbackMatcher) {
-    var escapedItem = escapeHtml(item);
-    var highlighted = escapedItem.replace(matcher, highlight);
-    if (highlighted === escapedItem) {
-        highlighted = escapedItem.replace(fallbackMatcher, highlight)
+var catSearchTags = "SearchTags";
+var highlight = "<span class=\"resultHighlight\">$&</span>";
+var camelCaseRegexp = "";
+var secondaryMatcher = "";
+function getHighlightedText(item) {
+    var ccMatcher = new RegExp(camelCaseRegexp);
+    var label = item.replace(ccMatcher, highlight);
+    if (label === item) {
+        label = item.replace(secondaryMatcher, highlight);
     }
-    return highlighted;
+    return label;
 }
 function getURLPrefix(ui) {
     var urlPrefix="";
-    var slash = "/";
-    if (ui.item.category === catModules) {
-        return ui.item.l + slash;
-    } else if (ui.item.category === catPackages && ui.item.m) {
-        return ui.item.m + slash;
-    } else if (ui.item.category === catTypes || ui.item.category === catMembers) {
-        if (ui.item.m) {
-            urlPrefix = ui.item.m + slash;
-        } else {
+    if (useModuleDirectories) {
+        var slash = "/";
+        if (ui.item.category === catModules) {
+            return ui.item.l + slash;
+        } else if (ui.item.category === catPackages && ui.item.m) {
+            return ui.item.m + slash;
+        } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) {
             $.each(packageSearchIndex, function(index, item) {
-                if (item.m && ui.item.p === item.l) {
+                if (ui.item.p == item.l) {
                     urlPrefix = item.m + slash;
                 }
             });
+            return urlPrefix;
+        } else {
+            return urlPrefix;
         }
     }
     return urlPrefix;
 }
-function createSearchPattern(term) {
-    var pattern = "";
-    var isWordToken = false;
-    term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) {
-        if (index > 0) {
-            // whitespace between identifiers is significant
-            pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*";
+var watermark = 'Search';
+$(function() {
+    $("#search").val('');
+    $("#search").prop("disabled", false);
+    $("#reset").prop("disabled", false);
+    $("#search").val(watermark).addClass('watermark');
+    $("#search").blur(function() {
+        if ($(this).val().length == 0) {
+            $(this).val(watermark).addClass('watermark');
         }
-        var tokens = w.split(/(?=[A-Z,.()<>[\/])/);
-        for (var i = 0; i < tokens.length; i++) {
-            var s = tokens[i];
-            if (s === "") {
-                continue;
-            }
-            pattern += $.ui.autocomplete.escapeRegex(s);
-            isWordToken =  /\w$/.test(s);
-            if (isWordToken) {
-                pattern += "([a-z0-9_$<>\\[\\]]*?)";
-            }
+    });
+    $("#search").on('click keydown', function() {
+        if ($(this).val() == watermark) {
+            $(this).val('').removeClass('watermark');
         }
     });
-    return pattern;
-}
-function createMatcher(pattern, flags) {
-    var isCamelCase = /[A-Z]/.test(pattern);
-    return new RegExp(pattern, flags + (isCamelCase ? "" : "i"));
-}
-$(function() {
-    var search = $("#search-input");
-    var reset = $("#reset-button");
-    search.val('');
-    search.prop("disabled", false);
-    reset.prop("disabled", false);
-    reset.click(function() {
-        search.val('').focus();
+    $("#reset").click(function() {
+        $("#search").val('');
+        $("#search").focus();
     });
-    search.focus();
+    $("#search").focus();
+    $("#search")[0].setSelectionRange(0, 0);
 });
 $.widget("custom.catcomplete", $.ui.autocomplete, {
     _create: function() {
@@ -113,246 +90,224 @@ $.widget("custom.catcomplete", $.ui.auto
         this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
     },
     _renderMenu: function(ul, items) {
-        var rMenu = this;
-        var currentCategory = "";
+        var rMenu = this,
+                currentCategory = "";
         rMenu.menu.bindings = $();
         $.each(items, function(index, item) {
             var li;
-            if (item.category && item.category !== currentCategory) {
+            if (item.l !== noResult.l && item.category !== currentCategory) {
                 ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>");
                 currentCategory = item.category;
             }
             li = rMenu._renderItemData(ul, item);
             if (item.category) {
                 li.attr("aria-label", item.category + " : " + item.l);
-                li.attr("class", "result-item");
+                li.attr("class", "resultItem");
             } else {
                 li.attr("aria-label", item.l);
-                li.attr("class", "result-item");
+                li.attr("class", "resultItem");
             }
         });
     },
     _renderItem: function(ul, item) {
         var label = "";
-        var matcher = createMatcher(escapeHtml(searchPattern), "g");
-        var fallbackMatcher = new RegExp(fallbackPattern, "gi")
         if (item.category === catModules) {
-            label = getHighlightedText(item.l, matcher, fallbackMatcher);
+            label = getHighlightedText(item.l);
         } else if (item.category === catPackages) {
-            label = getHighlightedText(item.l, matcher, fallbackMatcher);
+            label = (item.m)
+                    ? getHighlightedText(item.m + "/" + item.l)
+                    : getHighlightedText(item.l);
         } else if (item.category === catTypes) {
-            label = (item.p && item.p !== UNNAMED)
-                    ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher)
-                    : getHighlightedText(item.l, matcher, fallbackMatcher);
+            label = (item.p)
+                    ? getHighlightedText(item.p + "." + item.l)
+                    : getHighlightedText(item.l);
         } else if (item.category === catMembers) {
-            label = (item.p && item.p !== UNNAMED)
-                    ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher)
-                    : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher);
+            label = getHighlightedText(item.p + "." + (item.c + "." + item.l));
         } else if (item.category === catSearchTags) {
-            label = getHighlightedText(item.l, matcher, fallbackMatcher);
+            label = getHighlightedText(item.l);
         } else {
             label = item.l;
         }
         var li = $("<li/>").appendTo(ul);
         var div = $("<div/>").appendTo(li);
-        if (item.category === catSearchTags && item.h) {
+        if (item.category === catSearchTags) {
             if (item.d) {
-                div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span><br><span class=\"search-tag-desc-result\">"
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span><br><span class=\"searchTagDescResult\">"
                                 + item.d + "</span><br>");
             } else {
-                div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span>");
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span>");
             }
         } else {
-            if (item.m) {
-                div.html(item.m + "/" + label);
-            } else {
-                div.html(label);
-            }
+            div.html(label);
         }
         return li;
     }
 });
-function rankMatch(match, category) {
-    if (!match) {
-        return NO_MATCH;
-    }
-    var index = match.index;
-    var input = match.input;
-    var leftBoundaryMatch = 2;
-    var periferalMatch = 0;
-    // make sure match is anchored on a left word boundary
-    if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) {
-        leftBoundaryMatch = 0;
-    } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) {
-        leftBoundaryMatch = 1;
-    }
-    var matchEnd = index + match[0].length;
-    var leftParen = input.indexOf("(");
-    var endOfName = leftParen > -1 ? leftParen : input.length;
-    // exclude peripheral matches
-    if (category !== catModules && category !== catSearchTags) {
-        var delim = category === catPackages ? "/" : ".";
-        if (leftParen > -1 && leftParen < index) {
-            periferalMatch += 2;
-        } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) {
-            periferalMatch += 2;
-        }
-    }
-    var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match
-    for (var i = 1; i < match.length; i++) {
-        // lower ranking if parts of the name are missing
-        if (match[i])
-            delta += match[i].length;
-    }
-    if (category === catTypes) {
-        // lower ranking if a type name contains unmatched camel-case parts
-        if (/[A-Z]/.test(input.substring(matchEnd)))
-            delta += 5;
-        if (/[A-Z]/.test(input.substring(0, index)))
-            delta += 5;
-    }
-    return leftBoundaryMatch + periferalMatch + (delta / 200);
-
-}
-function doSearch(request, response) {
-    var result = [];
-    searchPattern = createSearchPattern(request.term);
-    fallbackPattern = createSearchPattern(request.term.toLowerCase());
-    if (searchPattern === "") {
-        return this.close();
-    }
-    var camelCaseMatcher = createMatcher(searchPattern, "");
-    var fallbackMatcher = new RegExp(fallbackPattern, "i");
+$(function() {
+    $("#search").catcomplete({
+        minLength: 1,
+        delay: 100,
+        source: function(request, response) {
+            var result = new Array();
+            var presult = new Array();
+            var tresult = new Array();
+            var mresult = new Array();
+            var tgresult = new Array();
+            var secondaryresult = new Array();
+            var displayCount = 0;
+            var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i");
+            camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)");
+            var camelCaseMatcher = new RegExp("^" + camelCaseRegexp);
+            secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
 
-    function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) {
-        if (indexArray) {
-            var newResults = [];
-            $.each(indexArray, function (i, item) {
-                item.category = category;
-                var ranking = rankMatch(matcher.exec(nameFunc(item)), category);
-                if (ranking < RANKING_THRESHOLD) {
-                    newResults.push({ranking: ranking, item: item});
-                }
-                return newResults.length <= MAX_RESULTS;
-            });
-            return newResults.sort(function(e1, e2) {
-                return e1.ranking - e2.ranking;
-            }).map(function(e) {
-                return e.item;
-            });
-        }
-        return [];
-    }
-    function searchIndex(indexArray, category, nameFunc) {
-        var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc);
-        result = result.concat(primaryResults);
-        if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) {
-            var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc);
-            result = result.concat(secondaryResults.filter(function (item) {
-                return primaryResults.indexOf(item) === -1;
-            }));
-        }
-    }
+            // Return the nested innermost name from the specified object
+            function nestedName(e) {
+                return e.l.substring(e.l.lastIndexOf(".") + 1);
+            }
 
-    searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; });
-    searchIndex(packageSearchIndex, catPackages, function(item) {
-        return (item.m && request.term.indexOf("/") > -1)
-            ? (item.m + "/" + item.l) : item.l;
-    });
-    searchIndex(typeSearchIndex, catTypes, function(item) {
-        return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l;
-    });
-    searchIndex(memberSearchIndex, catMembers, function(item) {
-        return request.term.indexOf(".") > -1
-            ? item.p + "." + item.c + "." + item.l : item.l;
-    });
-    searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; });
+            function concatResults(a1, a2) {
+                a1 = a1.concat(a2);
+                a2.length = 0;
+                return a1;
+            }
 
-    if (!indexFilesLoaded()) {
-        updateSearchResults = function() {
-            doSearch(request, response);
-        }
-        result.unshift(loading);
-    } else {
-        updateSearchResults = function() {};
-    }
-    response(result);
-}
-$(function() {
-    var expanded = false;
-    var windowWidth;
-    function collapse() {
-        if (expanded) {
-            $("div#navbar-top").removeAttr("style");
-            $("button#navbar-toggle-button")
-                .removeClass("expanded")
-                .attr("aria-expanded", "false");
-            expanded = false;
-        }
-    }
-    $("button#navbar-toggle-button").click(function (e) {
-        if (expanded) {
-            collapse();
-        } else {
-            $("div#navbar-top").height($("#navbar-top").prop("scrollHeight"));
-            $("button#navbar-toggle-button")
-                .addClass("expanded")
-                .attr("aria-expanded", "true");
-            expanded = true;
-            windowWidth = window.innerWidth;
-        }
-    });
-    $("ul.sub-nav-list-small li a").click(collapse);
-    $("input#search-input").focus(collapse);
-    $("main").click(collapse);
-    $(window).on("orientationchange", collapse).on("resize", function(e) {
-        if (expanded && windowWidth !== window.innerWidth) collapse();
-    });
-    $("#search-input").catcomplete({
-        minLength: 1,
-        delay: 300,
-        source: doSearch,
+            if (moduleSearchIndex) {
+                var mdleCount = 0;
+                $.each(moduleSearchIndex, function(index, item) {
+                    item.category = catModules;
+                    if (exactMatcher.test(item.l)) {
+                        result.push(item);
+                        mdleCount++;
+                    } else if (camelCaseMatcher.test(item.l)) {
+                        result.push(item);
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                displayCount = mdleCount;
+                result = concatResults(result, secondaryresult);
+            }
+            if (packageSearchIndex) {
+                var pCount = 0;
+                var pkg = "";
+                $.each(packageSearchIndex, function(index, item) {
+                    item.category = catPackages;
+                    pkg = (item.m)
+                            ? (item.m + "/" + item.l)
+                            : item.l;
+                    if (exactMatcher.test(item.l)) {
+                        presult.push(item);
+                        pCount++;
+                    } else if (camelCaseMatcher.test(pkg)) {
+                        presult.push(item);
+                    } else if (secondaryMatcher.test(pkg)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(presult, secondaryresult));
+                displayCount = (pCount > displayCount) ? pCount : displayCount;
+            }
+            if (typeSearchIndex) {
+                var tCount = 0;
+                $.each(typeSearchIndex, function(index, item) {
+                    item.category = catTypes;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        tresult.push(item);
+                        tCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        tresult.push(item);
+                    } else if (secondaryMatcher.test(item.p + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tresult, secondaryresult));
+                displayCount = (tCount > displayCount) ? tCount : displayCount;
+            }
+            if (memberSearchIndex) {
+                var mCount = 0;
+                $.each(memberSearchIndex, function(index, item) {
+                    item.category = catMembers;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        mresult.push(item);
+                        mCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        mresult.push(item);
+                    } else if (secondaryMatcher.test(item.c + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(mresult, secondaryresult));
+                displayCount = (mCount > displayCount) ? mCount : displayCount;
+            }
+            if (tagSearchIndex) {
+                var tgCount = 0;
+                $.each(tagSearchIndex, function(index, item) {
+                    item.category = catSearchTags;
+                    if (exactMatcher.test(item.l)) {
+                        tgresult.push(item);
+                        tgCount++;
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tgresult, secondaryresult));
+                displayCount = (tgCount > displayCount) ? tgCount : displayCount;
+            }
+            displayCount = (displayCount > 500) ? displayCount : 500;
+            var counter = function() {
+                var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0};
+                var f = function(item) {
+                    count[item.category] += 1;
+                    return (count[item.category] <= displayCount);
+                };
+                return f;
+            }();
+            response(result.filter(counter));
+        },
         response: function(event, ui) {
             if (!ui.content.length) {
                 ui.content.push(noResult);
             } else {
-                $("#search-input").empty();
+                $("#search").empty();
             }
         },
         autoFocus: true,
-        focus: function(event, ui) {
-            return false;
-        },
         position: {
             collision: "flip"
         },
         select: function(event, ui) {
-            if (ui.item.category) {
+            if (ui.item.l !== noResult.l) {
                 var url = getURLPrefix(ui);
                 if (ui.item.category === catModules) {
-                    url += "module-summary.html";
+                    if (useModuleDirectories) {
+                        url += "module-summary.html";
+                    } else {
+                        url = ui.item.l + "-summary.html";
+                    }
                 } else if (ui.item.category === catPackages) {
-                    if (ui.item.u) {
-                        url = ui.item.u;
+                    if (ui.item.url) {
+                        url = ui.item.url;
                     } else {
-                        url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
+                    url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
                     }
                 } else if (ui.item.category === catTypes) {
-                    if (ui.item.u) {
-                        url = ui.item.u;
-                    } else if (ui.item.p === UNNAMED) {
+                    if (ui.item.url) {
+                        url = ui.item.url;
+                    } else if (ui.item.p === "<Unnamed>") {
                         url += ui.item.l + ".html";
                     } else {
                         url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
                     }
                 } else if (ui.item.category === catMembers) {
-                    if (ui.item.p === UNNAMED) {
+                    if (ui.item.p === "<Unnamed>") {
                         url += ui.item.c + ".html" + "#";
                     } else {
                         url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
                     }
-                    if (ui.item.u) {
-                        url += ui.item.u;
+                    if (ui.item.url) {
+                        url += ui.item.url;
                     } else {
                         url += ui.item.l;
                     }
@@ -364,8 +319,8 @@ $(function() {
                 } else {
                     window.location.href = pathtoroot + url;
                 }
-                $("#search-input").focus();
+                $("#search").focus();
             }
         }
     });
-});
+});
\ No newline at end of file

Modified: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/stylesheet.css
==============================================================================
--- maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/stylesheet.css (original)
+++ maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/stylesheet.css Fri Jun  3 09:48:15 2022
@@ -1,4 +1,4 @@
-/*
+/* 
  * Javadoc style sheet
  */
 
@@ -40,6 +40,13 @@ a[href]:hover, a[href]:focus {
 a[name] {
     color:#353833;
 }
+a[name]:before, a[name]:target, a[id]:before, a[id]:target {
+    content:"";
+    display:inline-block;
+    position:relative;
+    padding-top:129px;
+    margin-top:-129px;
+}
 pre {
     font-family:'DejaVu Sans Mono', monospace;
     font-size:14px;
@@ -52,24 +59,22 @@ h2 {
 }
 h3 {
     font-size:16px;
+    font-style:italic;
 }
 h4 {
-    font-size:15px;
+    font-size:13px;
 }
 h5 {
-    font-size:14px;
+    font-size:12px;
 }
 h6 {
-    font-size:13px;
+    font-size:11px;
 }
 ul {
     list-style-type:disc;
 }
 code, tt {
     font-family:'DejaVu Sans Mono', monospace;
-}
-:not(h1, h2, h3, h4, h5, h6) > code,
-:not(h1, h2, h3, h4, h5, h6) > tt {
     font-size:14px;
     padding-top:4px;
     margin-top:8px;
@@ -80,7 +85,7 @@ dt code {
     font-size:14px;
     padding-top:4px;
 }
-.summary-table dt code {
+table tr td dt code {
     font-family:'DejaVu Sans Mono', monospace;
     font-size:14px;
     vertical-align:top;
@@ -89,10 +94,7 @@ dt code {
 sup {
     font-size:8px;
 }
-button {
-    font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
-    font-size: 14px;
-}
+
 /*
  * Styles for HTML generated by javadoc.
  *
@@ -102,188 +104,254 @@ button {
 /*
  * Styles for document title and copyright.
  */
-.about-language {
+.clear {
+    clear:both;
+    height:0px;
+    overflow:hidden;
+}
+.aboutLanguage {
     float:right;
-    padding:0 21px 8px 8px;
+    padding:0px 21px;
     font-size:11px;
+    z-index:200;
     margin-top:-9px;
-    height:2.9em;
 }
-.legal-copy {
+.legalCopy {
     margin-left:.5em;
 }
+.bar a, .bar a:link, .bar a:visited, .bar a:active {
+    color:#FFFFFF;
+    text-decoration:none;
+}
+.bar a:hover, .bar a:focus {
+    color:#bb7a2a;
+}
+.tab {
+    background-color:#0066FF;
+    color:#ffffff;
+    padding:8px;
+    width:5em;
+    font-weight:bold;
+}
 /*
  * Styles for navigation bar.
  */
-@media screen {
-    div.flex-box {
-        position:fixed;
-        display:flex;
-        flex-direction:column;
-        height: 100%;
-        width: 100%;
-    }
-    header.flex-header {
-        flex: 0 0 auto;
-    }
-    div.flex-content {
-        flex: 1 1 auto;
-        overflow-y: auto;
-    }
+.bar {
+    background-color:#4D7A97;
+    color:#FFFFFF;
+    padding:.8em .5em .4em .8em;
+    height:auto;/*height:1.8em;*/
+    font-size:11px;
+    margin:0;
+}
+.navPadding {
+    padding-top: 107px;
 }
-.top-nav {
+.fixedNav {
+    position:fixed;
+    width:100%;
+    z-index:999;
+    background-color:#ffffff;
+}
+.topNav {
     background-color:#4D7A97;
     color:#FFFFFF;
     float:left;
     padding:0;
     width:100%;
     clear:right;
-    min-height:2.8em;
+    height:2.8em;
     padding-top:10px;
     overflow:hidden;
-    font-size:12px;
-}
-button#navbar-toggle-button {
-    display:none;
+    font-size:12px; 
 }
-ul.sub-nav-list-small {
-    display: none;
+.bottomNav {
+    margin-top:10px;
+    background-color:#4D7A97;
+    color:#FFFFFF;
+    float:left;
+    padding:0;
+    width:100%;
+    clear:right;
+    height:2.8em;
+    padding-top:10px;
+    overflow:hidden;
+    font-size:12px;
 }
-.sub-nav {
+.subNav {
     background-color:#dee3e9;
     float:left;
     width:100%;
     overflow:hidden;
     font-size:12px;
 }
-.sub-nav div {
+.subNav div {
     clear:left;
     float:left;
-    padding:6px;
+    padding:0 0 5px 6px;
     text-transform:uppercase;
 }
-.sub-nav .sub-nav-list {
-    padding-top:4px;
-}
-ul.nav-list {
-    display:block;
-    margin:0 25px 0 0;
-    padding:0;
-}
-ul.sub-nav-list {
+ul.navList, ul.subNavList {
     float:left;
     margin:0 25px 0 0;
     padding:0;
 }
-ul.nav-list li {
+ul.navList li{
     list-style:none;
     float:left;
     padding: 5px 6px;
     text-transform:uppercase;
 }
-.sub-nav .nav-list-search {
+ul.navListSearch {
     float:right;
-    margin:0;
-    padding:6px;
-    clear:none;
-    text-align:right;
+    margin:0 0 0 0;
+    padding:0;
+}
+ul.navListSearch li {
+    list-style:none;
+    float:right;
+    padding: 5px 6px;
+    text-transform:uppercase;
+}
+ul.navListSearch li label {
     position:relative;
+    right:-16px;
 }
-ul.sub-nav-list li {
+ul.subNavList li {
     list-style:none;
     float:left;
 }
-.top-nav a:link, .top-nav a:active, .top-nav a:visited {
-    color:#ffffff;
+.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
+    color:#FFFFFF;
     text-decoration:none;
     text-transform:uppercase;
 }
-.top-nav a:hover {
+.topNav a:hover, .bottomNav a:hover {
+    text-decoration:none;
     color:#bb7a2a;
+    text-transform:uppercase;
 }
-.nav-bar-cell1-rev {
+.navBarCell1Rev {
     background-color:#F8981D;
     color:#253441;
     margin: auto 5px;
 }
-.skip-nav {
+.skipNav {
     position:absolute;
     top:auto;
     left:-9999px;
     overflow:hidden;
 }
 /*
- * Hide navigation links and search box in print layout
+ * Styles for page header and footer.
  */
-@media print {
-    ul.nav-list, div.sub-nav  {
-        display:none;
-    }
+.header, .footer {
+    clear:both;
+    margin:0 20px;
+    padding:5px 0 0 0;
+}
+.indexNav {
+    position:relative;
+    font-size:12px;
+    background-color:#dee3e9;
+}
+.indexNav ul {
+    margin-top:0;
+    padding:5px;
+}
+.indexNav ul li {
+    display:inline;
+    list-style-type:none;
+    padding-right:10px;
+    text-transform:uppercase;
+}
+.indexNav h1 {
+    font-size:13px;
 }
-/*
- * Styles for page header.
- */
 .title {
     color:#2c4557;
     margin:10px 0;
 }
-.sub-title {
+.subTitle {
     margin:5px 0 0 0;
 }
 .header ul {
     margin:0 0 15px 0;
     padding:0;
 }
-.header ul li {
+.footer ul {
+    margin:20px 0 5px 0;
+}
+.header ul li, .footer ul li {
     list-style:none;
     font-size:13px;
 }
 /*
  * Styles for headings.
  */
-body.class-declaration-page .summary h2,
-body.class-declaration-page .details h2,
-body.class-use-page  h2,
-body.module-declaration-page  .block-list h2 {
-    font-style: italic;
-    padding:0;
-    margin:15px 0;
+div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
+    background-color:#dee3e9;
+    border:1px solid #d0d9e0;
+    margin:0 0 6px -8px;
+    padding:7px 5px;
 }
-body.class-declaration-page .summary h3,
-body.class-declaration-page .details h3,
-body.class-declaration-page .summary .inherited-list h2 {
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
     background-color:#dee3e9;
     border:1px solid #d0d9e0;
     margin:0 0 6px -8px;
     padding:7px 5px;
 }
+ul.blockList ul.blockList li.blockList h3 {
+    padding:0;
+    margin:15px 0;
+}
+ul.blockList li.blockList h2 {
+    padding:0px 0 20px 0;
+}
 /*
  * Styles for page layout containers.
  */
-main {
+.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer,
+.allClassesContainer, .allPackagesContainer {
     clear:both;
     padding:10px 20px;
     position:relative;
 }
-dl.notes > dt {
-    font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
+.indexContainer {
+    margin:10px;
+    position:relative;
+    font-size:12px;
+}
+.indexContainer h2 {
+    font-size:13px;
+    padding:0 0 3px 0;
+}
+.indexContainer ul {
+    margin:0;
+    padding:0;
+}
+.indexContainer ul li {
+    list-style:none;
+    padding-top:2px;
+}
+.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
     font-size:12px;
     font-weight:bold;
     margin:10px 0 0 0;
     color:#4E4E4E;
 }
-dl.notes > dd {
-    margin:5px 10px 10px 0;
+.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
+    margin:5px 0 10px 0px;
     font-size:14px;
     font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
 }
-dl.name-value > dt {
+.serializedFormContainer dl.nameValue dt {
     margin-left:1px;
     font-size:1.1em;
     display:inline;
     font-weight:bold;
 }
-dl.name-value > dd {
+.serializedFormContainer dl.nameValue dd {
     margin:0 0 0 1px;
     font-size:1.1em;
     display:inline;
@@ -298,56 +366,70 @@ ul.horizontal li {
     display:inline;
     font-size:0.9em;
 }
-div.inheritance {
+ul.inheritance {
     margin:0;
     padding:0;
 }
-div.inheritance div.inheritance {
-    margin-left:2em;
+ul.inheritance li {
+    display:inline;
+    list-style:none;
 }
-ul.block-list,
-ul.details-list,
-ul.member-list,
-ul.summary-list {
+ul.inheritance li ul.inheritance {
+    margin-left:15px;
+    padding-left:15px;
+    padding-top:1px;
+}
+ul.blockList, ul.blockListLast {
     margin:10px 0 10px 0;
     padding:0;
 }
-ul.block-list > li,
-ul.details-list > li,
-ul.member-list > li,
-ul.summary-list > li {
+ul.blockList li.blockList, ul.blockListLast li.blockList {
     list-style:none;
     margin-bottom:15px;
     line-height:1.4;
 }
-.summary-table dl, .summary-table dl dt, .summary-table dl dd {
+ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
+    padding:0px 20px 5px 10px;
+    border:1px solid #ededed; 
+    background-color:#f8f8f8;
+}
+ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
+    padding:0 0 5px 8px;
+    background-color:#ffffff;
+    border:none;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
+    margin-left:0;
+    padding-left:0;
+    padding-bottom:15px;
+    border:none;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
+    list-style:none;
+    border-bottom:none;
+    padding-bottom:0;
+}
+table tr td dl, table tr td dl dt, table tr td dl dd {
     margin-top:0;
     margin-bottom:1px;
 }
-ul.see-list, ul.see-list-long {
-    padding-left: 0;
-    list-style: none;
-}
-ul.see-list li {
-    display: inline;
-}
-ul.see-list li:not(:last-child):after,
-ul.see-list-long li:not(:last-child):after {
-    content: ", ";
-    white-space: pre-wrap;
-}
 /*
  * Styles for tables.
  */
-.summary-table, .details-table {
+.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary,
+.requiresSummary, .packagesSummary, .providesSummary, .usesSummary {
     width:100%;
     border-spacing:0;
-    border-left:1px solid #EEE;
-    border-right:1px solid #EEE;
-    border-bottom:1px solid #EEE;
-    padding:0;
-}
-.caption {
+    border-left:1px solid #EEE; 
+    border-right:1px solid #EEE; 
+    border-bottom:1px solid #EEE; 
+}
+.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary  {
+    padding:0px;
+}
+.overviewSummary caption, .memberSummary caption, .typeSummary caption,
+.useSummary caption, .constantsSummary caption, .deprecatedSummary caption,
+.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption {
     position:relative;
     text-align:left;
     background-repeat:no-repeat;
@@ -355,20 +437,38 @@ ul.see-list-long li:not(:last-child):aft
     font-weight:bold;
     clear:none;
     overflow:hidden;
-    padding:0;
+    padding:0px;
     padding-top:10px;
     padding-left:1px;
-    margin:0;
+    margin:0px;
     white-space:pre;
 }
-.caption a:link, .caption a:visited {
-    color:#1f389c;
-}
-.caption a:hover,
-.caption a:active {
+.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
+.constantsSummary caption a:link, .deprecatedSummary caption a:link,
+.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link,
+.usesSummary caption a:link,
+.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
+.constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
+.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover,
+.usesSummary caption a:hover,
+.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
+.constantsSummary caption a:active, .deprecatedSummary caption a:active,
+.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active,
+.usesSummary caption a:active,
+.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
+.constantsSummary caption a:visited, .deprecatedSummary caption a:visited,
+.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited,
+.usesSummary caption a:visited {
     color:#FFFFFF;
 }
-.caption span {
+.useSummary caption a:link, .useSummary caption a:hover, .useSummary caption a:active,
+.useSummary caption a:visited {
+    color:#1f389c;
+}
+.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
+.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span,
+.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span,
+.usesSummary caption span {
     white-space:nowrap;
     padding-top:5px;
     padding-left:12px;
@@ -380,157 +480,191 @@ ul.see-list-long li:not(:last-child):aft
     border: none;
     height:16px;
 }
-div.table-tabs {
-    padding:10px 0 0 1px;
-    margin:0;
+.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span,
+.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
+    float:left;
+    background-color:#F8981D;
+    height:16px;
+}
+.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span,
+.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
+    float:left;
+    background-color:#4D7A97;
+    height:16px;
+}
+.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab,
+.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab,
+.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab,
+.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab {
+    padding-top:0px;
+    padding-left:0px;
+    padding-right:0px;
+    background-image:none;
+    float:none;
+    display:inline;
+}
+.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
+.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd,
+.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd {
+    display:none;
+    width:5px;
+    position:relative;
+    float:left;
+    background-color:#F8981D;
+}
+.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd,
+.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative; 
+    float:left;
+    background-color:#F8981D;
+}
+.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd,
+.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative;
+    background-color:#4D7A97;
+    float:left;
 }
-div.table-tabs > button {
-   border: none;
-   cursor: pointer;
-   padding: 5px 12px 7px 12px;
-   font-weight: bold;
-   margin-right: 3px;
-}
-div.table-tabs > button.active-table-tab {
-   background: #F8981D;
-   color: #253441;
-}
-div.table-tabs > button.table-tab {
-   background: #4D7A97;
-   color: #FFFFFF;
-}
-.two-column-summary {
-    display: grid;
-    grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
-}
-.three-column-summary {
-    display: grid;
-    grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto);
-}
-.four-column-summary {
-    display: grid;
-    grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto);
-}
-@media screen and (max-width: 600px) {
-    .two-column-summary {
-        display: grid;
-        grid-template-columns: 1fr;
-    }
-}
-@media screen and (max-width: 800px) {
-    .three-column-summary {
-        display: grid;
-        grid-template-columns: minmax(10%, max-content) minmax(25%, auto);
-    }
-    .three-column-summary .col-last {
-        grid-column-end: span 2;
-    }
-}
-@media screen and (max-width: 1000px) {
-    .four-column-summary {
-        display: grid;
-        grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
-    }
+.rowColor th, .altColor th {
+    font-weight:normal;
 }
-.summary-table > div, .details-table > div {
+.overviewSummary td, .memberSummary td, .typeSummary td,
+.useSummary td, .constantsSummary td, .deprecatedSummary td,
+.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td {
     text-align:left;
-    padding: 8px 3px 3px 7px;
+    padding:0px 0px 12px 10px;
 }
-.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th,
+.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td,
+.constantsSummary td {
     vertical-align:top;
-    padding-right:0;
+    padding-right:0px;
     padding-top:8px;
     padding-bottom:3px;
 }
-.table-header {
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th,
+.packagesSummary th {
     background:#dee3e9;
-    font-weight: bold;
+    text-align:left;
+    padding:8px 3px 3px 7px;
+}
+td.colFirst, th.colFirst {
+    font-size:13px;
+}
+td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
+    font-size:13px;
 }
-.col-first, .col-first {
+.constantsSummary th, .packagesSummary th {
     font-size:13px;
 }
-.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
+.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
+.providesSummary td.colLast {
+    white-space:normal;
     font-size:13px;
 }
-.col-first, .col-second, .col-constructor-name {
+.overviewSummary td.colFirst, .overviewSummary th.colFirst,
+.requiresSummary td.colFirst, .requiresSummary th.colFirst,
+.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th,
+.usesSummary td.colFirst, .usesSummary th.colFirst,
+.providesSummary td.colFirst, .providesSummary th.colFirst,
+.memberSummary td.colFirst, .memberSummary th.colFirst,
+.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName,
+.typeSummary td.colFirst, .typeSummary th.colFirst {
     vertical-align:top;
-    overflow: auto;
 }
-.col-last {
+.packagesSummary th.colLast, .packagesSummary td.colLast {
     white-space:normal;
 }
-.col-first a:link, .col-first a:visited,
-.col-second a:link, .col-second a:visited,
-.col-first a:link, .col-first a:visited,
-.col-second a:link, .col-second a:visited,
-.col-constructor-name a:link, .col-constructor-name a:visited,
-.col-summary-item-name a:link, .col-summary-item-name a:visited {
+td.colFirst a:link, td.colFirst a:visited,
+td.colSecond a:link, td.colSecond a:visited,
+th.colFirst a:link, th.colFirst a:visited,
+th.colSecond a:link, th.colSecond a:visited,
+th.colConstructorName a:link, th.colConstructorName a:visited,
+th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, 
+.constantValuesContainer td a:link, .constantValuesContainer td a:visited, 
+.allClassesContainer td a:link, .allClassesContainer td a:visited, 
+.allPackagesContainer td a:link, .allPackagesContainer td a:visited {
     font-weight:bold;
 }
-.even-row-color, .even-row-color .table-header {
+.tableSubHeadingColor {
+    background-color:#EEEEFF;
+}
+.altColor, .altColor th {
     background-color:#FFFFFF;
 }
-.odd-row-color, .odd-row-color .table-header {
+.rowColor, .rowColor th {
     background-color:#EEEEEF;
 }
 /*
  * Styles for contents.
  */
-div.block {
-    font-size:14px;
-    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+.description pre {
+    margin-top:0;
 }
-.col-last div {
-    padding-top:0;
+.deprecatedContent {
+    margin:0;
+    padding:10px 0;
 }
-.col-last a {
-    padding-bottom:3px;
+.docSummary {
+    padding:0;
 }
-.module-signature,
-.package-signature,
-.type-signature,
-.member-signature {
-    font-family:'DejaVu Sans Mono', monospace;
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
+    font-style:normal;
+}
+div.block {
     font-size:14px;
-    margin:14px 0;
-    white-space: pre-wrap;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
 }
-.module-signature,
-.package-signature,
-.type-signature {
-    margin-top: 0;
-}
-.member-signature .type-parameters-long,
-.member-signature .parameters,
-.member-signature .exceptions {
-    display: inline-block;
-    vertical-align: top;
-    white-space: pre;
+td.colLast div {
+    padding-top:0px;
 }
-.member-signature .type-parameters {
-    white-space: normal;
+td.colLast a {
+    padding-bottom:3px;
 }
 /*
  * Styles for formatting effect.
  */
-.source-line-no {
+.sourceLineNo {
     color:green;
     padding:0 30px 0 0;
 }
+h1.hidden {
+    visibility:hidden;
+    overflow:hidden;
+    font-size:10px;
+}
 .block {
     display:block;
-    margin:0 10px 5px 0;
+    margin:3px 10px 2px 0px;
     color:#474747;
 }
-.deprecated-label, .description-from-type-label, .implementation-label, .member-name-link,
-.module-label-in-package, .module-label-in-type, .package-label-in-type,
-.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
+.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink,
+.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType,
+.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel,
+.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink {
     font-weight:bold;
 }
-.deprecation-comment, .help-footnote, .preview-comment {
+.deprecationComment, .emphasizedPhrase, .interfaceName {
     font-style:italic;
 }
-.deprecation-block {
+.deprecationBlock {
     font-size:14px;
     font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
     border-style:solid;
@@ -541,31 +675,67 @@ div.block {
     margin-right:10px;
     display:inline-block;
 }
-.preview-block {
-    font-size:14px;
-    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-    border-style:solid;
-    border-width:thin;
-    border-radius:10px;
-    padding:10px;
-    margin-bottom:10px;
-    margin-right:10px;
-    display:inline-block;
-}
-div.block div.deprecation-comment {
+div.block div.deprecationComment, div.block div.block span.emphasizedPhrase,
+div.block div.block span.interfaceName {
     font-style:normal;
 }
-details.invalid-tag, span.invalid-tag {
-    font-size:14px;
-    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-    background: #ffe6e6;
-    border: thin solid #000000;
-    border-radius:2px;
-    padding: 2px 4px;
-    display:inline-block;
+div.contentContainer ul.blockList li.blockList h2 {
+    padding-bottom:0px;
+}
+/*
+ * Styles for IFRAME.
+ */
+.mainContainer {
+    margin:0 auto; 
+    padding:0; 
+    height:100%; 
+    width:100%; 
+    position:fixed; 
+    top:0; 
+    left:0;
+}
+.leftContainer {
+    height:100%;
+    position:fixed;
+    width:320px;
 }
-details.invalid-tag summary {
-    cursor: pointer;
+.leftTop {
+    position:relative;
+    float:left;
+    width:315px;
+    top:0;
+    left:0;
+    height:30%;
+    border-right:6px solid #ccc;
+    border-bottom:6px solid #ccc;
+}
+.leftBottom {
+    position:relative;
+    float:left;
+    width:315px;
+    bottom:0;
+    left:0;
+    height:70%;
+    border-right:6px solid #ccc;
+    border-top:1px solid #000;
+}
+.rightContainer {
+    position:absolute;
+    left:320px;
+    top:0;
+    bottom:0;
+    height:100%;
+    right:0;
+    border-left:1px solid #000;
+}
+.rightIframe {
+    margin:0;
+    padding:0;
+    height:100%;
+    right:30px;
+    width:100%;
+    overflow:visible;
+    margin-bottom:30px;
 }
 /*
  * Styles specific to HTML5 elements.
@@ -583,7 +753,7 @@ main, nav, header, footer, section {
     background-color:#4D7A97;
     color:#FFFFFF;
 }
-.result-item {
+.resultItem {
     font-size:13px;
 }
 .ui-autocomplete {
@@ -598,120 +768,62 @@ ul.ui-autocomplete {
     position:fixed;
     z-index:999999;
 }
-ul.ui-autocomplete li {
+ul.ui-autocomplete  li {
     float:left;
     clear:both;
-    min-width:100%;
+    width:100%;
 }
-.result-highlight {
+.resultHighlight {
     font-weight:bold;
 }
-#search-input {
+#search {
     background-image:url('resources/glass.png');
     background-size:13px;
     background-repeat:no-repeat;
     background-position:2px 3px;
     padding-left:20px;
-    width: 250px;
-    margin: 0;
+    position:relative;
+    right:-18px;
 }
-#reset-button {
-    background-color: transparent;
+#reset {
+    background-color: rgb(255,255,255);
     background-image:url('resources/x.png');
+    background-position:center;
     background-repeat:no-repeat;
-    background-size:contain;
-    border:0;
-    border-radius:0;
-    width:12px;
-    height:12px;
-    position:absolute;
-    right:12px;
-    top:10px;
-    font-size:0;
-}
-::placeholder {
-    color:#909090;
-    opacity: 1;
+    background-size:12px;
+    border:0 none;
+    width:16px;
+    height:17px;
+    position:relative;
+    left:-4px;
+    top:-4px;
+    font-size:0px;
 }
-.search-tag-desc-result {
+.watermark {
+    color:#545454;
+}
+.searchTagDescResult {
     font-style:italic;
     font-size:11px;
 }
-.search-tag-holder-result {
+.searchTagHolderResult {
     font-style:italic;
     font-size:12px;
 }
-.search-tag-result:target {
-    background-color:yellow;
+.searchTagResult:before, .searchTagResult:target {
+    color:red;
 }
-.module-graph span {
+.moduleGraph span {
     display:none;
     position:absolute;
 }
-.module-graph:hover span {
+.moduleGraph:hover span {
     display:block;
     margin: -100px 0 0 100px;
     z-index: 1;
 }
-.inherited-list {
-    margin: 10px 0 10px 0;
-}
-section.class-description {
-    line-height: 1.4;
-}
-.summary section[class$="-summary"], .details section[class$="-details"],
-.class-uses .detail, .serialized-class-details {
-    padding: 0px 20px 5px 10px;
-    border: 1px solid #ededed;
-    background-color: #f8f8f8;
-}
-.inherited-list, section[class$="-details"] .detail {
-    padding:0 0 5px 8px;
-    background-color:#ffffff;
-    border:none;
-}
-.vertical-separator {
-    padding: 0 5px;
-}
-ul.help-section-list {
-    margin: 0;
-}
-ul.help-subtoc > li {
-  display: inline-block;
-  padding-right: 5px;
-  font-size: smaller;
-}
-ul.help-subtoc > li::before {
-  content: "\2022" ;
-  padding-right:2px;
-}
-span.help-note {
-    font-style: italic;
-}
-/*
- * Indicator icon for external links.
- */
-main a[href*="://"]::after {
-    content:"";
-    display:inline-block;
-    background-image:url('data:image/svg+xml; utf8, \
-      <svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
-        <path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
-        132-240 240 120 120 240-240 132 132V0z" fill="%234a6782"/>\
-      </svg>');
-    background-size:100% 100%;
-    width:7px;
-    height:7px;
-    margin-left:2px;
-    margin-bottom:4px;
-}
-main a[href*="://"]:hover::after,
-main a[href*="://"]:focus::after {
-    background-image:url('data:image/svg+xml; utf8, \
-      <svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
-        <path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
-        132-240 240 120 120 240-240 132 132V0z" fill="%23bb7a2a"/>\
-      </svg>');
+.methodSignature {
+    white-space:normal;
 }
 
 /*
@@ -791,222 +903,4 @@ table.striped > tbody > tr > th, table.s
 }
 table.striped > tbody > tr > th {
     font-weight: normal;
-}
-/**
- * Tweak style for small screens.
- */
-@media screen and (max-width: 920px) {
-    header.flex-header {
-        max-height: 100vh;
-        overflow-y: auto;
-    }
-    div#navbar-top {
-        height: 2.8em;
-        transition: height 0.35s ease;
-    }
-    ul.nav-list {
-        display: block;
-        width: 40%;
-        float:left;
-        clear: left;
-        margin: 10px 0 0 0;
-        padding: 0;
-    }
-    ul.nav-list li {
-        float: none;
-        padding: 6px;
-        margin-left: 10px;
-        margin-top: 2px;
-    }
-    ul.sub-nav-list-small {
-        display:block;
-        height: 100%;
-        width: 50%;
-        float: right;
-        clear: right;
-        background-color: #dee3e9;
-        color: #353833;
-        margin: 6px 0 0 0;
-        padding: 0;
-    }
-    ul.sub-nav-list-small ul {
-        padding-left: 20px;
-    }
-    ul.sub-nav-list-small a:link, ul.sub-nav-list-small a:visited {
-        color:#4A6782;
-    }
-    ul.sub-nav-list-small a:hover {
-        color:#bb7a2a;
-    }
-    ul.sub-nav-list-small li {
-        list-style:none;
-        float:none;
-        padding: 6px;
-        margin-top: 1px;
-        text-transform:uppercase;
-    }
-    ul.sub-nav-list-small > li {
-        margin-left: 10px;
-    }
-    ul.sub-nav-list-small li p {
-        margin: 5px 0;
-    }
-    div#navbar-sub-list {
-        display: none;
-    }
-    .top-nav a:link, .top-nav a:active, .top-nav a:visited {
-        display: block;
-    }
-    button#navbar-toggle-button {
-        width: 3.4em;
-        height: 2.8em;
-        background-color: transparent;
-        display: block;
-        float: left;
-        border: 0;
-        margin: 0 10px;
-        cursor: pointer;
-        font-size: 10px;
-    }
-    button#navbar-toggle-button .nav-bar-toggle-icon {
-        display: block;
-        width: 24px;
-        height: 3px;
-        margin: 1px 0 4px 0;
-        border-radius: 2px;
-        transition: all 0.1s;
-        background-color: #ffffff;
-    }
-    button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) {
-        transform: rotate(45deg);
-        transform-origin: 10% 10%;
-        width: 26px;
-    }
-    button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) {
-        opacity: 0;
-    }
-    button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) {
-        transform: rotate(-45deg);
-        transform-origin: 10% 90%;
-        width: 26px;
-    }
-}
-@media screen and (max-width: 800px) {
-    .about-language {
-        padding-right: 16px;
-    }
-    ul.nav-list li {
-        margin-left: 5px;
-    }
-    ul.sub-nav-list-small > li {
-        margin-left: 5px;
-    }
-    main {
-        padding: 10px;
-    }
-    .summary section[class$="-summary"], .details section[class$="-details"],
-    .class-uses .detail, .serialized-class-details {
-        padding: 0 8px 5px 8px;
-    }
-    body {
-        -webkit-text-size-adjust: none;
-    }
-}
-@media screen and (max-width: 400px) {
-    .about-language {
-        font-size: 10px;
-        padding-right: 12px;
-    }
-}
-@media screen and (max-width: 400px) {
-    .nav-list-search {
-        width: 94%;
-    }
-    #search-input {
-        width: 70%;
-    }
-}
-@media screen and (max-width: 320px) {
-    .nav-list-search > label {
-        display: none;
-    }
-    .nav-list-search {
-        width: 90%;
-    }
-    #search-input {
-        width: 80%;
-    }
-}
-
-pre.snippet {
-    background-color: #ebecee;
-    padding: 10px;
-    margin: 12px 0;
-    overflow: auto;
-    white-space: pre;
-}
-div.snippet-container {
-    position: relative;
-}
-button.snippet-copy {
-    position: absolute;
-    top: 6px;
-    right: 6px;
-    height: 1.7em;
-    opacity: 50%;
-    transition: opacity 0.2s;
-    padding: 2px;
-    border: none;
-    cursor: pointer;
-    background: none;
-}
-button.snippet-copy img {
-    width: 18px;
-    height: 18px;
-    padding: 0.05em 0;
-    background: none;
-}
-div.snippet-container:hover button.snippet-copy {
-    opacity: 80%;
-}
-div.snippet-container button.snippet-copy:hover {
-    opacity: 100%;
-}
-button.snippet-copy span {
-    color: #3d3d3d;
-    content: attr(aria-label);
-    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
-    font-size: 85%;
-    line-height: 1.2em;
-    padding: 0.2em;
-    position: relative;
-    white-space: nowrap;
-    top: -0.5em;
-    display: none;
-}
-div.snippet-container:hover button.snippet-copy span {
-    display: inline;
-}
-button.snippet-copy:active {
-    background: #d3d3d3;
-    opacity: 100%;
-}
-@media screen and (max-width: 800px) {
-    pre.snippet {
-        padding-top: 26px;
-    }
-    button.snippet-copy {
-        top: 4px;
-        right: 4px;
-    }
-}
-pre.snippet .italic {
-    font-style: italic;
-}
-pre.snippet .bold {
-    font-weight: bold;
-}
-pre.snippet .highlighted {
-    background-color: #f7c590;
-    border-radius: 10%;
-}
+}
\ No newline at end of file

Modified: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/type-search-index.js
==============================================================================
--- maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/type-search-index.js (original)
+++ maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/type-search-index.js Fri Jun  3 09:48:15 2022
@@ -1 +1 @@
-typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLogger"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLoggerDecorator"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLoggerUtils"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"Level"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"NullConsoleLogger"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"PrintStreamLogger"}];updateSearchResults();
\ No newline at end of file
+typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLogger"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLoggerDecorator"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"ConsoleLoggerUtils"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"Level"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"NullConsoleLogger"},{"p":"org.apache.maven.plugin.surefire.log.api","l":"PrintStreamLogger"}]
\ No newline at end of file

Added: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/type-search-index.zip
==============================================================================
Binary file - no diff available.

Propchange: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/apidocs/type-search-index.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.html
==============================================================================
--- maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.html (original)
+++ maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.html Fri Jun  3 09:48:15 2022
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:checkstyle at 2022-03-31
- | Rendered using Apache Maven Fluido Skin 1.9
+ | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:checkstyle at 2022-06-03
+ | Rendered using Apache Maven Fluido Skin 1.10.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
   <head>
@@ -9,115 +9,39 @@
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
     <title>SureFire Logger API &#x2013; Checkstyle Results</title>
-    <link rel="stylesheet" href="./css/apache-maven-fluido-1.9.min.css" />
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.10.0.min.css" />
     <link rel="stylesheet" href="./css/site.css" />
     <link rel="stylesheet" href="./css/print.css" media="print" />
-    <script src="./js/apache-maven-fluido-1.9.min.js"></script>
-    <!-- Google Analytics -->
-    <script>
-      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-       (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-      ga('create', 'UA-140879-1', 'auto');
-      ga('send', 'pageview');
-      ga('set', 'anonymizeIp', true);
-      ga('set', 'forceSSL', true);
-    </script>
+    <script src="./js/apache-maven-fluido-1.10.0.min.js"></script>
+<!-- Matomo -->
+<script>
+  var _paq = window._paq = window._paq || [];
+  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
+  /* We explicitly disable cookie tracking to avoid privacy issues */
+  _paq.push(['disableCookies']);
+  _paq.push(['trackPageView']);
+  _paq.push(['enableLinkTracking']);
+  (function() {
+    var u="//analytics.apache.org/";
+    _paq.push(['setTrackerUrl', u+'matomo.php']);
+    _paq.push(['setSiteId', '3']);
+    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
+    g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
+  })();
+</script>
+<!-- End Matomo Code -->
   </head>
-  <body class="topBarEnabled">
+  <body class="topBarDisabled">
     <a href="https://github.com/apache/maven-surefire">
       <img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10000;"
         src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png"
         alt="Fork me on GitHub">
     </a>
-    <header id="topbar" class="navbar navbar-fixed-top ">
-      <div class="navbar-inner">
-        <div class="container-fluid">
-        <a data-target=".nav-collapse" data-toggle="collapse" class="btn btn-navbar">
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-        </a>
-            <ul class="nav">
-      <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Project Documentation <b class="caret"></b></a>
-        <ul class="dropdown-menu">
-            <li class="dropdown-submenu">
-<a href="project-info.html" title="Project Information">Project Information</a>
-              <ul class="dropdown-menu">
-                  <li><a href="index.html" title="About">About</a></li>
-                  <li><a href="summary.html" title="Summary">Summary</a></li>
-                  <li><a href="dependency-info.html" title="Dependency Information">Dependency Information</a></li>
-                  <li><a href="team.html" title="Team">Team</a></li>
-                  <li><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
-                  <li><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
-                  <li><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
-                  <li><a href="dependency-management.html" title="Dependency Management">Dependency Management</a></li>
-                  <li><a href="dependencies.html" title="Dependencies">Dependencies</a></li>
-                  <li><a href="dependency-convergence.html" title="Dependency Convergence">Dependency Convergence</a></li>
-                  <li><a href="ci-management.html" title="CI Management">CI Management</a></li>
-                  <li><a href="plugin-management.html" title="Plugin Management">Plugin Management</a></li>
-                  <li><a href="plugins.html" title="Plugins">Plugins</a></li>
-                  <li><a href="distribution-management.html" title="Distribution Management">Distribution Management</a></li>
-              </ul>
-            </li>
-            <li class="dropdown-submenu">
-<a href="project-reports.html" title="Project Reports">Project Reports</a>
-              <ul class="dropdown-menu">
-                  <li><a href="surefire-report.html" title="Surefire Report">Surefire Report</a></li>
-                  <li><a href="checkstyle.html" title="Checkstyle">Checkstyle</a></li>
-                  <li><a href="cpd.html" title="CPD">CPD</a></li>
-                  <li><a href="pmd.html" title="PMD">PMD</a></li>
-                  <li><a href="xref/index.html" title="Source Xref">Source Xref</a></li>
-                  <li><a href="xref-test/index.html" title="Test Source Xref">Test Source Xref</a></li>
-                  <li><a href="taglist.html" title="Tag List">Tag List</a></li>
-                  <li><a href="apidocs/index.html" title="Javadoc">Javadoc</a></li>
-                  <li><a href="testapidocs/index.html" title="Test Javadoc">Test Javadoc</a></li>
-              </ul>
-            </li>
-        </ul>
-      </li>
-      <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">Maven Projects <b class="caret"></b></a>
-        <ul class="dropdown-menu">
-            <li><a href="../../archetype/index.html" title="Archetype">Archetype</a></li>
-            <li><a href="../../resolver/index.html" title="Artifact Resolver">Artifact Resolver</a></li>
-            <li><a href="../../doxia/index.html" title="Doxia">Doxia</a></li>
-            <li><a href="../../extensions/index.html" title="Extensions">Extensions</a></li>
-            <li><a href="../../jxr/index.html" title="JXR">JXR</a></li>
-            <li><a href="../../ref/current" title="Maven">Maven</a></li>
-            <li><a href="../../pom/index.html" title="Parent POMs">Parent POMs</a></li>
-            <li><a href="../../plugins/index.html" title="Plugins">Plugins</a></li>
-            <li><a href="../../plugin-testing/index.html" title="Plugin Testing">Plugin Testing</a></li>
-            <li><a href="../../plugin-tools/index.html" title="Plugin Tools">Plugin Tools</a></li>
-            <li><a href="../../apache-resource-bundles/index.html" title="Resource Bundles">Resource Bundles</a></li>
-            <li><a href="../../scm/index.html" title="SCM">SCM</a></li>
-            <li><a href="../../shared/index.html" title="Shared Components">Shared Components</a></li>
-            <li><a href="../../skins/index.html" title="Skins">Skins</a></li>
-            <li><a href="../index.html" title="Surefire">Surefire</a></li>
-            <li><a href="../../wagon/index.html" title="Wagon">Wagon</a></li>
-        </ul>
-      </li>
-      <li class="dropdown">
-        <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
-        <ul class="dropdown-menu">
-            <li><a href="https://www.apache.org/foundation/how-it-works.html" title="How Apache Works">How Apache Works</a></li>
-            <li><a href="https://www.apache.org/foundation/" title="Foundation">Foundation</a></li>
-            <li><a href="https://www.apache.org/foundation/sponsorship.html" title="Sponsoring Apache">Sponsoring Apache</a></li>
-            <li><a href="https://www.apache.org/foundation/thanks.html" title="Thanks">Thanks</a></li>
-        </ul>
-      </li>
-            </ul>
-        </div>
-      </div>
-    </header>
     <div class="container-fluid">
       <header>
         <div id="banner">
-          <div class="pull-left"><a href="http://maven.apache.org/" id="bannerLeft"><img src="http://maven.apache.org/images/apache-maven-project.png"  alt="SureFire Logger API"/></a></div>
-          <div class="pull-right"><div id="bannerRight"><img src="http://maven.apache.org/images/maventxt_logo_200.gif"  alt=""/></div>
-</div>
+          <div class="pull-left"><a href="https://www.apache.org/" id="bannerLeft"><img src="../../images/apache-maven-project.png"  alt="SureFire Logger API"/></a></div>
+          <div class="pull-right"><a href="../../" id="bannerRight"><img src="../../images/maven-logo-black-on-white.png"  alt=""/></a></div>
           <div class="clear"><hr/></div>
         </div>
 
@@ -128,8 +52,8 @@
       <li class=""><a href="../index.html" title="Surefire">Surefire</a><span class="divider">/</span></li>
       <li class=""><a href="index.html" title="SureFire Logger API">SureFire Logger API</a><span class="divider">/</span></li>
     <li class="active ">Checkstyle Results</li>
-        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-03-31</li>
-          <li id="projectVersion" class="pull-right">Version: 3.0.0-M6</li>
+        <li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2022-06-03</li>
+          <li id="projectVersion" class="pull-right">Version: 3.0.0-M7</li>
           </ul>
         </div>
       </header>
@@ -177,7 +101,7 @@
           </nav>
           <div class="well sidebar-nav">
 <form id="search-form" action="https://www.google.com/search" method="get" >
-  <input value="https://maven.apache.org/surefire/surefire-logger-api/" name="sitesearch" type="hidden"/>
+  <input value="maven.apache.org/surefire/surefire-logger-api/" name="sitesearch" type="hidden"/>
   <input class="search-query" name="q" id="query" type="text" />
 </form>
 <script>asyncJs( 'https://cse.google.com/brand?form=search-form' )</script>
@@ -376,9 +300,14 @@
     <footer>
       <div class="container-fluid">
         <div class="row-fluid">
-<p>Apache SureFire Logger API, SureFire Logger API, Apache, the Apache feather logo, and the Apache SureFire Logger API project logos are trademarks of The Apache Software Foundation. <a href="https://maven.apache.org/surefire/surefire-logger-api/privacy-policy.html">Privacy Policy</a></p>
+<p>Apache SureFire Logger API, SureFire Logger API, Apache, the Apache feather logo, and the Apache SureFire Logger API project logos are trademarks of The Apache Software Foundation.</p>
         </div>
       </div>
     </footer>
+<script>
+	if(anchors) {
+	  anchors.add();
+	}
+</script>
   </body>
-</html>
+</html>
\ No newline at end of file

Modified: maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.rss
==============================================================================
--- maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.rss (original)
+++ maven/website/components/surefire-archives/surefire-LATEST/surefire-logger-api/checkstyle.rss Fri Jun  3 09:48:15 2022
@@ -1,124 +1,124 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-<rss version="0.91">
-  <channel>
-    <title>SureFire Logger API - Checkstyle report</title>
-    <link>https://maven.apache.org/surefire/surefire-logger-api/</link>
-    <description>SureFire Logger API - Checkstyle report</description>
-    <language>en-us</language>
-    <copyright>&#169;2004 - 2022 The Apache Software Foundation</copyright>
-    <item>
-      <title>File: 5,
-             Errors: 0,
-             Warnings: 12,
-             Infos: 0
-      </title>
-            <link>https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html</link>
-      <description>
-        <p>Click <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html">here</a> for the full Checkstyle report.</p>
-
-        <table summary="Files" boder="1">
-          <thead>
-            <tr>
-              <th>Files</th>
-              <th style="width:30px;"><abbr title="Info">I</abbr></th>
-              <th style="width:30px;"><abbr title="Warning">W</abbr></th>
-              <th style="width:30px;"><abbr title="Error">E</abbr></th>
-            </tr>
-          </thead>
-          <tbody>
-                          <tr>
-                <td>
-                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.Level.java">org/apache/maven/plugin/surefire/log/api/Level.java</a>
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  1
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                          <tr>
-                <td>
-                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLoggerUtils.java">org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtils.java</a>
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  2
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                          <tr>
-                <td>
-                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLoggerDecorator.java">org/apache/maven/plugin/surefire/log/api/ConsoleLoggerDecorator.java</a>
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  1
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                          <tr>
-                <td>
-                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLogger.java">org/apache/maven/plugin/surefire/log/api/ConsoleLogger.java</a>
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  7
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                          <tr>
-                <td>
-                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.PrintStreamLogger.java">org/apache/maven/plugin/surefire/log/api/PrintStreamLogger.java</a>
-                </td>
-                <td>
-                  0
-                </td>
-                <td>
-                  1
-                </td>
-                <td>
-                  0
-                </td>
-              </tr>
-                      </tbody>
-        </table>
-        
-      </description>
-    </item>
-  </channel>
-</rss>
-
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<rss version="0.91">
+  <channel>
+    <title>SureFire Logger API - Checkstyle report</title>
+    <link>https://maven.apache.org/surefire/surefire-logger-api/</link>
+    <description>SureFire Logger API - Checkstyle report</description>
+    <language>en-us</language>
+    <copyright>&#169;2004 - 2022 The Apache Software Foundation</copyright>
+    <item>
+      <title>File: 5,
+             Errors: 0,
+             Warnings: 12,
+             Infos: 0
+      </title>
+            <link>https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html</link>
+      <description>
+        <p>Click <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html">here</a> for the full Checkstyle report.</p>
+
+        <table summary="Files" boder="1">
+          <thead>
+            <tr>
+              <th>Files</th>
+              <th style="width:30px;"><abbr title="Info">I</abbr></th>
+              <th style="width:30px;"><abbr title="Warning">W</abbr></th>
+              <th style="width:30px;"><abbr title="Error">E</abbr></th>
+            </tr>
+          </thead>
+          <tbody>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.Level.java">org/apache/maven/plugin/surefire/log/api/Level.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  1
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLoggerUtils.java">org/apache/maven/plugin/surefire/log/api/ConsoleLoggerUtils.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  2
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLoggerDecorator.java">org/apache/maven/plugin/surefire/log/api/ConsoleLoggerDecorator.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  1
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.ConsoleLogger.java">org/apache/maven/plugin/surefire/log/api/ConsoleLogger.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  7
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
+                  <a href="https://maven.apache.org/surefire/surefire-logger-api//checkstyle.html#org.apache.maven.plugin.surefire.log.api.PrintStreamLogger.java">org/apache/maven/plugin/surefire/log/api/PrintStreamLogger.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  1
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                      </tbody>
+        </table>
+        
+      </description>
+    </item>
+  </channel>
+</rss>
+