Skip to content

Insert the newest sqlpage version #826

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2025
Merged
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
12 changes: 8 additions & 4 deletions examples/official-site/your-first-sql-website/index.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SET url = 'https://api.github.com/repos/sqlpage/SQLPage/releases/latest';
SET api_results = sqlpage.fetch($url);
SET sqlpage_version = json_extract($api_results, '$.tag_name');

select 'http_header' as component,
'public, max-age=300, stale-while-revalidate=3600, stale-if-error=86400' as "Cache-Control",
'<https://sql-page.com/your-first-sql-website/>; rel="canonical"' as "Link";
Expand Down Expand Up @@ -36,10 +40,10 @@ Let''s create a simple website with a database from scratch, to learn SQLPage ba
ELSE 'https://github.com/sqlpage/SQLPage/releases'
END AS link,
CASE $os
WHEN 'macos' THEN 'Install SQLPage using Homebrew'
WHEN 'windows' THEN 'Download SQLPage for Windows'
WHEN 'linux' THEN 'Download SQLPage for Linux'
ELSE 'Download SQLPage'
WHEN 'macos' THEN CONCAT('Install SQLPage ', $sqlpage_version, ' using Homebrew')
WHEN 'windows' THEN CONCAT('Download SQLPage ', $sqlpage_version, ' for Windows')
WHEN 'linux' THEN CONCAT('Download SQLPage ', $sqlpage_version, ' for Linux')
ELSE CONCAT('Download SQLPage ', $sqlpage_version)
END AS link_text;

SELECT 'alert' as component,
Expand Down
Loading