This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/main by this push:
     new b58ecebb Update site to comply with ASF privacy site checks (#423)
b58ecebb is described below

commit b58ecebb046146fb1383ffd8c15135164dc919a6
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Wed May 1 17:38:50 2024 -0400

    Update site to comply with ASF privacy site checks (#423)
    
    See https://whimsy.apache.org/site/project/accumulo
    
    * Add link to ASF privacy policy in ASF links section of navigation
    * Stop linking to external CDNs for our default page layout. Instead,
      copy the resources, so they are hosted by our site. We don't really
      need the integrity checks to verify the downloads from CDN sites
      anymore. It adds no security since we're hosting them on the same
      service that would provide the checksum (same security domain for
      users to trust), and removing them alleviates the browser from that
      unnecessary work.
    * Standardize how resources are specified, so they are more consistent
      and easier to update, including converting the embedded `<script>`
      from `_includes/scripts.html`, which contained our own custom scripts
      for our site, into its own `.js` file.
    * Include free web fonts from fontawesome project, so the css can link
      to the ones we're hosting (downloaded from
      https://fontawesome.com/download, specifically
      
https://use.fontawesome.com/releases/v6.4.2/fontawesome-free-6.4.2-web.zip)
    
    This fixes #420
---
 _includes/nav.html                                 |   1 +
 _includes/scripts.html                             |  28 ----
 _layouts/default.html                              |  17 ++-
 css/bootstrap/5.3.1/dist/css/bootstrap.min.css     |   6 +
 css/datatables/bs5/dt-1.13.6/datatables.min.css    |  19 +++
 .../fontawesome-free-6.4.2-web/LICENSE.txt         | 165 +++++++++++++++++++++
 .../fontawesome-free-6.4.2-web/css/all.min.css     |   9 ++
 .../webfonts/fa-brands-400.ttf                     | Bin 0 -> 189684 bytes
 .../webfonts/fa-brands-400.woff2                   | Bin 0 -> 109808 bytes
 .../webfonts/fa-regular-400.ttf                    | Bin 0 -> 63348 bytes
 .../webfonts/fa-regular-400.woff2                  | Bin 0 -> 24488 bytes
 .../webfonts/fa-solid-900.ttf                      | Bin 0 -> 394668 bytes
 .../webfonts/fa-solid-900.woff2                    | Bin 0 -> 150020 bytes
 .../webfonts/fa-v4compatibility.ttf                | Bin 0 -> 10172 bytes
 .../webfonts/fa-v4compatibility.woff2              | Bin 0 -> 4568 bytes
 js/accumulo.js                                     |  29 ++++
 js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js |   7 +
 js/datatables/bs5/dt-1.13.6/datatables.min.js      |  22 +++
 js/jquery/3.7.0/jquery.min.js                      |   2 +
 19 files changed, 269 insertions(+), 36 deletions(-)

diff --git a/_includes/nav.html b/_includes/nav.html
index 015d265a..3c10fc71 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -56,6 +56,7 @@
             <li><a class="dropdown-item" 
href="https://www.apache.org/security";>Security <span class="fa-solid 
fa-up-right-from-square"></span></a></li>
             <li><a class="dropdown-item" 
href="https://www.apache.org/foundation/thanks";>Thanks <span class="fa-solid 
fa-up-right-from-square"></span></a></li>
             <li><a class="dropdown-item" 
href="https://www.apache.org/foundation/policies/conduct";>Code of Conduct <span 
class="fa-solid fa-up-right-from-square"></span></a></li>
+            <li><a class="dropdown-item" 
href="https://www.apache.org/foundation/policies/privacy.html";>Privacy 
Policy<span class="fa-solid fa-up-right-from-square"></span></a></li>
             <li><a class="dropdown-item" 
href="https://www.apache.org/events/current-event.html";>Current Event <span 
class="fa-solid fa-up-right-from-square"></span></a></li>
           </ul>
         </li>
diff --git a/_includes/scripts.html b/_includes/scripts.html
deleted file mode 100644
index 8a3db891..00000000
--- a/_includes/scripts.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<script>
-  // show location of canonical site if not currently on the canonical site
-  $(function() {
-    var host = window.location.host;
-    if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
-      $('#non-canonical').show();
-    }
-  });
-
-  $(function() {
-    // decorate section headers with anchors
-    return $("h2, h3, h4, h5, h6").not(".accordion-header").each(function(i, 
el) {
-      var $el, icon, id;
-      $el = $(el);
-      id = $el.attr('id');
-      icon = '<span class="fa-solid fa-link"></span>';
-      if (id) {
-        return $el.append($("<a />").addClass("header-link").attr("href", "#" 
+ id).html(icon));
-      }
-    });
-  });
-
-  // fix sidebar width in documentation
-  $(function() {
-    var $affixElement = $('div[data-spy="affix"]');
-    $affixElement.width($affixElement.parent().width());
-  });
-</script>
diff --git a/_layouts/default.html b/_layouts/default.html
index b794fca1..1912f40c 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -20,18 +20,19 @@
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <meta name="viewport" content="width=device-width, initial-scale=1">
-<link 
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"; 
rel="stylesheet" 
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
 crossorigin="anonymous">
-<link 
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css";
 rel="stylesheet">
-<link rel="stylesheet" type="text/css" 
href="https://cdn.datatables.net/v/bs5/dt-1.13.6/datatables.min.css";>
-<link href="{{ site.baseurl }}/css/accumulo.css" rel="stylesheet" 
type="text/css">
+
+<link rel="stylesheet" type="text/css" href="{{ site.baseurl 
}}/css/bootstrap/5.3.1/dist/css/bootstrap.min.css">
+<link rel="stylesheet" type="text/css" href="{{ site.baseurl 
}}/css/fontawesome/fontawesome/fontawesome-free-6.4.2-web/css/all.min.css">
+<link rel="stylesheet" type="text/css" href="{{ site.baseurl 
}}/css/datatables/bs5/dt-1.13.6/datatables.min.css">
+<link rel="stylesheet" type="text/css" href="{{ site.baseurl 
}}/css/accumulo.css">
 
 <title>{% if page.title_prefix %}{{ page.title_prefix | escape }}{% endif %}{% 
if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% 
endif %}</title>
 
-<script 
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js"; 
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" 
crossorigin="anonymous"></script>
-<script 
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js";
 
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
 crossorigin="anonymous"></script>
-<script type="text/javascript" 
src="https://cdn.datatables.net/v/bs5/dt-1.13.6/datatables.min.js";></script>
+<script type="text/javascript" src="{{ site.baseurl 
}}/js/jquery/3.7.0/jquery.min.js"></script>
+<script type="text/javascript" src="{{ site.baseurl 
}}/js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js"></script>
+<script type="text/javascript" src="{{ site.baseurl 
}}/js/datatables/bs5/dt-1.13.6/datatables.min.js"></script>
 <script type="text/javascript" 
src="https://www.apachecon.com/event-images/snippet.js";></script>
-{% include scripts.html %}
+<script type="text/javascript" src="{{ site.baseurl 
}}/js/accumulo.js"></script>
 </head>
 <body style="padding-top: 100px">
 
diff --git a/css/bootstrap/5.3.1/dist/css/bootstrap.min.css 
b/css/bootstrap/5.3.1/dist/css/bootstrap.min.css
new file mode 100644
index 00000000..a89937cc
--- /dev/null
+++ b/css/bootstrap/5.3.1/dist/css/bootstrap.min.css
@@ -0,0 +1,6 @@
+@charset "UTF-8";/*!
+ * Bootstrap  v5.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2023 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ 
*/:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--
 [...]
+/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/css/datatables/bs5/dt-1.13.6/datatables.min.css 
b/css/datatables/bs5/dt-1.13.6/datatables.min.css
new file mode 100644
index 00000000..be4267ea
--- /dev/null
+++ b/css/datatables/bs5/dt-1.13.6/datatables.min.css
@@ -0,0 +1,19 @@
+/*
+ * This combined file was created by the DataTables downloader builder:
+ *   https://datatables.net/download
+ *
+ * To rebuild or modify this file with the latest versions of the included
+ * software please visit:
+ *   https://datatables.net/download/#bs5/dt-1.13.6
+ *
+ * Included libraries:
+ *  DataTables 1.13.6
+ */
+
+:root{--dt-row-selected: 13, 110, 253;--dt-row-selected-text: 255, 255, 
255;--dt-row-selected-link: 9, 10, 11;--dt-row-stripe: 0, 0, 0;--dt-row-hover: 
0, 0, 0;--dt-column-ordering: 0, 0, 0;--dt-html-background: 
white}:root.dark{--dt-html-background: rgb(33, 37, 41)}table.dataTable 
td.dt-control{text-align:center;cursor:pointer}table.dataTable 
td.dt-control:before{display:inline-block;color:rgba(0, 0, 0, 
0.5);content:"►"}table.dataTable tr.dt-hasChild 
td.dt-control:before{content:"▼"}html [...]
+ *
+ * ©2020 SpryMedia Ltd, all rights reserved.
+ * License: MIT datatables.net/license/mit
+ */table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px 
!important;max-width:none !important;border-collapse:separate 
!important;border-spacing:0}table.dataTable td,table.dataTable 
th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable 
td.dataTables_empty,table.dataTable 
th.dataTables_empty{text-align:center}table.dataTable.nowrap 
th,table.dataTable.nowrap 
td{white-space:nowrap}table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>*{box-shadow:none}
 [...]
+
+
diff --git a/css/fontawesome/fontawesome-free-6.4.2-web/LICENSE.txt 
b/css/fontawesome/fontawesome-free-6.4.2-web/LICENSE.txt
new file mode 100644
index 00000000..39e18e3d
--- /dev/null
+++ b/css/fontawesome/fontawesome-free-6.4.2-web/LICENSE.txt
@@ -0,0 +1,165 @@
+Fonticons, Inc. (https://fontawesome.com)
+
+--------------------------------------------------------------------------------
+
+Font Awesome Free License
+
+Font Awesome Free is free, open source, and GPL friendly. You can use it for
+commercial projects, open source projects, or really almost whatever you want.
+Full Font Awesome Free license: https://fontawesome.com/license/free.
+
+--------------------------------------------------------------------------------
+
+# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
+
+The Font Awesome Free download is licensed under a Creative Commons
+Attribution 4.0 International License and applies to all icons packaged
+as SVG and JS file types.
+
+--------------------------------------------------------------------------------
+
+# Fonts: SIL OFL 1.1 License
+
+In the Font Awesome Free download, the SIL OFL license applies to all icons
+packaged as web and desktop font files.
+
+Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com)
+with Reserved Font Name: "Font Awesome".
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+SIL OPEN FONT LICENSE
+Version 1.1 - 26 February 2007
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting — in part or in whole — any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
+
+--------------------------------------------------------------------------------
+
+# Code: MIT License (https://opensource.org/licenses/MIT)
+
+In the Font Awesome Free download, the MIT license applies to all non-font and
+non-icon files.
+
+Copyright 2023 Fonticons, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in 
the
+Software without restriction, including without limitation the rights to use, 
copy,
+modify, merge, publish, distribute, sublicense, and/or sell copies of the 
Software,
+and to permit persons to whom the Software is furnished to do so, subject to 
the
+following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED,
+INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 
COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 
ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+--------------------------------------------------------------------------------
+
+# Attribution
+
+Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
+Awesome Free files already contain embedded comments with sufficient
+attribution, so you shouldn't need to do anything additional when using these
+files normally.
+
+We've kept attribution comments terse, so we ask that you do not actively work
+to remove them from files, especially code. They're a great way for folks to
+learn about Font Awesome.
+
+--------------------------------------------------------------------------------
+
+# Brand Icons
+
+All brand icons are trademarks of their respective owners. The use of these
+trademarks does not indicate endorsement of the trademark holder by Font
+Awesome, nor vice versa. **Please do not use brand logos for any purpose except
+to represent the company, product, or service to which they refer.**
diff --git a/css/fontawesome/fontawesome-free-6.4.2-web/css/all.min.css 
b/css/fontawesome/fontawesome-free-6.4.2-web/css/all.min.css
new file mode 100644
index 00000000..d949e4f2
--- /dev/null
+++ b/css/fontawesome/fontawesome-free-6.4.2-web/css/all.min.css
@@ -0,0 +1,9 @@
+/*!
+ * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: 
SIL OFL 1.1, Code: MIT License)
+ * Copyright 2023 Fonticons, Inc.
+ */
+.fa{font-family:var(--fa-style-family,"Font Awesome 6 
Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font
 Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 
Brands"}.fa-1x{font-siz [...]
+
+.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-ca
 [...]
+.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font
 Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 
Brands"}@font-face{font-family:"Font Awesome 6 
Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2)
 format("woff2"), [...]
\ No newline at end of file
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.ttf 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.ttf
new file mode 100644
index 00000000..30f55b74
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.ttf differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.woff2 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.woff2
new file mode 100644
index 00000000..8a480d9b
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.woff2 differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.ttf 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.ttf
new file mode 100644
index 00000000..c79589d8
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.ttf differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.woff2 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.woff2
new file mode 100644
index 00000000..059a94e2
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.woff2 
differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.ttf 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.ttf
new file mode 100644
index 00000000..e479fb29
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.ttf differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.woff2 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.woff2
new file mode 100644
index 00000000..88b0367a
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.woff2 differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.ttf 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.ttf
new file mode 100644
index 00000000..ba6cb258
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.ttf 
differ
diff --git 
a/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.woff2 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.woff2
new file mode 100644
index 00000000..23b1c47b
Binary files /dev/null and 
b/css/fontawesome/fontawesome-free-6.4.2-web/webfonts/fa-v4compatibility.woff2 
differ
diff --git a/js/accumulo.js b/js/accumulo.js
new file mode 100644
index 00000000..0380105f
--- /dev/null
+++ b/js/accumulo.js
@@ -0,0 +1,29 @@
+// Accumulo site-wide scripts for the default layout
+
+// show location of canonical site if not currently on the canonical site
+$(function() {
+  var host = window.location.host;
+  if (typeof host !== 'undefined' && host !== 'accumulo.apache.org') {
+    $('#non-canonical').show();
+  }
+});
+
+// decorate section headers with anchors
+$(function() {
+  return $("h2, h3, h4, h5, h6").not(".accordion-header").each(function(i, el) 
{
+    var $el, icon, id;
+    $el = $(el);
+    id = $el.attr('id');
+    icon = '<span class="fa-solid fa-link"></span>';
+    if (id) {
+      return $el.append($("<a />").addClass("header-link").attr("href", "#" + 
id).html(icon));
+    }
+  });
+});
+
+// fix sidebar width in documentation
+$(function() {
+  var $affixElement = $('div[data-spy="affix"]');
+  $affixElement.width($affixElement.parent().width());
+});
+
diff --git a/js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js 
b/js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js
new file mode 100644
index 00000000..e8f21f70
--- /dev/null
+++ b/js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js
@@ -0,0 +1,7 @@
+/*!
+  * Bootstrap v5.3.1 (https://getbootstrap.com/)
+  * Copyright 2011-2023 The Bootstrap Authors 
(https://github.com/twbs/bootstrap/graphs/contributors)
+  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+  */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?module.exports=e():"function"==typeof 
define&&define.amd?define(e):(t="undefined"!=typeof 
globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use 
strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const 
s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't 
allow more than one instance per element. Bound instance: 
${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e). [...]
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/js/datatables/bs5/dt-1.13.6/datatables.min.js 
b/js/datatables/bs5/dt-1.13.6/datatables.min.js
new file mode 100644
index 00000000..7f0c7a61
--- /dev/null
+++ b/js/datatables/bs5/dt-1.13.6/datatables.min.js
@@ -0,0 +1,22 @@
+/*
+ * This combined file was created by the DataTables downloader builder:
+ *   https://datatables.net/download
+ *
+ * To rebuild or modify this file with the latest versions of the included
+ * software please visit:
+ *   https://datatables.net/download/#bs5/dt-1.13.6
+ *
+ * Included libraries:
+ *  DataTables 1.13.6
+ */
+
+/*! DataTables 1.13.6
+ * ©2008-2023 SpryMedia Ltd - datatables.net/license
+ */
+!function(n){"use strict";var a;"function"==typeof 
define&&define.amd?define(["jquery"],function(t){return 
n(t,window,document)}):"object"==typeof 
exports?(a=require("jquery"),"undefined"==typeof 
window?module.exports=function(t,e){return 
t=t||window,e=e||a(t),n(e,t,t.document)}:n(a,window,window.document)):window.DataTable=n(jQuery,window,document)}(function(P,j,v,H){"use
 strict";function d(t){var 
e=parseInt(t,10);return!isNaN(e)&&isFinite(t)?e:null}function l(t,e,n){var 
a=typeof t,r="s [...]
+
+/*! DataTables Bootstrap 5 integration
+ * 2020 SpryMedia Ltd - datatables.net/license
+ */
+!function(t){var n,r;"function"==typeof 
define&&define.amd?define(["jquery","datatables.net"],function(e){return 
t(e,window,document)}):"object"==typeof 
exports?(n=require("jquery"),r=function(e,a){a.fn.dataTable||require("datatables.net")(e,a)},"undefined"==typeof
 window?module.exports=function(e,a){return 
e=e||window,a=a||n(e),r(e,a),t(a,0,e.document)}:(r(window,n),module.exports=t(n,window,window.document))):t(jQuery,window,document)}(function(x,e,r,o){"use
 strict";var i=x.fn.dataTabl [...]
+
diff --git a/js/jquery/3.7.0/jquery.min.js b/js/jquery/3.7.0/jquery.min.js
new file mode 100644
index 00000000..e7e29d5b
--- /dev/null
+++ b/js/jquery/3.7.0/jquery.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.7.0 | (c) OpenJS Foundation and other contributors | 
jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof 
module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw
 new Error("jQuery requires a window with a document");return 
t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use 
strict";var 
oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return 
oe.flat.call(e)}:function(e){return 
oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue
 [...]

Reply via email to