Changeset 3433
- Timestamp:
- 07/14/08 14:00:51 (6 months ago)
- Files:
-
- trunk/projects/bos/web/contract-tree.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/bos/web/contract-tree.lisp
r3431 r3433 243 243 ()) 244 244 245 (defmethod handle ((handler contract-tree-image-handler)) 245 (defmethod handle ((handler contract-tree-image-handler)) 246 246 (with-query-params (path) 247 247 (let* ((path (parse-path path)) 248 (node (find-node-with-path *contract-tree* path))249 (image (image node)))248 (node (find-node-with-path *contract-tree* path)) 249 (image (image node))) 250 250 (hunchentoot:handle-if-modified-since (blob-timestamp image)) 251 251 (with-store-image* (image) 252 (emit-image-to-browser cl-gd:*default-image* :png :date (blob-timestamp image)))))) 252 (emit-image-to-browser cl-gd:*default-image* :png 253 :date (blob-timestamp image) 254 :max-age 600))))) 253 255 254 256 ;;; make-contract-tree-from-m2
