Re: how (Tosca)Widgets fits into MVC concept

2007-01-25 Thread Ksenia
Thanks for feedback! New google groups interface seems not to have accepted my reaction from yesterday :( Just testing now... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this

Pagination research

2007-01-25 Thread Christoph Haas
Evening... as some of you may have read on IRC I'm trying to use webhelpers' pagination package. That's a pretty frustrating trip that's more a pydoc text adventure than something that saves me more time than re-inventing the wheel. Anyway... I'm using SQLAlchemy and have defined my Table()s in

Re: UTF-8 ... help

2007-01-25 Thread MySZ
Hello, I have similar problem. I'm using Mako templates with sqlalchemy. In templates I have line: # coding: utf-8 OK, I can put UTF-8 chars into templates. But I can't do: ${h.options_for_select( ( (u'brudnopis', u'draft'), (u'opublikowany',

Re: how (Tosca)Widgets fits into MVC concept

2007-01-25 Thread Alberto Valverde
On Jan 25, 2007, at 12:42 PM, Ksenia wrote: On Jan 25, 11:31 am, Ksenia [EMAIL PROTECTED] wrote: Thanks for feedback! New google groups interface seems not to have accepted my reaction from yesterday :( Just testing now... (Ok, seems to work :) After reading al your helpfull

Re: Another XMLHttpRequest question

2007-01-25 Thread Bob Ippolito
function () { ... } is the definition of an anonymous function. Like a lambda in python. On 1/25/07, Markm [EMAIL PROTECTED] wrote: Hi Uwe I am just begining here ... do you mind if I see that your complete (I mean your controller and defs) code? For eg, I did not understand this piece of

When does controllers/template/view get called?

2007-01-25 Thread Skip Montanaro
I modified controllers/template/view to def view(self, url): raise TypeError, url print sys.stderr, url return render_response(/%s.myt % url) If I visit (for example) http://localhost:5001/nonexistent I don't see anything like a TypeError. Instead,

Re: Another XMLHttpRequest question

2007-01-25 Thread Uwe Feldtmann
Markm wrote: I am just begining here ... do you mind if I see that your complete (I mean your controller and defs) code? For eg, I did not understand this piece of code: I'm fighting with the same problem and it'll be very useful if I could learn with you! Hi Markus. I see that Bob