summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2021-05-17 18:14:13 -0500
committerColin Okay <okay@toyful.space>2021-05-17 18:14:13 -0500
commit2d508a8890157f69a60db9905ff167612614c8a5 (patch)
tree3dbd6e274d885bb5b83747c6434cefaf961da4a3
parent0ea0b0e129929ded7c8542c541c1d1bdd614e2de (diff)
added rss feed class
-rw-r--r--flexo.lisp4
-rw-r--r--package.lisp4
2 files changed, 6 insertions, 2 deletions
diff --git a/flexo.lisp b/flexo.lisp
index 73bee51..e40b4fb 100644
--- a/flexo.lisp
+++ b/flexo.lisp
@@ -224,6 +224,10 @@ artifact tables have changed."
(:documentation "An artifact generated from LASS expressions that
holds CSS content."))
+(defclass rss-feed (template-generated-text) ()
+ (:documentation "An artifact that holds an XML document representing
+ an RSS feed"))
+
;;; CONTENT AND ARTIFACT RETRIEVAL PROTOCOL
(defun content-with-tags (&rest tags)
diff --git a/package.lisp b/package.lisp
index b400939..80441b7 100644
--- a/package.lisp
+++ b/package.lisp
@@ -33,9 +33,9 @@
#:ps-script
#:publish
#:publish-site
+ #:rss-feed
#:run-recipe
#:spinneret-page
#:stop-hacking
#:template-generated-text
- #:artifact-url-path
-))
+ #:artifact-url-path))