> On a side note, does the menu support multiple sub-menus or did anyone
> attempt that?
It's not hard to do this at a basic level by simply nesting
navigations.
To have a comfortable declarative interface one would have to
extend the INIT-NAVIGATION macro.
> Also I have been checking the thread and i know that
> there was some work for jquery is there a way to replace the current
> javascript framework and if not anyone cares to point me in the
> direction?
You need to edit the few scripts that come with Weblocks.
See docs/js-backend-abstraction.txt for some notes on this.
Here's a working AJAX interface for JQuery:
function initiateActionWithArgs(actionCode, sessionString, args, method) {
jj.ajax(
{
url:getActionUrl(actionCode, sessionString),
type: method,
success: onActionSuccess,
error: onActionFailure,
data: args
});
}
> As you can see it is missing a ; on line 6, 7 and 32 (which results in
> a not so nice dialog).
It's a bit hard to see since you haven't annotated the lines...
I have spotted one at the beginning but the line is followed
by a closing curly which implies a semicolon (IIRC).
> Should I upload to the repository (not sure yet if I have permission).
Here are some notes for contributing:
http://trac.common-lisp.net/cl-weblocks/wiki/WeblocksDevelopment
You basically need to send a patch or fork your own repository
and send a pull request.