While grokking your psycho-tests login code, may I give some small feedback
on other stuff:

The weblocks-app-generation-script is awesome, and just needs some small
fixes to work with no minor nuisances:
     -for some reason, when reading the
lib/weblock-utils/assests-packages.lisp, it doesn't have the uiop package
already loaded and complains not being able to use the (uiop:getcwd)
function. I just added a quickload before it. Any better suggestions?
     -the two functions in the script have a few repeated code that could
be encapsulated in a small procedure. Am I being boring?
     -the (sb-ext:exit) function was deprecated in SBCL, and it complains
every time that the main app file is loaded, where the function is defined.
Just replace it with (sb-ext:quit) on both script's functions.
     -I'm still having some trouble with the require-quicklisp files. It
looks like it has been badly packaged:
; file: path/to/app/.quicklisp-install/require-quicklisp.lisp
; in: DEFUN REQUIRE-QUICKLISP
;     (AVAILABLE-VERSIONS (DIST "quicklisp"))
;
; caught STYLE-WARNING:
;   undefined function: AVAILABLE-VERSIONS
Every time I start the script/server it gives me a full complaint, but
works anyway. How can I fix it?
     -I was using the linedit REPL on the terminal to interact with the
running app, but today I realized that I could connect to the running swank
server using "M-x slime-connect" on the terminal! (I loved it =] ). So, in
order to reload changed code into the running app, a simple function like:

(defun reload ()
  (mapcar (f_ (load _))
               *src-files*)) ;with *src-files* defined before

Is this a good way of reload all? Does all actually gets reloaded?

Thanks for all the support!
And thanks Robert Taylor for you disposal on testing. I'll surely need it!

-- 
You received this message because you are subscribed to the Google Groups 
"weblocks" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/weblocks.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to