From ec39b668f9d07c7041ed75dbb5fb5f5798635855 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 30 Oct 2024 14:42:45 -0500 Subject: Fix format for the +info+ pairs Fix the format for the info pairs to avoid failure when accessing the root of the application. --- web/webserver.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'web/webserver.scm') diff --git a/web/webserver.scm b/web/webserver.scm index 03fad92..d4044a8 100644 --- a/web/webserver.scm +++ b/web/webserver.scm @@ -34,14 +34,14 @@ (getenv "CGIT_REPO_PATH")) (define +info+ - `(("name" . "GeneNetwork REST API") ("version" ,get-version) + `(("name" . "GeneNetwork REST API") ("version" . ,get-version) ("comment" . "This is the official REST API for the GeneNetwork service hosted at https://genenetwork.org/") ("license" ("source code (unless otherwise specified)" . "Affero GNU Public License 3.0 (AGPL3)") ("data (unless otherwise specified)" . "Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)")) ("note" . "This is work in progress (WIP). Note that the final base URL will change! The temporary prefix is:") - ("prefix" ,(prefix)) - ("links" ("species" ,(mk-meta "species"))))) + ("prefix" . ,(prefix)) + ("links" ("species" . ,(mk-meta "species"))))) (define +info-meta+ `(("doc" ,(mk-html "info")) -- cgit v1.2.3