This is an automated email from the ASF dual-hosted git repository.
pankajkumar pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new ce8250dcc67 HBASE-29156 Sort options missing in the Table Regions
section on server deployments with security mods (#6738)
ce8250dcc67 is described below
commit ce8250dcc67332bf736b1a9f26f7c3a8e88b4123
Author: Chandra Sekhar K <[email protected]>
AuthorDate: Sat Apr 12 01:20:39 2025 +0530
HBASE-29156 Sort options missing in the Table Regions section on server
deployments with security mods (#6738)
Signed-off-by: Pankaj Kumar<[email protected]>
(cherry picked from commit a95f7d61a55bf8645a7d830355bedf0a1285acbc)
---
.../src/main/resources/hbase-webapps/master/footer.jsp | 10 +---------
.../resources/hbase-webapps/master/{footer.jsp => scripts.jsp} | 2 --
hbase-server/src/main/resources/hbase-webapps/master/table.jsp | 4 +++-
3 files changed, 4 insertions(+), 12 deletions(-)
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
index 6a0ac444e3b..fcded1ed1d0 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
@@ -17,14 +17,6 @@
* limitations under the License.
*/
--%>
- <script src="/static/js/jquery.min.js" type="text/javascript"></script>
- <script src="/static/js/bootstrap.min.js" type="text/javascript"></script>
- <script src="/static/js/tab.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('nav.navbar li.active').removeClass('active');
- $('a[href="' + location.pathname + '"]').addClass('active');
- });
- </script>
+<jsp:include page="scripts.jsp" />
</body>
</html>
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
b/hbase-server/src/main/resources/hbase-webapps/master/scripts.jsp
similarity index 98%
copy from hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
copy to hbase-server/src/main/resources/hbase-webapps/master/scripts.jsp
index 6a0ac444e3b..1e9031f77eb 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/scripts.jsp
@@ -26,5 +26,3 @@
$('a[href="' + location.pathname + '"]').addClass('active');
});
</script>
- </body>
-</html>
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
index a87b4cc7fe1..73b6057a975 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
@@ -1286,7 +1286,7 @@
</div><!--/.row -->
</div> <!--/.container-fluid -->
-<jsp:include page="footer.jsp" />
+<jsp:include page="scripts.jsp" />
<script src="/static/js/jquery.tablesorter.min.js"
type="text/javascript"></script>
<script>
@@ -1369,3 +1369,5 @@ $(document).ready(function()
}
);
</script>
+</body>
+</html>