Hi,
Thanks for the previous answer.
2 problems appear for cmucl:
1. I should explicitly say wiki:*wiki-directory* instead as it appears on the home page of cl-wiki. Changed (setf *wiki-directory* #p"/home/vst/cl-wiki") to (setf wiki:*wiki-directory* #p"/home/vst/cl-wiki")
2. In wiki.lisp, (html-mode) gives an error message. Is it a function of cl-who? I already installed cl-who. When I say html-mode :sgml instead of (html-mode) :sgml no problems appear. Do I loose much functionality?
Same things apply for the sbcl as well.
I hope I don't bother you with stupid questions :) I think you need testers :)
--vst
On 2005-09-02 11:50:51, Vehbi Sinan Tunalioglu wrote:
2 problems appear for cmucl:
- I should explicitly say wiki:*wiki-directory* instead as it appears
on the home page of cl-wiki. Changed (setf *wiki-directory* #p"/home/vst/cl-wiki") to (setf wiki:*wiki-directory* #p"/home/vst/cl-wiki")
- In wiki.lisp, (html-mode) gives an error message. Is it a function of
cl-who? I already installed cl-who. When I say html-mode :sgml instead of (html-mode) :sgml no problems appear. Do I loose much functionality?
Is there any CL-WIKI home page I don't know of? The project page can be found under http://common-lisp.net/project/cl-wiki/
You need CL-WHO 0.6.0.
The wiki:*wiki-directory* must be set to a directory pathname. For CMUCL this is done by letting the path end with a slash.
(setf wiki:*wiki-directory* #p"/home/vst/cl-wiki/")
Regards, Stefan
Stefan Scholl wrote:
Is there any CL-WIKI home page I don't know of? The project page can be found under http://common-lisp.net/project/cl-wiki/
I meant http://common-lisp.net/project/cl-wiki/ You are right, it is project page.
You need CL-WHO 0.6.0.
It seems that debian package for cl-who is not the one we need. I installed latest version of cl-who and it works...
The wiki:*wiki-directory* must be set to a directory pathname. For CMUCL this is done by letting the path end with a slash.
(setf wiki:*wiki-directory* #p"/home/vst/cl-wiki/")
On the *project* page, it is
(setf *wiki-directory* #p"/home/vst/cl-wiki/")
not
(setf wiki:*wiki-directory* #p"/home/vst/cl-wiki/")
One might change it.
Thanks a lot... --vst
Vehbi Sinan Tunalioglu wrote
On the *project* page, it is
(setf *wiki-directory* #p"/home/vst/cl-wiki/")
not
(setf wiki:*wiki-directory* #p"/home/vst/cl-wiki/")
One might change it.
Thanks a lot... --vst
This was changed many weeks ago. If you could provide a link to this out of date information, there may be some hope of fixing it. Otherwise, I'm going to assume that the documentation that's out there is accurate.
With many thanks, Kevin