Changeset 3441
- Timestamp:
- 07/15/08 12:14:00 (4 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
r3440 r3441 12 12 (defun contract-node-invalidate-timestamp (node) 13 13 (let ((image (contract-node-find-corresponding-store-image node))) 14 (setf (timestamp node) 15 (if (and image (probe-file (blob-pathname image))) 16 (1+ (blob-timestamp image)) 17 (get-universal-time))))) 14 (when (and image (probe-file (blob-pathname image))) 15 (setf (timestamp node) (1+ (blob-timestamp image)))))) 18 16 19 17 (defun contract-node-timestamp-updater (contract)
