From a8f1304d1d66a82bed01df63b9b9e207cf5be021 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 2 Dec 2019 13:25:42 +0100 Subject: Add a new html-utils module To store code used for rendering HTML across multiple controllers. --- Makefile.am | 1 + guix-data-service/web/html-utils.scm | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 guix-data-service/web/html-utils.scm diff --git a/Makefile.am b/Makefile.am index e73f94b..5bf9570 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,6 +93,7 @@ SOURCES = \ guix-data-service/model/package-metadata.scm \ guix-data-service/model/package.scm \ guix-data-service/model/utils.scm \ + guix-data-service/web/html-utils.scm \ guix-data-service/web/compare/controller.scm \ guix-data-service/web/compare/html.scm \ guix-data-service/web/controller.scm \ diff --git a/guix-data-service/web/html-utils.scm b/guix-data-service/web/html-utils.scm new file mode 100644 index 0000000..6a16b9c --- /dev/null +++ b/guix-data-service/web/html-utils.scm @@ -0,0 +1,36 @@ +;;; Guix Data Service -- Information about Guix over time +;;; Copyright © 2019 Christopher Baines +;;; +;;; This program is free software: you can redistribute it and/or +;;; modify it under the terms of the GNU Affero General Public License +;;; as published by the Free Software Foundation, either version 3 of +;;; the License, or (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; Affero General Public License for more details. +;;; +;;; You should have received a copy of the GNU Affero General Public +;;; License along with this program. If not, see +;;; . + +(define-module (guix-data-service web html-utils) + #:use-module (ice-9 match) + #:export (sexp-div)) + +(define (sexp-div sexp) + (peek "SEXP" sexp) + (match sexp + (#(val rest ...) + `(div (@ (style "margin-left: 1em;")) + "( " + ,val + " " + ,@(map sexp-div rest) + " )")) + ((("base16" . hash)) + `(span (@ (style "font-family: monospace;")) + ,hash)) + ((and string val) + val))) -- cgit v1.2.3