Hi,
It seems these two are to be blamed.
(defmethod render-navigation-menu ((navigation protected-navigation) &rest args)
(declare (ignorable args))
(when (funcall (user-fn navigation))
(call-next-method)))
(defmethod render-widget-body ((navigation protected-navigation) &rest args)
(if (authenticatedp)
(call-next-method)
(render-widget (login-widget navigation))))
Weblocks tries to render login widget since user was not
authenticated, but it cannot so it enters an endless loop. Since the
login widget is only instantiated at the point of creating navigation,
I am not sure what to put into render-widget-body method.
--
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en.