Also, all functions like reblocks/request:get-parameters should work within defined route.
- State “DONE” from “TODO” [2017-09-11 Mon 09:59]
Get rid of distinction between :pre :post and :dynamic hooks
Code for adding a hook should look like:
(add-application-hook my-hook ()
(some-code-of-implementation)
(call-next-hook))
Instead of
(defun my-hook (hooks)
(some-code-of-implementation)
(eval-dynamic-hooks hooks))
(add-application-hook :pre-render
my-hook)
Need to place these forms in the top of flet from
This way it will be possible also to push data from server to the client. This can be initiated by a timer or by some event or action from the developer. For example, server can push new css/js dependencies for all widgets shown on the page or for single widget, when developer hits C-c C-c in the Emacs.