page1 is probably available now in http://localhost:8080/page1
(please confirm that)

If you want to see it in http://localhost:8080/info/page1 then you
need to create a sub-controller and mount it under the root controller.

Like this:

class InfoController:
         @expose(template="wfinance.templates.info.page1")
        def page1(self):
                return blah...

class Root(controllers.RootController):
        ...
        info = InfoController()

Nadav


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" 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/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to