On 1/12/06, Max Ischenko <[EMAIL PROTECTED]> wrote:
> Karl, a bit off-the-topic but nevertheless. In the example you given
> how is template is located/loaded? (I mean that ".show_form" syntax).
TG svn is clever and knows how to look up templates without needing
the project name. You do need the directory, however, so it's:
@expose(inputform=some_form, template=".templates.show_form")
def foobar(self,*args,**params):
return dict(args = args, params = params)
I don't actually know how this works, but it's fun.