hi, i have read through the documentation for both TBNL and CL-WHO, i have created a page based on what i read.. but i found out i can't figure out how to test the page.. i can see the test page by doing (asdf:oos 'asdf:load-op :tbnl-test), how do i change package from :tbnl-test to something else? what code do i need to add?
i have tried just adding a folder and declare (in-package #:tbnl-test2), that didn't work out too well.. what do i need to do in order to start test2?
thanks alot :D
ps. if this is on the documentation, please excuse my ignorance.. i indeed have read all of it and didn't find any answers to it..
On Sat, 26 Mar 2005 23:03:48 -0500, Jason Wang randomtalk@gmail.com wrote:
hi, i have read through the documentation for both TBNL and CL-WHO, i have created a page based on what i read.. but i found out i can't figure out how to test the page.. i can see the test page by doing (asdf:oos 'asdf:load-op :tbnl-test), how do i change package from :tbnl-test to something else? what code do i need to add?
i have tried just adding a folder and declare (in-package #:tbnl-test2), that didn't work out too well.. what do i need to do in order to start test2?
For basic questions about Common Lisp see for example Peter Seibel's great book at http://www.gigamonkeys.com/book/. In a few weeks you can also buy it in your local bookstore.
Chapter 21 is about packages in particular.
Cheers, Edi.
mmm.. i have looked through the book, and also through the code in the tbnl directory, i have created a new folder called test2, added package.lisp into that folder, containing the following code: (in-package #:cl-user)
(defpackage #:test2 (:use #:cl #:cl-who #:tbnl) (:export #:start-araneida-listener #:stop-araneida-listener))
and it still wouldn't work.. can someone give me a bit more pointer what to do next? thanks alot :D
On Fri, 1 Apr 2005 21:10:47 -0500, Jason Wang randomtalk@gmail.com wrote:
mmm.. i have looked through the book, and also through the code in the tbnl directory, i have created a new folder called test2, added package.lisp into that folder, containing the following code: (in-package #:cl-user)
(defpackage #:test2 (:use #:cl #:cl-who #:tbnl) (:export #:start-araneida-listener #:stop-araneida-listener))
and it still wouldn't work.. can someone give me a bit more pointer what to do next?
What are you trying to do exactly and what doesn't work?