> 3. I love the "append" (and probably other methods) of the Helpers, really > beautiful !! > Why does Menu not allow these methods ?
it does. Menu is just a list of tuples
response.menu=[]
submenu_title=[]
response.menu.append(("Search",False,URL('index'),submenu_title))
submenu_title.append(("Google",False,'http://www.google.com'))

