summaryrefslogtreecommitdiff
path: root/main.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-10-02 10:35:35 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-10-02 10:35:35 +0200
commit3c31d317fa77b4f0f55b89fb07a63c65b3843cdf (patch)
treeb70d0819f623a515fe5a926ded8b80d82ddd41ca /main.lisp
parent5cbb20a04c99113f485ac59124d2f1ffce3f59ee (diff)
Add a debugging page.
darcs-hash:e4f4c096e3e20e6e8de59a4466e891fab8005a80
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 d8ae683..a16e1ed 100644
--- a/main.lisp
+++ b/main.lisp
@@ -48,6 +48,7 @@
(*action* (or (keywordify (getf *query* :action))
(cond (*post-number* :view)
((string= "feed" (first *subpath*)) :view-atom-feed)
+ ((string= "debug" (first *subpath*)) :view-debugging-page)
(t nil))))
(*method* (keywordify (gethash "REQUEST_METHOD" *http-env*)))
(*script-filename* (pathname-as-file
@@ -102,6 +103,7 @@
(update-records-from-instance entry)))
(show-web-journal))
(:view-atom-feed (show-atom-feed))
+ (:view-debugging-page (show-debugging-page))
(otherwise (show-web-journal)))))))