Add post module.
* haunt/post.scm: New file. * Makefile.am (SOURCES): Add it.
This commit is contained in:
parent
2a878fd9ee
commit
18a0b7ce6b
|
@ -41,6 +41,7 @@ godir=$(libdir)/guile/2.0/ccache
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
haunt/config.scm \
|
haunt/config.scm \
|
||||||
|
haunt/post.scm \
|
||||||
haunt/ui.scm \
|
haunt/ui.scm \
|
||||||
haunt/ui/serve.scm \
|
haunt/ui/serve.scm \
|
||||||
haunt/serve/mime-types.scm \
|
haunt/serve/mime-types.scm \
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
;;; Haunt --- Static site generator for GNU Guile
|
||||||
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||||
|
;;;
|
||||||
|
;;; This file is part of Haunt.
|
||||||
|
;;;
|
||||||
|
;;; Haunt is free software; you can redistribute it and/or modify it
|
||||||
|
;;; under the terms of the GNU General Public License as published by
|
||||||
|
;;; the Free Software Foundation; either version 3 of the License, or
|
||||||
|
;;; (at your option) any later version.
|
||||||
|
;;;
|
||||||
|
;;; Haunt 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
|
||||||
|
;;; General Public License for more details.
|
||||||
|
;;;
|
||||||
|
;;; You should have received a copy of the GNU General Public License
|
||||||
|
;;; along with Haunt. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
;;
|
||||||
|
;; Post data type.
|
||||||
|
;;
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(define-module (haunt post)
|
||||||
|
#:use-module (srfi srfi-9)
|
||||||
|
#:export (make-post
|
||||||
|
post?
|
||||||
|
post-file-name
|
||||||
|
post-sxml
|
||||||
|
post-metadata
|
||||||
|
post-ref))
|
||||||
|
|
||||||
|
(define-record-type <post>
|
||||||
|
(make-post file-name metadata sxml)
|
||||||
|
post?
|
||||||
|
(file-name post-file-name)
|
||||||
|
(metadata post-metadata)
|
||||||
|
(sxml post-sxml))
|
||||||
|
|
||||||
|
(define (post-ref post key)
|
||||||
|
"Return the metadata corresponding to KEY within POST."
|
||||||
|
(assq-ref (post-metadata post) key))
|
Loading…
Reference in New Issue