summaryrefslogtreecommitdiff
path: root/main.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2009-01-07 22:39:57 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2009-01-07 22:39:57 +0100
commitd13896ecbc3c94acdcbd90b857855d8807c73199 (patch)
tree9b1295c411849f7fcb959b5f9b7f85732e543da8 /main.lisp
parente58ee3a36ba9491bd777f9cf19b9067c8695af1f (diff)
Add a comment feed.
darcs-hash:f7082552f0f6aac46b15956740661b8b74237fec
Diffstat (limited to 'main.lisp')
-rw-r--r--main.lisp2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.lisp b/main.lisp
index 463106c..0c17fbe 100644
--- a/main.lisp
+++ b/main.lisp
@@ -47,6 +47,7 @@
:junk-allowed t #|| :radix 12 ||#))
(*action* (or (keywordify (getf *query* :action))
(cond ((string= "feed" (first *subpath*)) :view-atom-feed)
+ ((string= "comment-feed" (first *subpath*)) :view-comment-feed)
((string= "debug" (first *subpath*)) :view-debugging-page)
((string= "preview" (car (last *subpath*))) :preview-entry)
((string= "save" (car (last *subpath*))) :save-entry)
@@ -165,6 +166,7 @@
(mail-comment *notification-email* comment entry))))
(show-web-journal))
(:view-atom-feed (show-atom-feed))
+ (:view-comment-feed (show-comment-feed))
(:view-debugging-page (show-debugging-page))
(otherwise (show-web-journal))))