summaryrefslogtreecommitdiff
path: root/globals.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-06-30 21:40:27 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-06-30 21:40:27 +0200
commitf262befd1591052f273055a3b1e80aa0d62e3814 (patch)
treed2c1e3ac3594ffa74538dc23bca6dc3f50108626 /globals.lisp
parentc74c449d11281c942965ca85d84c59b9107e4521 (diff)
Cache FORMAT-DATE results for faster page generation.
darcs-hash:2efe2fb7b5c7637c31d56be210624a48f61755ec
Diffstat (limited to 'globals.lisp')
-rw-r--r--globals.lisp10
1 files changed, 8 insertions, 2 deletions
diff --git a/globals.lisp b/globals.lisp
index 1764089..cf69230 100644
--- a/globals.lisp
+++ b/globals.lisp
@@ -60,5 +60,11 @@
(defparameter *journal-entries* nil
"A list of JOURNAL-ENTRY objects.")
-(defparameter *cgi-p* nil
- "Whether we have been called as a CGI script or not.")
+(defparameter *script-dir* nil
+ "The directory which all the Lisp code lives in.")
+
+(defparameter *cache-dir* nil
+ "The directory used for caching generated markup.")
+
+(defparameter *entry-dir* nil
+ "The directory containing the journal entry data files.")