[web2py] Re: web2py 2.9.12 is OUT

2015-01-30 Thread Massimo Di Pierro
Yes. The new dal broke the automatic update process. Sorry. What do do: 1) remove the file dal.py 2) download web2py from the web site (the zip one) and unzip it over the existing web2py. Overwrite any file that you may have. This will restore the new gluon/dal/*.py files. An upgrade to 2.9.13

[web2py] Re: web2py 2.9.12 is OUT

2015-01-30 Thread Antonio Salazar
I managed to find the cause of the bug. The editor fails if web2py's path has non-standard characters. - Works correctly if installed on *c:\banana\web2py* - Editor save hangs on syntax errors if installed on *c:\plátano\web2py* I'll create the github ticket as soon as possible. El jueves, 29 de

[web2py] Re: web2py 2.9.12 is OUT

2015-01-30 Thread Cynthia Butler
Here's how the update worked for me: - I was on version 2.9.11 (ubuntu 14.04, nginx, uwsgi, mongodb) - I used the "update" button on the admin panel. - It updated most of the files, then stopped with a message that there was no DAL folder with an __init__ file. - So I created them

[web2py] Re: web2py 2.9.12 is OUT

2015-01-29 Thread Antonio Salazar
I tried to replicate the bug report on a clean install, but it didn't happen. I think I'll stick with manual updates for now. El jueves, 29 de enero de 2015, 8:40:59 (UTC-6), Massimo Di Pierro escribió: > > please open github ticket about this. > > On Tuesday, 27 January 2015 12:34:06 UTC-6, Anto

[web2py] Re: web2py 2.9.12 is OUT

2015-01-29 Thread Massimo Di Pierro
please open github ticket about this. On Tuesday, 27 January 2015 12:34:06 UTC-6, Antonio Salazar wrote: > > Since the upgrade, I'm getting this annoyance in the web editor. > > When I save a controller with a syntax error, the operation stalls at > "saving now...". > If I retry the save, I get t

[web2py] Re: web2py 2.9.12 is OUT

2015-01-27 Thread Antonio Salazar
Since the upgrade, I'm getting this annoyance in the web editor. When I save a controller with a syntax error, the operation stalls at "saving now...". If I retry the save, I get the warning "file changed on disk" and have to merge it, losing the state of the editor. Is this a known bug? I'm u

[web2py] Re: web2py 2.9.12 is OUT

2015-01-26 Thread Maurice Waka
Great and Thanks On Saturday, January 17, 2015 at 9:20:14 AM UTC+3, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and Paolo Valleri > - Added support for show_if in readonly sqlform, thanks Paol

[web2py] Re: web2py 2.9.12 is OUT

2015-01-26 Thread Dmitry Ermolaev
solved! replase all pickle.dumps *session_pickled = pickle.dumps(self) ##, pickle.HIGHEST_PROTOCOL)* понедельник, 26 января 2015 г., 8:15:42 UTC+3 пользователь Dmitry Ermolaev написал: > > > Traceback (most recent call last): > File "C:\web2py-m\gluon\main.py", line 435, in wsgibase > ses

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Dmitry Ermolaev
not worked (( if web2py service two applications and more - application that first got a HTTP request - normal work. but others got error - because self = Storage {} /// I try anywhere insert len(self0>0 - not worked (( понедельник, 26 января 2015 г., 8:51:23 UTC+3 пользователь Dmitry Ermolae

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Dmitry Ermolaev
session_pickled = pickle and pickle.dumps(self, pickle.HIGHEST_PROTOCOL) response.session_hash = session_pickled and hashlib.md5(session_pickled).hexdigest() понедельник, 26 января 2015 г., 8:15:42 UTC+3 пользователь Dmitry Ermolaev написал: > > > Traceback (most recent call la

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Dmitry Ermolaev
Traceback (most recent call last): File "C:\web2py-m\gluon\main.py", line 435, in wsgibase session.connect(request, response) File "C:\web2py-m\gluon\globals.py", line 934, in connect session_pickled = pickle.dumps(self, pickle.HIGHEST_PROTOCOL) TypeError: 'NoneType' object is not ca

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Oli
thank you, it works now Am Samstag, 17. Januar 2015 07:20:14 UTC+1 schrieb Massimo Di Pierro: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and Paolo Valleri > - Added support for show_if in readonly sqlform, thanks Paol

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Niphlod
headers accepts a dict, fields instead must be a list. -- 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 because you are subscrib

[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Oli
there is a problem with headers- and fields - definition in a new installed 2.9.12 from sourcecode. The result is in undefined order and changed after every reload. the definition: def address(): # # Definition - Grid headers = {'t_address.id':'ID', 't_address.f_lastna

[web2py] Re: web2py 2.9.12 is OUT

2015-01-22 Thread Massimo Di Pierro
Please open a ticket. It should not be doing that. On Tuesday, 20 January 2015 03:41:06 UTC-6, c...@cemeren.com wrote: > > Sanitizer is closing br and img tags. I did not notice this on 2.9.12 beta > test probably missed that. > > On Saturday, January 17, 2015 at 8:20:14 AM UTC+2, Massimo Di Pier

[web2py] Re: web2py 2.9.12 is OUT

2015-01-20 Thread cem
Sanitizer is closing br and img tags. I did not notice this on 2.9.12 beta test probably missed that. On Saturday, January 17, 2015 at 8:20:14 AM UTC+2, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Nip

[web2py] Re: web2py 2.9.12 is OUT

2015-01-18 Thread Ariya Owam-aram
Thank you, On Saturday, January 17, 2015 at 1:20:14 PM UTC+7, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and Paolo Valleri > - Added support for show_if in readonly sqlform, thanks Paolo > -

[web2py] Re: web2py 2.9.12 is OUT

2015-01-18 Thread Ron McOuat
Downloaded the source package, unzipped, put in the two symlinks for the apps and updated any files in the apps derived from the scaffolding. Tested one app developed 2 years ago, another I am working on, all is good. Thank you, Ron -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: web2py 2.9.12 is OUT

2015-01-18 Thread Richard D
I upgrade manually from 2.9.11 to 2.9.12, looks fine so far, thank you :) Richard D On Saturday, January 17, 2015 at 7:20:14 AM UTC+1, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and Paolo Val

[web2py] Re: web2py 2.9.12 is OUT

2015-01-18 Thread Oli
Is it possible that there is an errory in 2.9.12 with simplejson? Traceback (most recent call last): File "/home/oliver/apps/web2py/gluon/restricted.py", line 224, in restricted exec ccode in environment File "/home/oliver/apps/web2py/applications/stoppwatch/controllers/default.py"

[web2py] Re: web2py 2.9.12 is OUT

2015-01-17 Thread JorgeH
Many thanks Massimo, Niphlod, and guys!! Keep up the good work! On Saturday, January 17, 2015 at 1:20:14 AM UTC-5, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and Paolo Valleri > - Added supp

Re: [web2py] Re: web2py 2.9.12 is OUT

2015-01-17 Thread Kiran Subbaraman
Directly downloaded the web2py source, extracted, and started web2py via python web2py.py. This works (though haven't deployed any applications onto this instance) Kiran Subbaraman http://subbaraman.wordpress.com/about/ On Sat, 17-01-2015 4:49 PM, Kiran

Re: [web2py] Re: web2py 2.9.12 is OUT

2015-01-17 Thread Kiran Subbaraman
Also noticed that the VERSION is updated to 'Version 2.9.12-stable+timestamp.2015.01.17.06.11.03' Tried starting web2py (though didn't expect it to work), and I see this: ``` PS C:\Users\subbaraman> python.exe d:\programs\open\web2py\web2py.py Traceback (most recent call last): File "d:\program

[web2py] Re: web2py 2.9.12 is OUT

2015-01-17 Thread Kiran Subbaraman
Issue with upgrade - via the admin web UI. Please see attached image. Am on Windows 8.1 On Saturday, January 17, 2015 at 11:50:14 AM UTC+5:30, Massimo Di Pierro wrote: > > Changelog: > > - Modular DAL, thanks Giovanni > - Added coverage support, thanks Niphlod > - More tests, thanks Niphlod and P