jekyll-theme-zer0 1.18.1 → 1.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +60 -0
- data/README.md +8 -4
- data/_data/backlog.yml +135 -2
- data/_data/features.yml +31 -10
- data/_data/hub.yml +68 -0
- data/_data/hub_index.yml +203 -0
- data/_data/navigation/hub.yml +110 -0
- data/_data/navigation/main.yml +7 -0
- data/_includes/analytics/google-analytics.html +14 -6
- data/_includes/analytics/google-tag-manager-head.html +13 -5
- data/_includes/components/ai-chat.html +143 -346
- data/_includes/core/head.html +4 -2
- data/_layouts/home.html +17 -4
- data/_sass/core/_docs-layout.scss +1 -0
- data/assets/js/ai-chat.js +853 -0
- data/scripts/lib/hub.rb +208 -0
- data/scripts/provision-org-sites.rb +252 -0
- data/scripts/provision-org-sites.sh +23 -0
- data/scripts/sync-hub-metadata.rb +184 -0
- data/scripts/sync-hub-metadata.sh +22 -0
- metadata +11 -2
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# sync-hub-metadata.sh
|
|
4
|
+
# =============================================================================
|
|
5
|
+
#
|
|
6
|
+
# Thin wrapper around scripts/sync-hub-metadata.rb.
|
|
7
|
+
#
|
|
8
|
+
# Refreshes the org content hub dashboard data (_data/hub_index.yml and
|
|
9
|
+
# _data/navigation/hub.yml) from the GitHub API. Content stays in the source
|
|
10
|
+
# repos — nothing is cloned or copied here.
|
|
11
|
+
#
|
|
12
|
+
# Usage:
|
|
13
|
+
# ./scripts/sync-hub-metadata.sh # refresh dashboard data
|
|
14
|
+
# ./scripts/sync-hub-metadata.sh --check # validate registry/output only (CI/PR gate)
|
|
15
|
+
# ./scripts/sync-hub-metadata.sh --dry-run # print planned actions only
|
|
16
|
+
#
|
|
17
|
+
# =============================================================================
|
|
18
|
+
|
|
19
|
+
set -euo pipefail
|
|
20
|
+
|
|
21
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
22
|
+
exec ruby "${SCRIPT_DIR}/sync-hub-metadata.rb" "$@"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-zer0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.19.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -86,12 +86,15 @@ files:
|
|
|
86
86
|
- _data/generate_statistics.sh
|
|
87
87
|
- _data/github-actions-example.yml
|
|
88
88
|
- _data/glossary.yml
|
|
89
|
+
- _data/hub.yml
|
|
90
|
+
- _data/hub_index.yml
|
|
89
91
|
- _data/landing.yml
|
|
90
92
|
- _data/navigation/README.md
|
|
91
93
|
- _data/navigation/about.yml
|
|
92
94
|
- _data/navigation/admin.yml
|
|
93
95
|
- _data/navigation/docs.yml
|
|
94
96
|
- _data/navigation/home.yml
|
|
97
|
+
- _data/navigation/hub.yml
|
|
95
98
|
- _data/navigation/main.yml
|
|
96
99
|
- _data/navigation/posts.yml
|
|
97
100
|
- _data/navigation/quickstart.yml
|
|
@@ -274,6 +277,7 @@ files:
|
|
|
274
277
|
- assets/data/notebooks/survey_responses.csv
|
|
275
278
|
- assets/data/notebooks/weather_data.csv
|
|
276
279
|
- assets/data/wiki-index.json
|
|
280
|
+
- assets/js/ai-chat.js
|
|
277
281
|
- assets/js/auto-hide-nav.js
|
|
278
282
|
- assets/js/back-to-top.js
|
|
279
283
|
- assets/js/background-customizer.js
|
|
@@ -442,6 +446,7 @@ files:
|
|
|
442
446
|
- scripts/lib/frontmatter.sh
|
|
443
447
|
- scripts/lib/gem.sh
|
|
444
448
|
- scripts/lib/git.sh
|
|
449
|
+
- scripts/lib/hub.rb
|
|
445
450
|
- scripts/lib/install/README.md
|
|
446
451
|
- scripts/lib/install/agents.sh
|
|
447
452
|
- scripts/lib/install/ai/diagnose.sh
|
|
@@ -475,10 +480,14 @@ files:
|
|
|
475
480
|
- scripts/platform/setup-macos.sh
|
|
476
481
|
- scripts/platform/setup-wsl.sh
|
|
477
482
|
- scripts/post-template-setup.sh
|
|
483
|
+
- scripts/provision-org-sites.rb
|
|
484
|
+
- scripts/provision-org-sites.sh
|
|
478
485
|
- scripts/release
|
|
479
486
|
- scripts/setup.sh
|
|
480
487
|
- scripts/sync-backlog.rb
|
|
481
488
|
- scripts/sync-backlog.sh
|
|
489
|
+
- scripts/sync-hub-metadata.rb
|
|
490
|
+
- scripts/sync-hub-metadata.sh
|
|
482
491
|
- scripts/test-auto-version.sh
|
|
483
492
|
- scripts/test-mermaid.sh
|
|
484
493
|
- scripts/test-notebook-conversion.sh
|