I had guessed as much, but I must have messed up the syntax. Lets see...
Coolness. Now I can port the blog. Here is the trivial code for those that come
upon this via google...
(weblocks:defwebapp
globalisles.net :prefix "/")
(defun init-user-session (comp)
(setf (weblocks:composite-widgets comp)
(make-main-page)))
;; --------------------------------------------------------------
;; Main page is the navigation with children
;; --------------------------------------------------------------
(defun make-main-page ()
(make-navigation 'navigation
'main (make-main-widget)
'blog (make-navigation 'blog
'cat1 (make-cat1-widget)
'cat2 (make-cat2-widget))
'admin (make-admin-widget)))
;; --------------------------------------------------------------
;; Stubs for test
;; --------------------------------------------------------------
(defun make-blog-widget ()
"Hello blog2")
(defun make-main-widget ()
"home page")
(defun make-admin-widget ()
"123")
(defun make-cat1-widget ()
"cat1")
(defun make-cat2-widget ()
"cat2")
Now, on to CSS.
A CMS for these Global Isles...
Cheers,
---Venkat.
http://www.rayservers.com/
>
> Leslie
> >