[web2py:24069] Re: IDE with debugging support for web2py

2009-06-13 Thread Randell
Hi, I was googling for the comparison between PyDev and Wing IDE and one of the results led me in this thread. I was wondering whether you were able to compare PyDev and Wing IDE deeply and what the results are. You response will be greatly appreciated. Thank you! On May 1, 4:26 am, David Zejd

[web2py:27363] Re: adding cancel button to auth form

2009-07-25 Thread Randell
On Sat, Jul 25, 2009 at 3:18 PM, mdipierro wrote: > > You can use a custom view > > {{=form.custom.begin}} > {{=form.custom.widget.email}} > > {{=form.custom.end}} But this method will create a new form next to the retrieve password form. How can I do it in such a way that the new Cancel butt

[web2py:27364] Re: adding cancel button to auth form

2009-07-25 Thread Randell
Nevermind. I was able to do it by adding form[0][-1][1].append(INPUT(_type='button',_value='Cancel',_onclick="window.location='%s';"%URL(r=request,f='index'))) which I found here: http://groups.google.com/group/web2py/browse_thread/thread/2bb488401573d19falthough I do not know what those indeces

[web2py:27366] Re: adding cancel button to auth form

2009-07-25 Thread Randell
On Sat, Jul 25, 2009 at 3:50 PM, mdipierro wrote: > > > > On Jul 25, 2:36 am, Randell wrote: > > On Sat, Jul 25, 2009 at 3:18 PM, mdipierro > wrote: > > > > > You can use a custom view > > > > > {{=form.custom.begin}} > > > {{

[web2py:27373] Re: session.flash not working on auth password recovery

2009-07-25 Thread Randell
On Sat, Jul 25, 2009 at 8:03 PM, Vidul Petrov wrote: > > A temporary fix can be: session._flash (that's what I usually use). Replacing next = self.url(args = request.args) with next = self.url() + "/login" does nothing. --~--~-~--~~~---~--~~ You received th

[web2py:27376] Re: session.flash not working on auth password recovery

2009-07-25 Thread Randell
Any clues? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegro

[web2py:27385] Re: session.flash not working on auth password recovery

2009-07-25 Thread Randell
This is the only content of my auth.settings from storage import Storage settings = Storage() What I want to happen is to enter the email of the user from retrieve_password form and when submitted, should display a flash message for confirmation that an email has been sent that allows the user t

[web2py:27426] Admin is disabled because insecure channel

2009-07-26 Thread Randell
? Thanks! -- Randell Benavidez http://randell.ph/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this g

[web2py:27429] Re: Admin is disabled because insecure channel

2009-07-26 Thread Randell
On Mon, Jul 27, 2009 at 12:58 AM, Kuba Kucharski wrote: > > Are you trying to access admin through localhost ?? Yes. > > > Out of curiosity, why is that you need so much 0.0.0.0 ? To make it accessible from another machine (of course, having a different IP address). > > > please, run two ins

[web2py:27481] web2py development and deployment

2009-07-27 Thread Randell
Hi guys, How do you setup your web2py development environment? Of course, we all know that we don't need complicated setup to develop web2py since it has its own coding area. But I'm sure some of us use our favorite IDEs and plugins to make development easier and faster. - What OSes do you us

[web2py:24882] Re: IDE with debugging support for web2py

2009-06-24 Thread Randell Benavidez
now, so I do not feel need to do so.. > > David > > Randell napsal(a): > > > Hi, I was googling for the comparison between PyDev and Wing IDE and > > one of the results led me in this thread.  I was wondering whether you > > were able to compare PyDev and Wing

[web2py:27358] Re: adding cancel button to auth form

2009-07-24 Thread Randell Benavidez
Doing this on gluon.tools.Auth.retrieve_password does nothing (no additional buttons is added). How can I modify the form in my own controller which only has def retrieve_password(): return dict (form=auth.retrieve_password())? On Jul 24, 8:31 am, mdipierro wrote: > something like this? > > for

[web2py:27370] Re: session.flash not working on auth password recovery

2009-07-25 Thread Randell Benavidez
Hi guys, I already replaced the line (under retrieve_password) next = self.url(args = request.args) with next = self.url() + "/login" but still don't see any flash message. Got a clue? On Jun 13, 11:56 pm, "mr.freeze" wrote: > Perfect, works like a champ now. Thanks. > > On Jun 13, 10:45 a