X-Git-Url: http://git.pond.sub.org/?p=eow;a=blobdiff_plain;f=Notes;h=62493a5abc64f0926c98daf119532f2b9e1c61a3;hp=84450c8edb39056ddf4b17683a12d6273c365aa2;hb=96d5b46f8a408652757fb21a801c005697dc45f7;hpb=5d9cd96defbb48b12f4a2ba528ec41c7286e1a32 diff --git a/Notes b/Notes index 84450c8..62493a5 100644 --- a/Notes +++ b/Notes @@ -1,3 +1,9 @@ + +reproducible install + - dependencies + - install from clean state + +-------------------------------------------------------------------------------- On COMET w/ hunchentoot: http://common-lisp.net/pipermail/tbnl-devel/2009-February/004620.html I have a working comet system using Hunchentoot. @@ -26,3 +32,14 @@ available. (defun comet (fn &optional (session *working-session*)) (setf (session-value 'comet-fn session) fn) (signal-semaphore (session-value 'comet-semaphore session))) + +-------------------------------------------------------------------------------- + +Empire connection handling + +Maybe do something like cl-irc does with register/unregister handler. Might be +even better combined with the modes system, provide an easy way to specify which +event types a specific mode implementation is interested in. Register automatically +on construction and deregister when leaving the mode. + +Using the object system like I do it right doesn't seem like a really good fit.