]> git.pond.sub.org Git - eow/blobdiff - Notes
Put tests in separate system
[eow] / Notes
diff --git a/Notes b/Notes
index 84450c8edb39056ddf4b17683a12d6273c365aa2..62493a5abc64f0926c98daf119532f2b9e1c61a3 100644 (file)
--- 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.