Macro: defurlmap

Source

(defmacro defurlmap (map-name &rest url-specs) 
  ;; A request url is test against the urlmap in the order:
  ;; handler, class-wethod, wethod, package, nested-map. 
  `(register-urlmap ',map-name ,@(mapcar #'normalize-url-spec url-specs)))
Source Context