[web2py] Mercurial for a separate project

2010-01-26 Thread bluemoth
Hi all, Is it possible to hijack mercurial in web2py to create a repository that is not related to web2py? If so, I suspect it would be possible to create a web2py application to create and manage (including authentication) projects.Similar to bitbucket or google code. Does anyone have any though

[web2py] Wizard builder

2011-11-29 Thread bluemoth
Hi all, I'm involved with a project that requires many wizards to collect information. I could build these wizards by hand or develop a module to generate them. It needs to be slick i.e. loads each step using AJAX, given certain answers show or hide questions, client-side and server-side validatio

[web2py] Re: Wizard builder

2011-12-02 Thread bluemoth
, 3:37 am, Anthony wrote: > Maybe this will help:http://labs.blouweb.com/powerformwizard/default/index > > > > > > > > On Tuesday, November 29, 2011 4:10:03 PM UTC-5, bluemoth wrote: > > > Hi all, > > > I'm involved with a project that requires many

[web2py] Inform user of registration approval

2011-02-08 Thread bluemoth
Hi all, Is there a way to inform a new user that their registration has been approved? Cheers, Duane.

[web2py] Re: Inform user of registration approval

2011-02-09 Thread bluemoth
I forgot to thank you in my first post. I expected you to be the one who would answer. I don't know how you answer all these questions. Thanks very much. Yes, I had assumed there was no callback for a record change given I couldn't find anything. I had assumed the way to do it is to create a contr

[web2py] Error messages for radio validation

2011-04-05 Thread bluemoth
Hello all, If I have the following: db.define_table('languages', Field('language', 'string')) db.languages.language.requires = \ [IS_IN_SET(['english', 'french', 'german']), \ IS_NOT_EMPTY(error_message='Value required')] db.languages.language.widget = SQLFORM.wid

[web2py] Re: Error messages for radio validation

2011-04-05 Thread bluemoth
inate the possibility of an error message, I would rewrite as: > > db.languages.language.default = 'english' # or any other in the list > db.languages.language.requires = IS_IN_SET(['english', 'french', > 'german']) > db.languages.language.widget = SQL

[web2py] Re: Error messages for radio validation

2011-04-05 Thread bluemoth
nt my own solution if one exists or can be added. Cheers, Duane. On Apr 6, 12:55 pm, bluemoth wrote: > Thanks DenesL, > > It was probably the wrong example. I simplified my case but in my case > I do expect errors to be reported so I was wanting to group the error > messages for the ra

[web2py] Re: Error messages for radio validation

2011-04-06 Thread bluemoth
> > > > > In principle I agree that it looks bad to have the same error pop up > > > > for each radio field, but the reality is that each option is handled > > > > as a separate entity even in the HTML code, so I doubt this is an easy > > > > one to &quo