coleslaw/src/packages.lisp

57 lines
1.2 KiB
Common Lisp
Raw Normal View History

2011-04-16 15:45:37 -04:00
(defpackage :coleslaw
(:use :cl :closure-template)
(:export ;; coleslaw-core
#:*storage*
#:start-coleslaw
#:stop-coleslaw
#:get-credentials
#:set-credentials
;; themes
#:*current-theme*
#:*theme-dir*
;; WARNING: STILL IN FLUX
;; posts
#:make-post
#:add-post
#:remove-post
#:render-post
#:find-post
#:find-by-tag
#:find-by-date
#:find-by-range
#:post-url
2011-04-16 15:45:37 -04:00
#:post-id
#:post-title
#:post-tags
#:post-date
#:post-content
#:post-aliases
2011-04-16 15:45:37 -04:00
;; comments
#:make-comment
#:add-comment
#:remove-comment
#:render-comments
#:find-comments
#:author-name
#:author-url
#:author-ip
#:comment-id
#:comment-post
#:comment-author
#:comment-timestamp
#:comment-content
#:comment-parent
2011-04-16 15:45:37 -04:00
;; indices
#:add-index
#:remove-index
#:render-index
#:find-index
))