summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-06-30 23:09:41 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-06-30 23:09:41 +0200
commit6ad080f4eba61e1ee5aa5e30d4c28e2c11c47a86 (patch)
tree32e635635302f1a861cddad72e4c560cb9ee9623
parent41ab19abcfda6dfa43005686952bfe33fa06ef54 (diff)
Refrain from generating Last-Modified HTTP headers for now.
darcs-hash:9b2a48c8d03e579d0585ee5ec9ce3a585c92cde0
-rwxr-xr-xjournal.lisp6
1 files changed, 5 insertions, 1 deletions
diff --git a/journal.lisp b/journal.lisp
index 2dfa4bc..672d5d8 100755
--- a/journal.lisp
+++ b/journal.lisp
@@ -229,7 +229,11 @@
(defun show-web-journal ()
- (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date)))
+ ;; TODO: Check how to make Squid not wait for the CGI script's
+ ;; termination, which makes generating a Last-Modified header
+ ;; feel slower to the end user rather than faster.
+ ;;
+ ;; (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date)))
(http-send-headers "text/html; charset=UTF-8")
(<xhtml :xmlns "http://www.w3.org/1999/xhtml"