Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/search.js
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/search.js 
(original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/search.js 
Thu Feb 13 12:58:15 2025
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2020, 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
@@ -22,413 +22,282 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
-"use strict";
-const messages = {
-    enterTerm: "Enter a search term",
-    noResult: "No results found",
-    oneResult: "Found one result",
-    manyResults: "Found {0} results",
-    loading: "Loading search index...",
-    searching: "Searching...",
-    redirecting: "Redirecting to first result...",
-    linkIcon: "Link icon",
-    linkToSection: "Link to this section"
-}
-const categories = {
-    modules: "Modules",
-    packages: "Packages",
-    types: "Types",
-    members: "Members",
-    searchTags: "Search Tags"
-};
-const highlight = "<span class='result-highlight'>$&</span>";
-const NO_MATCH = {};
-const MAX_RESULTS = 300;
-function checkUnnamed(name, separator) {
-    return name === "<Unnamed>" || !name ? "" : name + separator;
-}
+
+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(str, boundaries, from, to) {
-    var start = from;
-    var text = "";
-    for (var i = 0; i < boundaries.length; i += 2) {
-        var b0 = boundaries[i];
-        var b1 = boundaries[i + 1];
-        if (b0 >= to || b1 <= from) {
-            continue;
-        }
-        text += escapeHtml(str.slice(start, Math.max(start, b0)));
-        text += "<span class='result-highlight'>";
-        text += escapeHtml(str.slice(Math.max(start, b0), Math.min(to, b1)));
-        text += "</span>";
-        start = Math.min(to, b1);
+function getHighlightedText(item, matcher, fallbackMatcher) {
+    var escapedItem = escapeHtml(item);
+    var highlighted = escapedItem.replace(matcher, highlight);
+    if (highlighted === escapedItem) {
+        highlighted = escapedItem.replace(fallbackMatcher, highlight)
     }
-    text += escapeHtml(str.slice(start, to));
-    return text;
+    return highlighted;
 }
-function getURLPrefix(item, category) {
-    var urlPrefix = "";
+function getURLPrefix(ui) {
+    var urlPrefix="";
     var slash = "/";
-    if (category === "modules") {
-        return item.l + slash;
-    } else if (category === "packages" && item.m) {
-        return item.m + slash;
-    } else if (category === "types" || category === "members") {
-        if (item.m) {
-            urlPrefix = item.m + 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 {
-            $.each(packageSearchIndex, function(index, it) {
-                if (it.m && item.p === it.l) {
-                    urlPrefix = it.m + slash;
+            $.each(packageSearchIndex, function(index, item) {
+                if (item.m && ui.item.p === item.l) {
+                    urlPrefix = item.m + slash;
                 }
             });
         }
     }
     return urlPrefix;
 }
-function getURL(item, category) {
-    if (item.url) {
-        return item.url;
-    }
-    var url = getURLPrefix(item, category);
-    if (category === "modules") {
-        url += "module-summary.html";
-    } else if (category === "packages") {
-        if (item.u) {
-            url = item.u;
-        } else {
-            url += item.l.replace(/\./g, '/') + "/package-summary.html";
-        }
-    } else if (category === "types") {
-        if (item.u) {
-            url = item.u;
-        } else {
-            url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.l + 
".html";
-        }
-    } else if (category === "members") {
-        url += checkUnnamed(item.p, "/").replace(/\./g, '/') + item.c + 
".html" + "#";
-        if (item.u) {
-            url += item.u;
-        } else {
-            url += item.l;
-        }
-    } else if (category === "searchTags") {
-        url += item.u;
-    }
-    item.url = url;
-    return url;
-}
-function createMatcher(term, camelCase) {
-    if (camelCase && !isUpperCase(term)) {
-        return null;  // no need for camel-case matcher for lower case query
-    }
+function createSearchPattern(term) {
     var pattern = "";
-    var upperCase = [];
-    term.trim().split(/\s+/).forEach(function(w, index, array) {
-        var tokens = w.split(/(?=[A-Z,.()<>?[\/])/);
+    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 tokens = w.split(/(?=[A-Z,.()<>[\/])/);
         for (var i = 0; i < tokens.length; i++) {
             var s = tokens[i];
-            // ',' and '?' are the only delimiters commonly followed by space 
in java signatures
-            pattern += "(" + $.ui.autocomplete.escapeRegex(s).replace(/[,?]/g, 
"$&\\s*?") + ")";
-            upperCase.push(false);
-            var isWordToken =  /\w$/.test(s);
+            if (s === "") {
+                continue;
+            }
+            pattern += $.ui.autocomplete.escapeRegex(s);
+            isWordToken =  /\w$/.test(s);
             if (isWordToken) {
-                if (i === tokens.length - 1 && index < array.length - 1) {
-                    // space in query string matches all delimiters
-                    pattern += "(.*?)";
-                    upperCase.push(isUpperCase(s[0]));
-                } else {
-                    if (!camelCase && isUpperCase(s) && s.length === 1) {
-                        pattern += "()";
-                    } else {
-                        pattern += "([a-z0-9$<>?[\\]]*?)";
-                    }
-                    upperCase.push(isUpperCase(s[0]));
-                }
-            } else {
-                pattern += "()";
-                upperCase.push(false);
+                pattern += "([a-z0-9_$<>\\[\\]]*?)";
             }
         }
     });
-    var re = new RegExp(pattern, "gi");
-    re.upperCase = upperCase;
-    return re;
-}
-function findMatch(matcher, input, startOfName, endOfName) {
-    var from = startOfName;
-    matcher.lastIndex = from;
-    var match = matcher.exec(input);
-    // Expand search area until we get a valid result or reach the beginning 
of the string
-    while (!match || match.index + match[0].length < startOfName || endOfName 
< match.index) {
-        if (from === 0) {
-            return NO_MATCH;
-        }
-        from = input.lastIndexOf(".", from - 2) + 1;
-        matcher.lastIndex = from;
-        match = matcher.exec(input);
-    }
-    var boundaries = [];
-    var matchEnd = match.index + match[0].length;
-    var score = 5;
-    var start = match.index;
-    var prevEnd = -1;
-    for (var i = 1; i < match.length; i += 2) {
-        var isUpper = isUpperCase(input[start]);
-        var isMatcherUpper = matcher.upperCase[i];
-        // capturing groups come in pairs, match and non-match
-        boundaries.push(start, start + match[i].length);
-        // make sure groups are anchored on a left word boundary
-        var prevChar = input[start - 1] || "";
-        var nextChar = input[start + 1] || "";
-        if (start !== 0 && !/[\W_]/.test(prevChar) && 
!/[\W_]/.test(input[start])) {
-            if (isUpper && (isLowerCase(prevChar) || isLowerCase(nextChar))) {
-                score -= 0.1;
-            } else if (isMatcherUpper && start === prevEnd) {
-                score -= isUpper ? 0.1 : 1.0;
-            } else {
-                return NO_MATCH;
-            }
-        }
-        prevEnd = start + match[i].length;
-        start += match[i].length + match[i + 1].length;
-
-        // lower score for parts of the name that are missing
-        if (match[i + 1] && prevEnd < endOfName) {
-            score -= rateNoise(match[i + 1]);
-        }
-    }
-    // lower score if a type name contains unmatched camel-case parts
-    if (input[matchEnd - 1] !== "." && endOfName > matchEnd)
-        score -= rateNoise(input.slice(matchEnd, endOfName));
-    score -= rateNoise(input.slice(0, Math.max(startOfName, match.index)));
-
-    if (score <= 0) {
-        return NO_MATCH;
-    }
-    return {
-        input: input,
-        score: score,
-        boundaries: boundaries
-    };
+    return pattern;
 }
-function isUpperCase(s) {
-    return s !== s.toLowerCase();
+function createMatcher(pattern, flags) {
+    var isCamelCase = /[A-Z]/.test(pattern);
+    return new RegExp(pattern, flags + (isCamelCase ? "" : "i"));
 }
-function isLowerCase(s) {
-    return s !== s.toUpperCase();
-}
-function rateNoise(str) {
-    return (str.match(/([.(])/g) || []).length / 5
-         + (str.match(/([A-Z]+)/g) || []).length / 10
-         +  str.length / 20;
-}
-function doSearch(request, response) {
-    var term = request.term.trim();
-    var maxResults = request.maxResults || MAX_RESULTS;
-    if (term.length === 0) {
-        return this.close();
-    }
-    var matcher = {
-        plainMatcher: createMatcher(term, false),
-        camelCaseMatcher: createMatcher(term, true)
-    }
-    var indexLoaded = indexFilesLoaded();
-
-    function getPrefix(item, category) {
-        switch (category) {
-            case "packages":
-                return checkUnnamed(item.m, "/");
-            case "types":
-                return checkUnnamed(item.p, ".");
-            case "members":
-                return checkUnnamed(item.p, ".") + item.c + ".";
-            default:
-                return "";
-        }
-    }
-    function useQualifiedName(category) {
-        switch (category) {
-            case "packages":
-                return /[\s/]/.test(term);
-            case "types":
-            case "members":
-                return /[\s.]/.test(term);
-            default:
-                return false;
-        }
-    }
-    function searchIndex(indexArray, category) {
-        var matches = [];
-        if (!indexArray) {
-            if (!indexLoaded) {
-                matches.push({ l: messages.loading, category: category });
-            }
-            return matches;
+var watermark = 'Search';
+$(function() {
+    var search = $("#search-input");
+    var reset = $("#reset-button");
+    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');
         }
-        $.each(indexArray, function (i, item) {
-            var prefix = getPrefix(item, category);
-            var simpleName = item.l;
-            var qualifiedName = prefix + simpleName;
-            var useQualified = useQualifiedName(category);
-            var input = useQualified ? qualifiedName : simpleName;
-            var startOfName = useQualified ? prefix.length : 0;
-            var endOfName = category === "members" && input.indexOf("(", 
startOfName) > -1
-                ? input.indexOf("(", startOfName) : input.length;
-            var m = findMatch(matcher.plainMatcher, input, startOfName, 
endOfName);
-            if (m === NO_MATCH && matcher.camelCaseMatcher) {
-                m = findMatch(matcher.camelCaseMatcher, input, startOfName, 
endOfName);
-            }
-            if (m !== NO_MATCH) {
-                m.indexItem = item;
-                m.prefix = prefix;
-                m.category = category;
-                if (!useQualified) {
-                    m.input = qualifiedName;
-                    m.boundaries = m.boundaries.map(function(b) {
-                        return b + prefix.length;
-                    });
-                }
-                matches.push(m);
-            }
-            return true;
-        });
-        return matches.sort(function(e1, e2) {
-            return e2.score - e1.score;
-        }).slice(0, maxResults);
-    }
-
-    var result = searchIndex(moduleSearchIndex, "modules")
-         .concat(searchIndex(packageSearchIndex, "packages"))
-         .concat(searchIndex(typeSearchIndex, "types"))
-         .concat(searchIndex(memberSearchIndex, "members"))
-         .concat(searchIndex(tagSearchIndex, "searchTags"));
-
-    if (!indexLoaded) {
-        updateSearchResults = function() {
-            doSearch(request, response);
+    });
+    search.on('click keydown paste', function() {
+        if ($(this).val() === watermark) {
+            $(this).val('').removeClass('watermark');
         }
-    } else {
-        updateSearchResults = function() {};
-    }
-    response(result);
-}
-// JQuery search menu implementation
+    });
+    reset.click(function() {
+        search.val('').focus();
+    });
+    search.focus()[0].setSelectionRange(0, 0);
+});
 $.widget("custom.catcomplete", $.ui.autocomplete, {
     _create: function() {
         this._super();
-        this.widget().menu("option", "items", "> .result-item");
-        // workaround for search result scrolling
-        this.menu._scrollIntoView = function _scrollIntoView( item ) {
-            var borderTop, paddingTop, offset, scroll, elementHeight, 
itemHeight;
-            if ( this._hasScroll() ) {
-                borderTop = parseFloat( $.css( this.activeMenu[ 0 ], 
"borderTopWidth" ) ) || 0;
-                paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], 
"paddingTop" ) ) || 0;
-                offset = item.offset().top - this.activeMenu.offset().top - 
borderTop - paddingTop;
-                scroll = this.activeMenu.scrollTop();
-                elementHeight = this.activeMenu.height() - 26;
-                itemHeight = item.outerHeight();
-
-                if ( offset < 0 ) {
-                    this.activeMenu.scrollTop( scroll + offset );
-                } else if ( offset + itemHeight > elementHeight ) {
-                    this.activeMenu.scrollTop( scroll + offset - elementHeight 
+ itemHeight );
-                }
-            }
-        };
+        this.widget().menu("option", "items", "> 
:not(.ui-autocomplete-category)");
     },
     _renderMenu: function(ul, items) {
+        var rMenu = this;
         var currentCategory = "";
-        var widget = this;
-        widget.menu.bindings = $();
+        rMenu.menu.bindings = $();
         $.each(items, function(index, item) {
+            var li;
             if (item.category && item.category !== currentCategory) {
-                ul.append("<li class='ui-autocomplete-category'>" + 
categories[item.category] + "</li>");
+                ul.append("<li class=\"ui-autocomplete-category\">" + 
item.category + "</li>");
                 currentCategory = item.category;
             }
-            var li = widget._renderItemData(ul, item);
+            li = rMenu._renderItemData(ul, item);
             if (item.category) {
-                li.attr("aria-label", categories[item.category] + " : " + 
item.l);
+                li.attr("aria-label", item.category + " : " + item.l);
+                li.attr("class", "result-item");
             } else {
                 li.attr("aria-label", item.l);
+                li.attr("class", "result-item");
             }
-            li.attr("class", "result-item");
         });
-        ul.append("<li class='ui-static-link'><a href='" + pathtoroot + 
"search.html?q="
-            + encodeURI(widget.term) + "'>Go to search page</a></li>");
     },
     _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);
+        } else if (item.category === catPackages) {
+            label = getHighlightedText(item.l, matcher, fallbackMatcher);
+        } else if (item.category === catTypes) {
+            label = (item.p && item.p !== UNNAMED)
+                    ? getHighlightedText(item.p + "." + item.l, matcher, 
fallbackMatcher)
+                    : getHighlightedText(item.l, matcher, fallbackMatcher);
+        } 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);
+        } else if (item.category === catSearchTags) {
+            label = getHighlightedText(item.l, matcher, fallbackMatcher);
+        } else {
+            label = item.l;
+        }
         var li = $("<li/>").appendTo(ul);
         var div = $("<div/>").appendTo(li);
-        var label = item.l
-            ? item.l
-            : getHighlightedText(item.input, item.boundaries, 0, 
item.input.length);
-        var idx = item.indexItem;
-        if (item.category === "searchTags" && idx && idx.h) {
-            if (idx.d) {
-                div.html(label + "<span class='search-tag-holder-result'> (" + 
idx.h + ")</span><br><span class='search-tag-desc-result'>"
-                    + idx.d + "</span><br>");
+        if (item.category === catSearchTags && item.h) {
+            if (item.d) {
+                div.html(label + "<span class=\"search-tag-holder-result\"> (" 
+ item.h + ")</span><br><span class=\"search-tag-desc-result\">"
+                                + item.d + "</span><br>");
             } else {
-                div.html(label + "<span class='search-tag-holder-result'> (" + 
idx.h + ")</span>");
+                div.html(label + "<span class=\"search-tag-holder-result\"> (" 
+ item.h + ")</span>");
             }
         } else {
-            div.html(label);
+            if (item.m) {
+                div.html(item.m + "/" + label);
+            } else {
+                div.html(label);
+            }
         }
         return li;
     }
 });
-$(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;
+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 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 [];
     }
-    $("button#navbar-toggle-button").click(function (e) {
-        if (expanded) {
-            collapse();
-        } else {
-            var navbar = $("div#navbar-top");
-            navbar.height(navbar.prop("scrollHeight"));
-            $("button#navbar-toggle-button")
-                .addClass("expanded")
-                .attr("aria-expanded", "true");
-            expanded = true;
-            windowWidth = window.innerWidth;
+    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;
+            }));
         }
+    }
+
+    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;
     });
-    $("ul.sub-nav-list-small li a").click(collapse);
-    $("input#search-input").focus(collapse);
-    $("main").click(collapse);
-    $("section[id] > :header, :header[id], 
:header:has(a[id])").each(function(idx, el) {
-        // Create anchor links for headers with an associated id attribute
-        var hdr = $(el);
-        var id = hdr.attr("id") || hdr.parent("section").attr("id") || 
hdr.children("a").attr("id");
-        if (id) {
-            hdr.append(" <a href='#" + id + "' class='anchor-link' 
aria-label='" + messages.linkToSection
-                + "'><img src='" + pathtoroot + "link.svg' alt='" + 
messages.linkIcon +"' tabindex='0'"
-                + " width='16' height='16'></a>");
-        }
+    searchIndex(typeSearchIndex, catTypes, function(item) {
+        return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l;
     });
-    $(window).on("orientationchange", collapse).on("resize", function(e) {
-        if (expanded && windowWidth !== window.innerWidth) collapse();
+    searchIndex(memberSearchIndex, catMembers, function(item) {
+        return request.term.indexOf(".") > -1
+            ? item.p + "." + item.c + "." + item.l : item.l;
     });
-    var search = $("#search-input");
-    var reset = $("#reset-button");
-    search.catcomplete({
+    searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; 
});
+
+    if (!indexFilesLoaded()) {
+        updateSearchResults = function() {
+            doSearch(request, response);
+        }
+        result.unshift(loading);
+    } else {
+        updateSearchResults = function() {};
+    }
+    response(result);
+}
+$(function() {
+    $("#search-input").catcomplete({
         minLength: 1,
-        delay: 200,
+        delay: 300,
         source: doSearch,
         response: function(event, ui) {
             if (!ui.content.length) {
-                ui.content.push({ l: messages.noResult });
+                ui.content.push(noResult);
             } else {
                 $("#search-input").empty();
             }
@@ -441,18 +310,45 @@ $(function() {
             collision: "flip"
         },
         select: function(event, ui) {
-            if (ui.item.indexItem) {
-                var url = getURL(ui.item.indexItem, ui.item.category);
-                window.location.href = pathtoroot + url;
+            if (ui.item.category) {
+                var url = getURLPrefix(ui);
+                if (ui.item.category === catModules) {
+                    url += "module-summary.html";
+                } else if (ui.item.category === catPackages) {
+                    if (ui.item.u) {
+                        url = ui.item.u;
+                    } else {
+                        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) {
+                        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) {
+                        url += ui.item.c + ".html" + "#";
+                    } else {
+                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c 
+ ".html" + "#";
+                    }
+                    if (ui.item.u) {
+                        url += ui.item.u;
+                    } else {
+                        url += ui.item.l;
+                    }
+                } else if (ui.item.category === catSearchTags) {
+                    url += ui.item.u;
+                }
+                if (top !== window) {
+                    parent.classFrame.location = pathtoroot + url;
+                } else {
+                    window.location.href = pathtoroot + url;
+                }
                 $("#search-input").focus();
             }
         }
     });
-    search.val('');
-    search.prop("disabled", false);
-    reset.prop("disabled", false);
-    reset.click(function() {
-        search.val('').focus();
-    });
-    search.focus();
 });
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/serialized-form.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/serialized-form.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/serialized-form.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Serialized Form (Apache Commons BeanUtils 2.0.0-M2-SNAPSHOT API)</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
@@ -9,6 +9,7 @@
 <meta name="generator" content="javadoc/SerializedFormWriterImpl">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" 
title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" 
title="Style">
 <script type="text/javascript" src="script.js"></script>
 <script type="text/javascript" src="script-dir/jquery-3.7.1.min.js"></script>
 <script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
@@ -23,7 +24,7 @@ loadScripts(document, 'script');</script
 <header role="banner" class="flex-header">
 <nav role="navigation">
 <!-- ========= START OF TOP NAVBAR ======= -->
-<div class="top-nav" id="navbar-top"><button id="navbar-toggle-button" 
aria-controls="navbar-top" aria-expanded="false" aria-label="Toggle navigation 
links"><span class="nav-bar-toggle-icon">&nbsp;</span><span 
class="nav-bar-toggle-icon">&nbsp;</span><span 
class="nav-bar-toggle-icon">&nbsp;</span></button>
+<div class="top-nav" id="navbar-top">
 <div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation 
links">Skip navigation links</a></div>
 <ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
 <li><a href="index.html">Overview</a></li>
@@ -36,10 +37,9 @@ loadScripts(document, 'script');</script
 </ul>
 </div>
 <div class="sub-nav">
-<div id="navbar-sub-list"></div>
-<div class="nav-list-search"><a href="search.html">SEARCH</a>
-<input type="text" id="search-input" disabled placeholder="Search">
-<input type="reset" id="reset-button" disabled value="reset">
+<div class="nav-list-search"><label for="search-input">SEARCH:</label>
+<input type="text" id="search-input" value="search" disabled="disabled">
+<input type="reset" id="reset-button" value="reset" disabled="disabled">
 </div>
 </div>
 <!-- ========= END OF TOP NAVBAR ========= -->
@@ -57,7 +57,7 @@ loadScripts(document, 'script');</script
 <ul class="block-list">
 <li>
 <section class="serialized-class-details" 
id="org.apache.commons.beanutils2.BeanAccessLanguageException">
-<h3>Exception Class&nbsp;<a 
href="org/apache/commons/beanutils2/BeanAccessLanguageException.html" 
title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.BeanAccessLanguageException</a></h3>
+<h3>Exception&nbsp;<a 
href="org/apache/commons/beanutils2/BeanAccessLanguageException.html" 
title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.BeanAccessLanguageException</a></h3>
 <div class="type-signature">class BeanAccessLanguageException extends <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html";
 title="class or interface in java.lang" 
class="external-link">IllegalArgumentException</a> implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html"; 
title="class or interface in java.io" 
class="external-link">Serializable</a></div>
 <dl class="name-value">
 <dt>serialVersionUID:</dt>
@@ -91,7 +91,7 @@ loadScripts(document, 'script');</script
 </li>
 <li>
 <section class="serialized-class-details" 
id="org.apache.commons.beanutils2.ConversionException">
-<h3>Exception Class&nbsp;<a 
href="org/apache/commons/beanutils2/ConversionException.html" title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.ConversionException</a></h3>
+<h3>Exception&nbsp;<a 
href="org/apache/commons/beanutils2/ConversionException.html" title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.ConversionException</a></h3>
 <div class="type-signature">class ConversionException extends <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/RuntimeException.html";
 title="class or interface in java.lang" 
class="external-link">RuntimeException</a> implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html"; 
title="class or interface in java.io" 
class="external-link">Serializable</a></div>
 <dl class="name-value">
 <dt>serialVersionUID:</dt>
@@ -135,7 +135,7 @@ loadScripts(document, 'script');</script
 </li>
 <li>
 <section class="serialized-class-details" 
id="org.apache.commons.beanutils2.NestedNullException">
-<h3>Exception Class&nbsp;<a 
href="org/apache/commons/beanutils2/NestedNullException.html" title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.NestedNullException</a></h3>
+<h3>Exception&nbsp;<a 
href="org/apache/commons/beanutils2/NestedNullException.html" title="class in 
org.apache.commons.beanutils2">org.apache.commons.beanutils2.NestedNullException</a></h3>
 <div class="type-signature">class NestedNullException extends <a 
href="org/apache/commons/beanutils2/BeanAccessLanguageException.html" 
title="class in org.apache.commons.beanutils2">BeanAccessLanguageException</a> 
implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html"; 
title="class or interface in java.io" 
class="external-link">Serializable</a></div>
 <dl class="name-value">
 <dt>serialVersionUID:</dt>

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BaseDynaBeanMapDecorator">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BasicDynaBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaClass.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaClass.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BasicDynaClass.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BasicDynaClass">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanAccessLanguageException.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanAccessLanguageException.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanAccessLanguageException.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanAccessLanguageException">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanComparator.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanComparator.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanComparator.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanComparator">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanIntrospector.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanIntrospector.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanIntrospector.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: BeanIntrospector">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.Entry.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.Entry.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.Entry.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanMap, class: Entry">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanMap.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanMap">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPredicate.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPredicate.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPredicate.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanPredicate">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueChangeConsumer.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanPropertyValueChangeConsumer">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanPropertyValueEqualsPredicate.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanPropertyValueEqualsPredicate">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanToPropertyValueTransformer">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtils.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtils.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanUtils">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtilsBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtilsBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/BeanUtilsBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: BeanUtilsBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConstructorUtils.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConstructorUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConstructorUtils.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ConstructorUtils">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ContextClassLoaderLocal.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ContextClassLoaderLocal.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ContextClassLoaderLocal.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ContextClassLoaderLocal">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConversionException.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConversionException.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConversionException.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ConversionException">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtils.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtils.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ConvertUtils">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtilsBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtilsBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertUtilsBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ConvertUtilsBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/Converter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/Converter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/Converter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: Converter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertingWrapDynaBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertingWrapDynaBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/ConvertingWrapDynaBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: ConvertingWrapDynaBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DefaultBeanIntrospector.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DefaultBeanIntrospector.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DefaultBeanIntrospector.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: DefaultBeanIntrospector">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: DynaBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBeanPropertyMapDecorator.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBeanPropertyMapDecorator.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaBeanPropertyMapDecorator.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: DynaBeanPropertyMapDecorator">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaClass.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaClass.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaClass.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: DynaClass">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaProperty.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaProperty.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/DynaProperty.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: DynaProperty">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: FluentPropertyBeanIntrospector">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/IntrospectionContext.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/IntrospectionContext.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/IntrospectionContext.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: IntrospectionContext">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: LazyDynaBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaClass.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaClass.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaClass.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: LazyDynaClass">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaList.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaList.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaList.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: LazyDynaList">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaMap.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaMap.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/LazyDynaMap.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: LazyDynaMap">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MappedPropertyDescriptor.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MappedPropertyDescriptor.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MappedPropertyDescriptor.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: MappedPropertyDescriptor">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MethodUtils.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MethodUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MethodUtils.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: MethodUtils">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MutableDynaClass.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MutableDynaClass.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/MutableDynaClass.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, interface: MutableDynaClass">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/NestedNullException.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/NestedNullException.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/NestedNullException.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: NestedNullException">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtils.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtils.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtils.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: PropertyUtils">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtilsBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtilsBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/PropertyUtilsBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: PropertyUtilsBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: SuppressPropertiesBeanIntrospector">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaBean.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaBean.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaBean.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: WrapDynaBean">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaClass.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaClass.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/WrapDynaClass.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2, class: WrapDynaClass">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/AbstractConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/AbstractConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/AbstractConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: AbstractConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ArrayConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ArrayConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ArrayConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: ArrayConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigDecimalConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigDecimalConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigDecimalConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: BigDecimalConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigIntegerConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigIntegerConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BigIntegerConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: BigIntegerConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BooleanConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BooleanConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/BooleanConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: BooleanConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ByteConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ByteConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ByteConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: ByteConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CalendarConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CalendarConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CalendarConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: CalendarConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CharacterConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CharacterConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/CharacterConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: CharacterConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ClassConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ClassConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ClassConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: ClassConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ColorConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ColorConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ColorConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: ColorConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ConverterFacade.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ConverterFacade.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/ConverterFacade.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: ConverterFacade">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: DateConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateTimeConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateTimeConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DateTimeConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: DateTimeConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DimensionConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DimensionConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DimensionConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: DimensionConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DoubleConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DoubleConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DoubleConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: DoubleConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DurationConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DurationConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/DurationConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: DurationConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/EnumConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/EnumConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/EnumConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: EnumConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FileConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FileConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FileConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: FileConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FloatConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FloatConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/FloatConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: FloatConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/InetAddressConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/InetAddressConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/InetAddressConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: InetAddressConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/IntegerConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/IntegerConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/IntegerConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: IntegerConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: LocalDateConverter">

Modified: 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateTimeConverter.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateTimeConverter.html
 (original)
+++ 
websites/production/commons/content/proper/commons-beanutils/apidocs/src-html/org/apache/commons/beanutils2/converters/LocalDateTimeConverter.html
 Thu Feb 13 12:58:15 2025
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML>
 <html lang>
 <head>
-<!-- Generated by javadoc (21) -->
+<!-- Generated by javadoc (17) -->
 <title>Source code</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="source: package: 
org.apache.commons.beanutils2.converters, class: LocalDateTimeConverter">



Reply via email to