From 8dba8afed9ffdb11f3b49bd0ed7cdb98269ad709 Mon Sep 17 00:00:00 2001 From: arijitroy003 Date: Thu, 23 Jul 2026 17:34:04 +0530 Subject: [PATCH 1/4] Fix malformed heading in content/_index.md Remove stray closing HTML tag from markdown heading on the index page. The markdown ## prefix already renders the heading; the trailing HTML tag is invalid and may cause rendering issues. --- content/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_index.md b/content/_index.md index 9fe99a4..dc3218a 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,7 +2,7 @@ title: Community Central --- -## Open Source and AI Program Office (OSAIPO) +## Open Source and AI Program Office (OSAIPO)
Learn more about the Red Hat Open Source and AI Program Office From 20245cfb633af197153bec9608e358d4cc9be32c Mon Sep 17 00:00:00 2001 From: arijitroy003 Date: Thu, 23 Jul 2026 17:34:07 +0530 Subject: [PATCH 2/4] Fix incomplete sentence and typo in README - Complete the cut-off sentence about CI builds on line 27 - Fix 'build' -> 'built' typo on line 30 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3d481d..5b928d2 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ Go to the URL for the webserver (likely `localhost:1111`) to explore the site. ### Adding to the site -Please create a new branch for your changes and open a PR. Reviews are mandatory. Builds are +Please create a new branch for your changes and open a PR. Reviews are mandatory. Builds are automated via CI. ## Built with -This project is build and run using [Zola](https://www.getzola.org/), a Rust-based static site generator. +This project is built and run using [Zola](https://www.getzola.org/), a Rust-based static site generator. Under the hood, Zola uses [Tera](https://keats.github.io/tera/) for templating. From 684de18a29583378ee272a914a0b80bf30cc71ac Mon Sep 17 00:00:00 2001 From: arijitroy003 Date: Thu, 23 Jul 2026 17:34:11 +0530 Subject: [PATCH 3/4] Fix implicit global variable in table-search.js Add const declaration to filter variable in searchTable() and filterTable() functions. Without let/const, the variable leaks into the global scope, which can cause unexpected behavior when both functions reference the same implicit global. --- static/js/table-search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/table-search.js b/static/js/table-search.js index d23dc43..f01499a 100644 --- a/static/js/table-search.js +++ b/static/js/table-search.js @@ -8,7 +8,7 @@ function searchTable() { clearInput.addEventListener('click', inputClear); - filter = input.value.toLowerCase(); + const filter = input.value.toLowerCase(); if (input.value !== '') { clearInput.removeAttribute('hidden'); @@ -45,7 +45,7 @@ function filterTable() { const table = document.querySelector('#project-table'); const trs = table.querySelectorAll('tr'); - filter = input.value.toLowerCase(); + const filter = input.value.toLowerCase(); trs.forEach((tr) => { let tds = tr.querySelectorAll('td'); From 581f3045e85cf0848f894303d911a9df622ba52c Mon Sep 17 00:00:00 2001 From: arijitroy003 Date: Thu, 23 Jul 2026 17:34:14 +0530 Subject: [PATCH 4/4] Update stale Fedora download label Remove outdated '(after April 28th)' qualifier from the Fedora Linux 44 download link since the release date has long passed. --- data/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/data.json b/data/data.json index 67a411b..49ca267 100644 --- a/data/data.json +++ b/data/data.json @@ -7,7 +7,7 @@ "description": "A community-driven Linux distribution sponsored by Red Hat, serving as the upstream for RHEL.", "children": [ { - "label": "Download Fedora Linux 44! (after April 28th)", + "label": "Download Fedora Linux 44", "url": "https://fedoraproject.org/" }, {