Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/yetus-general-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@ jobs:
YETUS_VERSION: '0.15.0'

steps:
- name: Install Playwright dependencies
run: npx playwright install-deps

- name: Install Playwright dependencies 2
run: |
sudo apt-get install libxcb-shm0 libx11-xcb1 libx11-6 libxcb1 libxext6 libxrandr2 \
libxcomposite1 libxcursor1 libxdamage1 libxfixes3 libxi6 libgtk-3-0 libpangocairo-1.0-0 \
libpango-1.0-0 libatk1.0-0 libcairo-gobject2 libcairo2 libgdk-pixbuf-2.0-0 libglib2.0-0 \
libxrender1 libasound2t64 libfreetype6 libfontconfig1 libdbus-1-3

- name: Checkout HBase
uses: actions/checkout@v4
with:
Expand Down
21 changes: 20 additions & 1 deletion hbase-website/public/book.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
<!--
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

Expand Down Expand Up @@ -50336,4 +50355,4 @@ <h4 id="_accesscontrolclient_changes"><a class="anchor" href="#_accesscontrolcli
</script>
<script src="./old-book-static-files/MathJax.js?config=TeX-MML-AM_HTMLorMML"></script>

<div style="position: absolute; width: 0px; height: 0px; overflow: hidden; padding: 0px; border: 0px; margin: 0px;"><div id="MathJax_Font_Test" style="position: absolute; visibility: hidden; top: 0px; left: 0px; width: auto; padding: 0px; border: 0px; margin: 0px; white-space: nowrap; text-align: left; text-indent: 0px; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; font-size: 40px; font-weight: normal; font-style: normal; font-size-adjust: none; font-family: STIXSizeOneSym, monospace;"></div></div></body></html>
<div style="position: absolute; width: 0px; height: 0px; overflow: hidden; padding: 0px; border: 0px; margin: 0px;"><div id="MathJax_Font_Test" style="position: absolute; visibility: hidden; top: 0px; left: 0px; width: auto; padding: 0px; border: 0px; margin: 0px; white-space: nowrap; text-align: left; text-indent: 0px; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; font-size: 40px; font-weight: normal; font-style: normal; font-size-adjust: none; font-family: STIXSizeOneSym, monospace;"></div></div></body></html>
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2130,6 +2130,12 @@
<exclude>**/src/main/resources/hbase-webapps/static/*/bootstrap*</exclude>
<!-- BSD 3-clause: Vega, Vega-Lite, Vega-Embed -->
<exclude>**/hbase-webapps/static/js/vega*.min.js</exclude>
<!-- MIT: https://github.com/rubychan/coderay/blob/master/MIT-LICENSE -->
<exclude>**/public/old-book-static-files/coderay-asciidoctor.css</exclude>
<!-- MIT: Asciidoctor default stylesheet https://github.com/asciidoctor/asciidoctor/blob/HEAD/LICENSE -->
<exclude>**/public/old-book-static-files/hbase.css</exclude>
<!-- http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License -->
<exclude>**/public/old-book-static-files/font-awesome.css</exclude>
<!-- vector graphics -->
<exclude>**/*.vm</exclude>
<!-- apache doxia generated -->
Expand All @@ -2153,6 +2159,8 @@
<exclude>**/CC-MAIN-2021-10-warc.paths.gz</exclude>
<!-- Cannot add ASF licence to JSON files as JSON files cannot have comments in them. -->
<exclude>**/*.json</exclude>
<!-- MDX documentation pages -->
<exclude>**/*.mdx</exclude>
</excludes>
</configuration>
</plugin>
Expand Down Expand Up @@ -2895,6 +2903,7 @@
<exclude>**/dependency-reduced-pom.xml</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/node_modules/**</exclude>
<exclude>**/hbase-default.md</exclude>
</excludes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
Expand Down
Loading