Changeset 3223
- Timestamp:
- 05/30/08 16:04:24 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/bos-trunk-sat/projects/bos/web/sat-tree.lisp
r3222 r3223 47 47 48 48 (defpersistent-class sat-image (store-image) 49 ((layer :reader layer :initarg :layer) 50 (node :reader node :initarg :node :transient t) 49 ((layer :reader layer :initarg :layer) 51 50 (path :reader path :initarg :path) 52 51 (image-geo-box :accessor image-geo-box … … 173 172 ;; 3)) 174 173 174 (pushnew 'hunchentoot:dispatch-easy-handlers hunchentoot:*dispatch-table*) 175 176 (hunchentoot:define-easy-handler (sat-layer-kml :uri "/sat-layer-kml") 177 ((name :parameter-type 'keyword)) 178 (print name) 179 (assert (find-sat-layer name)) 180 ) 181
