Skip to content

Commit 4a11d35

Browse files
author
Ed Coleman
committed
Merge remote-tracking branch 'upstream/main' into update_empty_wal_cmds
2 parents 52ff6b8 + d6679b2 commit 4a11d35

File tree

61 files changed

+568
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+568
-60
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ ENV PORT=4000
3131
EXPOSE $PORT
3232

3333
# Configure the default command to build from the mounted repository.
34-
CMD bundle exec jekyll serve --force-polling -H $HOST -P $PORT
34+
CMD bundle exec jekyll serve -H $HOST -P $PORT

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ruby '>=2.5.1'
1+
ruby '>=2.7'
22
source 'https://rubygems.org'
33
gem 'jekyll', '>= 4.2.0'
44
gem 'jekyll-redirect-from', '>= 0.16.0'

Gemfile.lock

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.4)
4+
addressable (2.8.6)
55
public_suffix (>= 2.0.2, < 6.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.2.2)
7+
concurrent-ruby (1.2.3)
88
em-websocket (0.5.3)
99
eventmachine (>= 0.12.9)
1010
http_parser.rb (~> 0)
1111
eventmachine (1.2.7)
12-
ffi (1.15.5)
12+
ffi (1.16.3)
1313
forwardable-extended (2.6.0)
14-
google-protobuf (3.23.4-x86_64-linux)
14+
google-protobuf (4.26.1-x86_64-linux)
15+
rake (>= 13)
1516
http_parser.rb (0.8.0)
16-
i18n (1.14.1)
17+
i18n (1.14.4)
1718
concurrent-ruby (~> 1.0)
18-
jekyll (4.3.2)
19+
jekyll (4.3.3)
1920
addressable (~> 2.4)
2021
colorator (~> 1.0)
2122
em-websocket (~> 0.5)
@@ -42,24 +43,25 @@ GEM
4243
kramdown-parser-gfm (1.1.0)
4344
kramdown (~> 2.0)
4445
liquid (4.0.4)
45-
listen (3.8.0)
46+
listen (3.9.0)
4647
rb-fsevent (~> 0.10, >= 0.10.3)
4748
rb-inotify (~> 0.9, >= 0.9.10)
4849
mercenary (0.4.0)
4950
pathutil (0.16.2)
5051
forwardable-extended (~> 2.6)
51-
public_suffix (5.0.3)
52+
public_suffix (5.0.5)
53+
rake (13.2.1)
5254
rb-fsevent (0.11.2)
5355
rb-inotify (0.10.1)
5456
ffi (~> 1.0)
5557
rexml (3.2.6)
56-
rouge (4.1.2)
58+
rouge (4.2.1)
5759
safe_yaml (1.0.5)
58-
sass-embedded (1.64.1-x86_64-linux-gnu)
59-
google-protobuf (~> 3.23)
60+
sass-embedded (1.76.0-x86_64-linux-gnu)
61+
google-protobuf (>= 3.25, < 5.0)
6062
terminal-table (3.0.2)
6163
unicode-display_width (>= 1.1.1, < 3)
62-
unicode-display_width (2.4.2)
64+
unicode-display_width (2.5.0)
6365
webrick (1.8.1)
6466

6567
PLATFORMS

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,15 @@ The source for these tags is at [\_plugins/links.rb](_plugins/links.rb).
2828

2929
### Updating Property Documentation for Releases
3030

31-
Building Accumulo generates `server-properties.md` and `client-properties.md`.
31+
Building Accumulo generates `server-properties*.md` and `client-properties*.md`.
3232
To regenerate these, do the following.
3333

3434
```bash
3535
ACCUMULO_SITE_CLONE=<accumulo website clone location, with main branch checked out>
3636
ACCUMULO_CLONE=<accumulo clone location>
3737
cd "$ACCUMULO_CLONE"
3838
mvn package -DskipTests
39-
cp ./core/target/generated-docs/server-properties.md "$ACCUMULO_SITE_CLONE"/_docs-2/configuration
40-
cp ./core/target/generated-docs/client-properties.md "$ACCUMULO_SITE_CLONE"/_docs-2/configuration
39+
cp ./core/target/generated-docs/*.md "$ACCUMULO_SITE_CLONE"/_docs-2/configuration/
4140
```
4241

4342
## Local Builds for Testing

_config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ description: > # this means to ignore newlines until "url:"
1313
The Apache Accumulo™ sorted, distributed key/value store is a robust, scalable,
1414
high performance data storage and retrieval system.
1515
url: "https://accumulo.apache.org" # the base hostname & protocol for your site
16-
exclude: [vendor]
1716
latest_release: 2.1.2
1817
javadoc_version: 2.1.2
1918
num_home_posts: 5

_includes/nav.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
<li><a class="dropdown-item" href="https://www.apache.org/security">Security <span class="fa-solid fa-up-right-from-square"></span></a></li>
5757
<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>
5858
<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>
59+
<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>
5960
<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>
6061
</ul>
6162
</li>

_includes/scripts.html

Lines changed: 0 additions & 28 deletions
This file was deleted.

_includes/two_image_block.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!-- creates a styled box with two images side by side -->
2+
<!-- accepts two URLs relative to the project root and two alt text strings -->
3+
<div class="p-3 border rounded d-flex">
4+
<a href="{{ site.baseurl }}{{ include.image1 }}">
5+
<img src="{{ site.baseurl }}{{ include.image1 }}" class="img-fluid rounded" alt="{{ include.alt-text1 }}"/>
6+
</a>
7+
<a href="{{ site.baseurl }}{{ include.image2 }}">
8+
<img src="{{ site.baseurl }}{{ include.image2 }}" class="img-fluid rounded" alt="{{ include.alt-text2 }}"/>
9+
</a>
10+
</div>

_layouts/default.html

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,19 @@
2020
<meta charset="utf-8">
2121
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2222
<meta name="viewport" content="width=device-width, initial-scale=1">
23-
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
24-
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" rel="stylesheet">
25-
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs5/dt-1.13.6/datatables.min.css">
26-
<link href="{{ site.baseurl }}/css/accumulo.css" rel="stylesheet" type="text/css">
23+
24+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/bootstrap/5.3.1/dist/css/bootstrap.min.css">
25+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/fontawesome/fontawesome-free-6.4.2-web/css/all.min.css">
26+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/datatables/bs5/dt-1.13.6/datatables.min.css">
27+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/accumulo.css">
2728

2829
<title>{% if page.title_prefix %}{{ page.title_prefix | escape }}{% endif %}{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
2930

30-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
31-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
32-
<script type="text/javascript" src="https://cdn.datatables.net/v/bs5/dt-1.13.6/datatables.min.js"></script>
31+
<script type="text/javascript" src="{{ site.baseurl }}/js/jquery/3.7.0/jquery.min.js"></script>
32+
<script type="text/javascript" src="{{ site.baseurl }}/js/bootstrap/5.3.1/dist/js/bootstrap.bundle.min.js"></script>
33+
<script type="text/javascript" src="{{ site.baseurl }}/js/datatables/bs5/dt-1.13.6/datatables.min.js"></script>
3334
<script type="text/javascript" src="https://www.apachecon.com/event-images/snippet.js"></script>
34-
{% include scripts.html %}
35+
<script type="text/javascript" src="{{ site.baseurl }}/js/accumulo.js"></script>
3536
</head>
3637
<body style="padding-top: 100px">
3738

0 commit comments

Comments
 (0)