Yay, that worked. For screenshotty goodness of my now-working comic
view method, check out http://www.flickr.com/photo_zoom.gne?
id=383998530&size=o :)

A thing about that never ceases to amaze me is how Python just works
in the way that seems most logical. It is just hard to unlearn the
complex thinking that comes from hacking PHP for years...

In any case, thank you, Ian.

On Feb 8, 9:08 pm, "Ian Wilson" <[EMAIL PROTECTED]> wrote:
> O right and thenhttp://example.com/comic/view/userfriendlyshould
> result in a call to view with comicName=userfriendly.  So pretty much
> what you though worked does work.
>
> On 2/8/07, Ian Wilson <[EMAIL PROTECTED]> wrote:
>
> > I think you could have Comic as a subcontroller of Root with a method  view:
>
> > class Comic(Controller):
>
> >     @expose(...)
> >     def view(self, comicName=None):
> >         """ Use comicName to find the correct comic. """
> >         return dict(...)
>
> > class Root(RootController):
>
> >     comic = Comic()
>
> > -Ian
>
> > On 2/8/07, Mikkel Høgh <[EMAIL PROTECTED]> wrote:
>
> > > Hi fellow TurboGeeks,
>
> > > I have been working on a small webcomic aggregator in TurboGears, and
> > > I've made good progress so far (The project page is 
> > > athttps://launchpad.net/parade
> > > and the code can be found athttps://launchpad.net/~mikl/+branch/
> > > parade/parade.dev (Bazaar-NG repository - if you have bzr installed,
> > > you can just do a bzr branch with the URI above))
>
> > > The only problem I have is that I cannot seem to remember the finer
> > > details of TurboGears controllers, and I cannot seem to find the
> > > documentation that I need...
>
> > > I want to use the /controller/action/id paradigm for URIs in my
> > > project, so that /comic/view/userfriendly does just that.
> > > So, how to proceed?
> > > 1) Is it enough to just create a new controller named Comic and have a
> > > method in that called view?
> > > 2) How do you pass the last bit of the URI as an argument to the
> > > function?
>
> > > I hope some of you will be able to enlighten me :)
>
> > > Kind regards,
> > > Mikkel Høgh


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to