validate decorator's error_formatters

2007-05-20 Thread Antipin Aleksei
. ? -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group, send email

Re: Using Elixir

2007-05-13 Thread Antipin Aleksei
() #my classes from pyoner.models.user import User -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss

redirect_to

2007-05-12 Thread Antipin Aleksei
Hi Is there simple way to pass c to redirected page? For instance I set c.errorMsg, run redirect_to and show c.errorMsg in that page. -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Using Elixir

2007-05-12 Thread Antipin Aleksei
of old values. -- Best regards, Antipin Aleksei -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss

authentication api in Pylons

2007-05-09 Thread Antipin Aleksei
than I do. Now newbies such as I am have to reinvent the wheel:( I just want to give my vote to that feature request and hope that gurus will share their experience in this field. -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message

Re: authentication api in Pylons

2007-05-09 Thread Antipin Aleksei
Have you looked at AuthKit? http://www.authkit.org If I don't mistake in Turbogears there is Identity object that holds username, requested and reffrer url and etc. -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because

h.url(controller, action)

2007-05-01 Thread Antipin Aleksei
='login'), method='POST') } return this html: form action=/login method=POST If I use /account or /login than I get /account//login Is it a bug or I'm doing wrong here? -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because you

Re: extending BaseController

2007-04-30 Thread Antipin Aleksei
fixed it. I then killed paster, deleted this line and started paster again - it works fine now without this fix. Though paster restarting after base.py modified didn't help. -- Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received this message because

extending BaseController

2007-04-29 Thread Antipin Aleksei
user = classmethod(user), in IndexController - self.user(), self.user(self), BaseController.user(), BaseController.user(self) Could anybody point to some silly mistake here? Thanks in advance, Best regards, Antipin Aleksei --~--~-~--~~~---~--~~ You received

Re: webhelpers

2007-04-25 Thread Antipin Aleksei
Those are Myghty errors. The default engine is still Myghty. You'd have to put config.template_engines = [] before the add line, or use the template_engine arg below. It's strange- errors are gone, but %% syntax dosen't work :) --~--~-~--~~~---~--~~ You

webhelpers

2007-04-17 Thread Antipin Aleksei
Hi I configured Pylons to be used with Mako. It works greate, but I can't make webhelpers work. In an inhereted template I had simple login form- it was rendered as I expected. Then I tried to switch to using webhelpers to generate the same form. But it doesn't work for me. I added to helpers.py