[web2py] Re: web2py_osx.zip seems way out of date ???

2018-02-11 Thread 'jim kaubisch' via web2py-users
Thank you, Massimo !! Is there any reason that one could not have 2 versions of web2py on disk at the same time? The reason for wanting that is that is conservatism - Having thousands of lines of code developed under 2.14.6 and migrating them to 2.16.1 if something doesn't work under

Re: [web2py] PYTHON 3

2018-02-11 Thread Carlos Cesar Caballero Díaz
PS: For the love of all that's holy, please don't name it web3py. :) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message

Re: [web2py] Re: code written by Massimo Di Pierro in the web2py video tutorial

2018-02-11 Thread pbreit
I think some of the code may be at Github: https://github.com/mdipierro/web2py-appliances https://github.com/mdipierro/web2py-recipes-source/tree/master/apps -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] left join (Attribute Error)

2018-02-11 Thread F.C.
I am trying to create a left join query and must be something stupidly wrong as it doesn't work Any suggestions? Thanks for any help! db.define_table('procedures', Field('id',writable=False, readable=False, label='ID'), Field('procedurenumber', unique=True,

[web2py] Error in IS_DATE / IS_DATETIME validator?

2018-02-11 Thread Alfonso Serra
This one took me a while to figure it out: im declaring a model as: date_format = "%Y-%m-%d" db.define_table("bookings" , Field("start_date", "datetime") , Field("end_date", "date", requires = IS_DATE(format=date_format)) , Field("agency", "reference agencies", format="{agency}")

[web2py] Re: left join (Attribute Error)

2018-02-11 Thread 'Annet' via web2py-users
Hi, I think it should be: left=db.requestlist.on(db.procedures.id == db.requestlist.proceduresid) Regards, Annet -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report