I'm very new to common lisp so this question may just be a general
common lisp issue and not specific to weblocks.
I have downloaded, installed, and compiled weblocks using the excellent
instructions at http://weblocks.viridian-project.de/
I have also, been able to run the weblocks-demo application which worked
with ajax out of the box.
My problems came when trying to create a fresh application to start
playing around with.
Using both the stable and dev versions of weblocks I ran the following,
and (with the dev version) ran into the following errors.
;; load everything
(push #p"/home/eschulte/src/weblocks/weblocks-dev" asdf:*central-registry*)
(asdf:operate 'asdf:load-op :weblocks)
(asdf:operate 'asdf:load-op :weblocks-scripts)
(asdf:operate 'asdf:load-op :weblocks-test)
(asdf:operate 'asdf:load-op :weblocks-store-test)
;; create fresh application
(weblocks-scripts:make-application 'eric)
(push #p"/home/eschulte/src/weblocks/eric/" asdf:*central-registry*)
;; then trying to load the application with
(asdf:operate 'asdf:load-op :eric)
generated the following error
: The function ERIC::SET-WEBLOCKS-DEFAULT-PUBLIC-FILES-PATH is undefined.
commenting out this portion of eric/eric.lisp and reloading resulted in
the following error
: 'ERIC::ERIC is not a legal class name.
Any suggestions as to what I'm doing wrong would be much appreciated.
Thanks -- Eric
> On Dec 6, 10:29 am, "Leslie P. Polzer" <leslie.pol...@gmx.net> wrote:
>>
>> I'll fix this and push it today.
>
> Fixed in stable/778384ad4830; not yet in -dev.
>
> Sorry for the inconvenience, I hope everything's fine with the app
> template now.
>
I just got an application up and running with the latest from
weblocks-stable.
Thanks -- Eric